Index: LayoutTests/inspector/runtime/runtime-getProperties.html |
diff --git a/LayoutTests/inspector/runtime/runtime-getProperties.html b/LayoutTests/inspector/runtime/runtime-getProperties.html |
index 981117796e23bcf77541ec708ef6f0bc80c7fc49..05abc2a1d0ac2ab3cc7f9eb5c9b72328648911c6 100644 |
--- a/LayoutTests/inspector/runtime/runtime-getProperties.html |
+++ b/LayoutTests/inspector/runtime/runtime-getProperties.html |
@@ -22,13 +22,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(); |
} |
}, |