Index: LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html |
diff --git a/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html b/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html |
index 8caa331f7bebd7c84e2652e2f5afdda718bb8d06..a83679110fb697a7e695f64e8a7c904e6313df53 100644 |
--- a/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html |
+++ b/LayoutTests/inspector/runtime/runtime-es6-setSymbolPropertyValue.html |
@@ -30,13 +30,13 @@ function test() |
function step1(error, result, wasThrown) |
{ |
- obj1 = WebInspector.runtimeModel.createRemoteObject(result); |
+ obj1 = InspectorTest.runtimeModel.createRemoteObject(result); |
InspectorTest.RuntimeAgent.evaluate("symbol1", step2); |
} |
function step2(error, result, wasThrown) |
{ |
- name = WebInspector.RemoteObject.toCallArgument(WebInspector.runtimeModel.createRemoteObject(result)); |
+ name = WebInspector.RemoteObject.toCallArgument(InspectorTest.runtimeModel.createRemoteObject(result)); |
next(); |
} |
}, |