| Index: tests/isolate/src/TestFramework.dart
|
| diff --git a/tests/isolate/src/TestFramework.dart b/tests/isolate/src/TestFramework.dart
|
| index 1122e96e8f84e98daae013626c0d624199d0b361..a727a0ff998f1ccaf08e7945bc8e50c705aac577 100644
|
| --- a/tests/isolate/src/TestFramework.dart
|
| +++ b/tests/isolate/src/TestFramework.dart
|
| @@ -70,7 +70,6 @@ class TestCase {
|
| void addToTestSuite(TestSuite suite) {
|
| suite.addTestCase(this);
|
| }
|
| -
|
| }
|
|
|
|
|
| @@ -188,12 +187,12 @@ class TestExpectation {
|
| }
|
|
|
| Promise completesWithValue(Promise promise, var expected) {
|
| - Promise result = new TestPromise(this);
|
| + Promise promiseResult = new TestPromise(this);
|
| promise.then((value) {
|
| Expect.equals(expected, value);
|
| - result.complete(value);
|
| + promiseResult.complete(value);
|
| });
|
| - return result;
|
| + return promiseResult;
|
| }
|
|
|
| Function runs0(Function fn) {
|
|
|