| Index: pkg/unittest/unittest.dart
|
| ===================================================================
|
| --- pkg/unittest/unittest.dart (revision 13324)
|
| +++ pkg/unittest/unittest.dart (working copy)
|
| @@ -238,12 +238,12 @@
|
| // If the callback explicitly returned false, treat that like an
|
| // expectation too. (If it returns null, though, don't.)
|
| if (result == false) {
|
| - _fail('Exception:\n$e\ndid not match expectation.');
|
| + fail('Exception:\n$e\ndid not match expectation.');
|
| }
|
| }
|
| }
|
|
|
| - if (threw != true) _fail('An expected exception was not thrown.');
|
| + if (threw != true) fail('An expected exception was not thrown.');
|
| }
|
|
|
| /**
|
|
|