| 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 a2cf1d32fceaa67cdcc69e39f55dba4b3a06135b..8a40a7a15c9e9fb368ec0bfeb2b28d79c918cbbc 100644
|
| --- a/runtime/vm/dart_api_impl_test.cc
|
| +++ b/runtime/vm/dart_api_impl_test.cc
|
| @@ -6762,9 +6762,9 @@ static Dart_NativeFunction MyNativeResolver2(Dart_Handle name,
|
| TEST_CASE(SetNativeResolver) {
|
| const char* kScriptChars =
|
| "class Test {"
|
| - " static foo() native \"SomeNativeFunction\";"
|
| - " static bar() native \"SomeNativeFunction2\";"
|
| - " static baz() native \"SomeNativeFunction3\";"
|
| + " static foo() native \"SomeNativeFunction\";\n"
|
| + " static bar() native \"SomeNativeFunction2\";\n"
|
| + " static baz() native \"SomeNativeFunction3\";\n"
|
| "}";
|
| Dart_Handle error = Dart_NewApiError("incoming error");
|
| Dart_Handle result;
|
|
|