| Index: runtime/vm/snapshot_test.cc
|
| diff --git a/runtime/vm/snapshot_test.cc b/runtime/vm/snapshot_test.cc
|
| index 666a85384c40c0309d21c049af992d72ce432e37..ee8909b1b959483394578407610dd2370ecb0e90 100644
|
| --- a/runtime/vm/snapshot_test.cc
|
| +++ b/runtime/vm/snapshot_test.cc
|
| @@ -1205,7 +1205,8 @@ UNIT_TEST_CASE(ScriptSnapshot) {
|
|
|
| // Load the library.
|
| Dart_Handle import_lib = Dart_LoadLibrary(NewString("dart_import_lib"),
|
| - NewString(kLibScriptChars));
|
| + NewString(kLibScriptChars),
|
| + 0, 0);
|
| EXPECT_VALID(import_lib);
|
|
|
| // Create a test library and Load up a test script in it.
|
| @@ -1375,7 +1376,8 @@ UNIT_TEST_CASE(ScriptSnapshot2) {
|
|
|
| // Load the library.
|
| Dart_Handle import_lib = Dart_LoadLibrary(NewString("dart_import_lib"),
|
| - NewString(kLibScriptChars));
|
| + NewString(kLibScriptChars),
|
| + 0, 0);
|
| EXPECT_VALID(import_lib);
|
|
|
| // Create a test library and Load up a test script in it.
|
|
|