Index: test/cctest/interpreter/test-interpreter.cc |
diff --git a/test/cctest/interpreter/test-interpreter.cc b/test/cctest/interpreter/test-interpreter.cc |
index 6644c13cb520002239a6a767930b686c51002632..6643b41c2cdf2c0ffce7a1b84a12a835d4ba748f 100644 |
--- a/test/cctest/interpreter/test-interpreter.cc |
+++ b/test/cctest/interpreter/test-interpreter.cc |
@@ -3925,7 +3925,7 @@ TEST(InterpreterClassLiterals) { |
for (size_t i = 0; i < arraysize(examples); ++i) { |
std::string source(InterpreterTester::SourceForBody(examples[i].first)); |
- InterpreterTester tester(handles.main_isolate(), source.c_str()); |
+ InterpreterTester tester(handles.main_isolate(), source.c_str(), "*"); |
auto callable = tester.GetCallable<>(); |
Handle<i::Object> return_value = callable().ToHandleChecked(); |
@@ -3985,7 +3985,7 @@ TEST(InterpreterClassAndSuperClass) { |
for (size_t i = 0; i < arraysize(examples); ++i) { |
std::string source(InterpreterTester::SourceForBody(examples[i].first)); |
- InterpreterTester tester(handles.main_isolate(), source.c_str()); |
+ InterpreterTester tester(handles.main_isolate(), source.c_str(), "*"); |
auto callable = tester.GetCallable<>(); |
Handle<i::Object> return_value = callable().ToHandleChecked(); |
CHECK(return_value->SameValue(*examples[i].second)); |