Index: tests/compiler/dart2js_native/issue9182_test.dart |
diff --git a/tests/compiler/dart2js_native/issue9182_test.dart b/tests/compiler/dart2js_native/issue9182_test.dart |
index 8bbee654c923a6b6630d1e6b895dc60af63586f8..5e06b3585abe89cef9631d455a381991f50f755c 100644 |
--- a/tests/compiler/dart2js_native/issue9182_test.dart |
+++ b/tests/compiler/dart2js_native/issue9182_test.dart |
@@ -30,7 +30,7 @@ function A(){} |
makeA = function() { return new A; }; |
"""; |
-makeA() native; |
+makeA() native ; |
main() { |
setup(); |
@@ -39,7 +39,7 @@ main() { |
var foo = things[0]; |
var bar = things[1]; |
- Expect.equals(123, foo.Bar()); // Ensure that Foo.Bar is used. |
+ Expect.equals(123, foo.Bar()); // Ensure that Foo.Bar is used. |
Expect.equals(30, bar._x); |
Expect.equals(40, bar._y); |