Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.html |
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.html |
index bccc01d1a7f41ccb84f7810b125ecf594720210e..f77e3b72f2634f04d2c6090df9a3c6f199c06fd4 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.html |
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/breakpoint-manager.html |
@@ -13,7 +13,10 @@ function test() |
mockTarget.debuggerModel.reset(); |
InspectorTest.addResult(" Resetting workspace."); |
breakpointManager._debuggerWorkspaceBinding._reset(mockTarget.debuggerModel); |
- InspectorTest.testNetworkProject._reset(); |
+ // Clean all network projects. |
+ for (var project of InspectorTest.testNetworkProject._workspaceProjects.values()) |
+ project.removeProject(); |
+ InspectorTest.testNetworkProject._workspaceProjects.clear(); |
} |
function createBreakpoint(url, lineNumber, condition, enabled) |