diff --git a/.status b/.status index ff18530549ae0ae0706b1623e788675844932a1d..d8ccf4f8a31c61ab1733cc0f23e7ac972c0f3576 100644 --- a/.status +++ b/.status @@ -23,15 +23,15 @@ lib/*/*: SkipByDesign lib/*/*/*: SkipByDesign lib/*/*/*/*: SkipByDesign -[ $browser ] -*: RuntimeError # new unittest package does not support browser tests +test/runner/browser/loader_test: Slow # dart:io-specific tests. [ $browser ] test/runner/console_reporter_test: SkipByDesign +test/runner/isolate_listener_test: SkipByDesign test/runner/loader_test: SkipByDesign test/runner/runner_test: SkipByDesign -test/runner/isolate_listener_test: SkipByDesign +test/util/parse_annotations_test: SkipByDesign [ $runtime == safari ] test/matcher/prints_test: Fail # Issue 4 diff --git a/test/util/parse_annotations_test.dart b/test/util/parse_annotations_test.dart index 8e7fc7ecc160b3f53e5ccffa1d394d432071ee2a..a655d16027624f0f63790b9be47d025463a95e1a 100644 --- a/test/util/parse_annotations_test.dart +++ b/test/util/parse_annotations_test.dart @@ -96,7 +96,7 @@ void main() { expect(args[0], new isInstanceOf<NamedExpression>()); expect(args[0].expression, new isInstanceOf<StringLiteral>()); expect(args[0].expression.stringValue, equals('foo')); - expect(args[1], new isInstanceOf<IntegerLiteral>()); + expect(args[1], new isInstanceOf<NamedExpression>()); expect(args[1].expression, new isInstanceOf<IntegerLiteral>()); expect(args[1].expression.value, equals(12)); });