Index: runtime/vm/dart_api_impl_test.cc |
diff --git a/runtime/vm/dart_api_impl_test.cc b/runtime/vm/dart_api_impl_test.cc |
index f04834043c15c0e323fc63b68c4b3fb9e35cbda0..30b3ad5ae5d81adecde0d7718db91cd980d67803 100644 |
--- a/runtime/vm/dart_api_impl_test.cc |
+++ b/runtime/vm/dart_api_impl_test.cc |
@@ -4616,7 +4616,7 @@ TEST_CASE(Invoke_Null) { |
TEST_CASE(InvokeNoSuchMethod) { |
const char* kScriptChars = |
- "import 'dart:_collection-dev' as _collection_dev;\n" |
+ "import 'dart:_internal' as _internal;\n" |
"class Expect {\n" |
" static equals(a, b) {\n" |
" if (a != b) {\n" |
@@ -4627,7 +4627,7 @@ TEST_CASE(InvokeNoSuchMethod) { |
"class TestClass {\n" |
" static int fld1 = 0;\n" |
" void noSuchMethod(Invocation invocation) {\n" |
- " var name = _collection_dev.Symbol.getName(invocation.memberName);\n" |
+ " var name = _internal.Symbol.getName(invocation.memberName);\n" |
" if (name == 'fld') {\n" |
" Expect.equals(true, invocation.isGetter);\n" |
" Expect.equals(false, invocation.isMethod);\n" |