| Index: tests/standalone/src/io/DirectoryInvalidArgumentsTest.dart
|
| diff --git a/tests/standalone/src/io/DirectoryInvalidArgumentsTest.dart b/tests/standalone/src/io/DirectoryInvalidArgumentsTest.dart
|
| index 10c3ec0611af6dc76c8c28aaa389d4d455978241..e510233bf1c1ffd3e0a24868f83c9d3731785e45 100644
|
| --- a/tests/standalone/src/io/DirectoryInvalidArgumentsTest.dart
|
| +++ b/tests/standalone/src/io/DirectoryInvalidArgumentsTest.dart
|
| @@ -25,13 +25,13 @@ class DirectoryInvalidArgumentsTest {
|
| d.deleteSync();
|
| Expect.fail("No exception thrown");
|
| } catch (var e) {
|
| - Expect.isTrue(e is DirectoryException);
|
| + Expect.isTrue(e is DirectoryIOException);
|
| }
|
| try {
|
| d.createSync();
|
| Expect.fail("No exception thrown");
|
| } catch (var e) {
|
| - Expect.isTrue(e is DirectoryException);
|
| + Expect.isTrue(e is DirectoryIOException);
|
| }
|
| testFailingList(d, false);
|
| d = new Directory(".");
|
|
|