Chromium Code Reviews| Index: standalone/io/test_extension_fail_test.dart |
| =================================================================== |
| --- standalone/io/test_extension_fail_test.dart (revision 17937) |
| +++ standalone/io/test_extension_fail_test.dart (working copy) |
| @@ -59,6 +59,7 @@ |
| print("ERR: ${result.stderr}\n\n"); |
| print("OUT: ${result.stdout}\n\n"); |
| Expect.equals(255, result.exitCode); |
| - Expect.isTrue(result.stderr.contains("Unhandled exception:\nball\n")); |
| + Expect.isTrue(result.stderr.contains("Unhandled exception:\n")); |
| + Expect.isTrue(result.stderr.contains("ball\n")); |
|
Tom Ball
2013/01/31 22:33:47
This won't work, because the Windows line ending i
siva
2013/01/31 22:35:51
Good point, changed test per offline discussion.
|
| }).whenComplete(() => tempDirectory.deleteSync(recursive: true)); |
| } |