| Index: Source/devtools/front_end/Tests.js
|
| diff --git a/Source/devtools/front_end/Tests.js b/Source/devtools/front_end/Tests.js
|
| index 11711016fc1f2c8aa96ad9da341bebace5a4ed0b..1de94cd1b1e2dc9e645d2f14957174f744e2ef25 100644
|
| --- a/Source/devtools/front_end/Tests.js
|
| +++ b/Source/devtools/front_end/Tests.js
|
| @@ -510,7 +510,7 @@ TestSuite.prototype.testConsoleOnNavigateBack = function()
|
| function didClickLink() {
|
| // Check that there are no new messages(command is not a message).
|
| this.assertEquals(3, WebInspector.console.messages.length);
|
| - this.assertEquals(1, WebInspector.console.messages[0].totalRepeatCount);
|
| + this.assertEquals(1, WebInspector.console.messages[0].repeatCount);
|
| this.evaluateInConsole_("history.back();", didNavigateBack.bind(this));
|
| }
|
|
|
| @@ -522,7 +522,7 @@ TestSuite.prototype.testConsoleOnNavigateBack = function()
|
|
|
| function didCompleteNavigation() {
|
| this.assertEquals(7, WebInspector.console.messages.length);
|
| - this.assertEquals(1, WebInspector.console.messages[0].totalRepeatCount);
|
| + this.assertEquals(1, WebInspector.console.messages[0].repeatCount);
|
| this.releaseControl();
|
| }
|
|
|
|
|