| Index: pkg/unittest/test/unittest_test.dart
|
| diff --git a/pkg/unittest/test/unittest_test.dart b/pkg/unittest/test/unittest_test.dart
|
| index 1bbfb183d0fb2c8b21c65f13b630eb77267bb2f0..cc28d9e117e7402cc50fd533a55ddd47150e5a77 100644
|
| --- a/pkg/unittest/test/unittest_test.dart
|
| +++ b/pkg/unittest/test/unittest_test.dart
|
| @@ -405,7 +405,7 @@ main() {
|
| var tests = {
|
| 'single correct test': buildStatusString(1, 0, 0, 'single correct test'),
|
| 'single failing test': buildStatusString(0, 1, 0, 'single failing test',
|
| - message: 'Expected: <5> but: was <4>.'),
|
| + message: 'Expected: <5> But: was <4>.'),
|
| 'exception test': buildStatusString(0, 1, 0, 'exception test',
|
| message: 'Caught Exception: Fail.'),
|
| 'group name test': buildStatusString(2, 0, 0, 'a a::a b b'),
|
| @@ -427,7 +427,7 @@ main() {
|
| message: 'Callback called (2) after test case testOne has already '
|
| 'been marked as pass.:testTwo:'),
|
| 'middle exception test': buildStatusString(2, 1, 0,
|
| - 'testOne::testTwo:Expected: false but: was <true>.:testThree'),
|
| + 'testOne::testTwo:Expected: false But: was <true>.:testThree'),
|
| 'async setup/teardown test': buildStatusString(2, 0, 3,
|
| 'good setup/good teardown foo1::'
|
| 'good setup/bad teardown foo2:good setup/bad teardown '
|
| @@ -440,13 +440,13 @@ main() {
|
| 'test returning future': buildStatusString(2, 4, 0,
|
| 'successful::'
|
| 'error1:Callback called more times than expected (1).:'
|
| - 'fail1:Expected: <false> but: was <true>.:'
|
| + 'fail1:Expected: <false> But: was <true>.:'
|
| 'error2:Callback called more times than expected (1).:'
|
| 'fail2:failure:'
|
| 'foo5'),
|
| 'test returning future using runAsync': buildStatusString(2, 4, 0,
|
| 'successful::'
|
| - 'fail1:Expected: <false> but: was <true>.:'
|
| + 'fail1:Expected: <false> But: was <true>.:'
|
| 'error1:Callback called more times than expected (1).:'
|
| 'fail2:failure:'
|
| 'error2:Callback called more times than expected (1).:'
|
|
|