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 ec4070e5376eed8b28e1771d7e7c6643069b1255..3daea80c21fc23dd9d3f364843a6d610a20292af 100644 |
--- a/runtime/vm/dart_api_impl_test.cc |
+++ b/runtime/vm/dart_api_impl_test.cc |
@@ -7074,6 +7074,7 @@ UNIT_TEST_CASE(NewNativePort) { |
static Dart_Isolate RunLoopTestCallback(const char* script_name, |
const char* main, |
+ const char* package_root, |
void* data, |
char** error) { |
const char* kScriptChars = |
@@ -7143,7 +7144,7 @@ static void RunLoopTest(bool throw_exception_child, |
Dart_IsolateCreateCallback saved = Isolate::CreateCallback(); |
Isolate::SetCreateCallback(RunLoopTestCallback); |
Isolate::SetUnhandledExceptionCallback(RunLoopUnhandledExceptionCallback); |
- Dart_Isolate isolate = RunLoopTestCallback(NULL, NULL, NULL, NULL); |
+ Dart_Isolate isolate = RunLoopTestCallback(NULL, NULL, NULL, NULL, NULL); |
Dart_EnterIsolate(isolate); |
Dart_EnterScope(); |