Index: test/codegen/expect/unittest/unittest.js |
diff --git a/test/codegen/expect/unittest/unittest.js b/test/codegen/expect/unittest/unittest.js |
index 245f8ea94b6d4643e7811198ed7d8aa47b258b4a..ffd79d7cf84f319e1454b64fd3487a62791af79e 100644 |
--- a/test/codegen/expect/unittest/unittest.js |
+++ b/test/codegen/expect/unittest/unittest.js |
@@ -8,10 +8,10 @@ dart_library.library('unittest/unittest', null, /* Imports */[ |
'matcher/src/util', |
'matcher/src/description' |
], /* Lazy imports */[ |
-], function(exports, dart, matcher, dom, core, async, interfaces, util, description$) { |
+], function(exports, dart, matcher, dom, core, $async, interfaces, util, description$) { |
'use strict'; |
let dartx = dart.dartx; |
- dart.export(exports, matcher); |
+ dart.export_(exports, matcher); |
function group(name, body) { |
return dart.dsend(dom.window, 'suite', name, body); |
} |
@@ -24,7 +24,7 @@ dart_library.library('unittest/unittest', null, /* Imports */[ |
} |
dart.dsend(dom.window, 'test', name, dart.fn(done => { |
function _finishTest(f) { |
- if (dart.is(f, async.Future)) { |
+ if (dart.is(f, $async.Future)) { |
dart.dsend(f, 'then', _finishTest); |
} else { |
dart.dcall(done); |