| Index: frog/tests/await/src/ConditionalNormalizationTest.dart
|
| diff --git a/frog/tests/await/src/ConditionalNormalizationTest.dart b/frog/tests/await/src/ConditionalNormalizationTest.dart
|
| deleted file mode 100644
|
| index cbd4504f109fcc8a25fc3dd449e57f89ec04fb70..0000000000000000000000000000000000000000
|
| --- a/frog/tests/await/src/ConditionalNormalizationTest.dart
|
| +++ /dev/null
|
| @@ -1,17 +0,0 @@
|
| -// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -// Await within the test of a conditional.
|
| -
|
| -#import("await_test_helper.dart");
|
| -
|
| -main() {
|
| - var x;
|
| - if (await futureOf(true)) {
|
| - x = 1;
|
| - } else {
|
| - x = 2;
|
| - }
|
| - Expect.equals(1, x);
|
| -}
|
|
|