Index: LayoutTests/inspector/sources/debugger/file-system-project-mapping.html |
diff --git a/LayoutTests/inspector/sources/debugger/file-system-project-mapping.html b/LayoutTests/inspector/sources/debugger/file-system-project-mapping.html |
index 55785ef1ec78af45df74730ca01981e30c25b66e..19b240eee29766f9733bc7c8a8e27d7fed05f18d 100644 |
--- a/LayoutTests/inspector/sources/debugger/file-system-project-mapping.html |
+++ b/LayoutTests/inspector/sources/debugger/file-system-project-mapping.html |
@@ -330,12 +330,12 @@ function test() |
dumpWorkspaceUISourceCodes(); |
InspectorTest.addResult("Removing project:"); |
var project = InspectorTest.testWorkspace.uiSourceCodes()[0].project(); |
- InspectorTest.testWorkspace.addEventListener(WebInspector.Workspace.Events.ProjectWillReset, projectWillReset); |
+ InspectorTest.testWorkspace.addEventListener(WebInspector.Workspace.Events.ProjectRemoved, projectRemoved); |
project.remove(); |
- function projectWillReset() |
+ function projectRemoved() |
{ |
- InspectorTest.addResult("Received project will reset event."); |
+ InspectorTest.addResult("Received project removed event."); |
next(); |
} |
}, |