summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
Diffstat (limited to 'Userland')
-rw-r--r--Userland/test-js.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/test-js.cpp b/Userland/test-js.cpp
index 84d7727651..a6b9b11f17 100644
--- a/Userland/test-js.cpp
+++ b/Userland/test-js.cpp
@@ -278,7 +278,7 @@ JSFileResult TestRunner::run_file_test(const String& test_path)
auto interpreter = JS::Interpreter::create<TestRunnerGlobalObject>(*vm);
// FIXME: This is a hack while we're refactoring Interpreter/VM stuff.
- JS::VM::InterpreterScope scope(*interpreter);
+ JS::VM::InterpreterExecutionScope scope(*interpreter);
interpreter->heap().set_should_collect_on_every_allocation(collect_on_every_allocation);