Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Unified Diff: LayoutTests/inspector-protocol/network/resource-type.html

Issue 1021543002: DevTools: remove InspectorTest.assert from inspector-protocol tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/inspector-protocol/network/resource-type.html
diff --git a/LayoutTests/inspector-protocol/network/resource-type.html b/LayoutTests/inspector-protocol/network/resource-type.html
index 4bdbdb2a241536da8acd6b2ea428613b8db716a3..0d69c049e4cb2fce6b0b28eda7c9de112b9aaeec 100644
--- a/LayoutTests/inspector-protocol/network/resource-type.html
+++ b/LayoutTests/inspector-protocol/network/resource-type.html
@@ -69,8 +69,7 @@ function test()
{
for (var i = 0; i < resources.length; ++i) {
var resource = resources[i];
- InspectorTest.log("Resource " + resource.url + " got type " + resource.gotType);
- InspectorTest.assertEquals(resource.type, resource.gotType);
+ InspectorTest.log("Resource " + resource.url + " got type: " + resource.gotType + ", type: " + resource.type);
}
InspectorTest.completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698