Index: LayoutTests/inspector/runtime/runtime-setPropertyValue.html |
diff --git a/LayoutTests/inspector/runtime/runtime-setPropertyValue.html b/LayoutTests/inspector/runtime/runtime-setPropertyValue.html |
index 7b391fc77e83b61fe10a7fdeda012227e3987b23..70d23e1aca3766069b9128b5fe5e4043be00c942 100644 |
--- a/LayoutTests/inspector/runtime/runtime-setPropertyValue.html |
+++ b/LayoutTests/inspector/runtime/runtime-setPropertyValue.html |
@@ -43,13 +43,13 @@ function test() |
function step1(error, result, wasThrown) |
{ |
- obj1 = WebInspector.runtimeModel.createRemoteObject(result); |
+ obj1 = InspectorTest.runtimeModel.createRemoteObject(result); |
InspectorTest.RuntimeAgent.evaluate("object2", step2); |
} |
function step2(error, result, wasThrown) |
{ |
- obj2 = WebInspector.runtimeModel.createRemoteObject(result); |
+ obj2 = InspectorTest.runtimeModel.createRemoteObject(result); |
next(); |
} |
}, |