| Index: third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js
|
| index 978fb69d66529b0d112229b51525abd92cd8fa2c..b3c24ba73f99ef79329324252365c935214d8fbd 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/debugger-test.js
|
| @@ -530,8 +530,8 @@ InspectorTest.checkRawLocation = function(script, lineNumber, columnNumber, loca
|
|
|
| InspectorTest.checkUILocation = function(uiSourceCode, lineNumber, columnNumber, location)
|
| {
|
| - InspectorTest.assertEquals(uiSourceCode, location.uiSourceCode, "Incorrect uiSourceCode, expected '" + (uiSourceCode ? uiSourceCode.uri() : null) + "'," +
|
| - " but got '" + (location.uiSourceCode ? location.uiSourceCode.uri() : null) + "'");
|
| + InspectorTest.assertEquals(uiSourceCode, location.uiSourceCode, "Incorrect uiSourceCode, expected '" + (uiSourceCode ? uiSourceCode.url() : null) + "'," +
|
| + " but got '" + (location.uiSourceCode ? location.uiSourceCode.url() : null) + "'");
|
| InspectorTest.assertEquals(lineNumber, location.lineNumber, "Incorrect lineNumber, expected '" + lineNumber + "', but got '" + location.lineNumber + "'");
|
| InspectorTest.assertEquals(columnNumber, location.columnNumber, "Incorrect columnNumber, expected '" + columnNumber + "', but got '" + location.columnNumber + "'");
|
| };
|
|
|