| Index: tests/language/internal_library_test.dart
|
| diff --git a/tests/language/internal_library_test.dart b/tests/language/internal_library_test.dart
|
| index 55eacd00db8ad09c027fe9c4667ce8eced36dba2..9c781ce546d4879abf49f8d37de60c94b9f83093 100644
|
| --- a/tests/language/internal_library_test.dart
|
| +++ b/tests/language/internal_library_test.dart
|
| @@ -7,11 +7,11 @@
|
| library internal_library_test;
|
|
|
| import 'dart:core'; // This loads 'dart:_foreign_helper' and 'patch:core'.
|
| -import 'dart:_foreign_helper'; /// 01: compile-time error
|
| +import 'dart:_foreign_helper'; //# 01: compile-time error
|
|
|
| -part 'dart:_foreign_helper'; /// 02: compile-time error
|
| +part 'dart:_foreign_helper'; //# 02: compile-time error
|
|
|
| void main() {
|
| - JS('int', '0'); /// 01: continued
|
| - JS('int', '0'); /// 02: continued
|
| + JS('int', '0'); //# 01: continued
|
| + JS('int', '0'); //# 02: continued
|
| }
|
|
|