Bug 1406564 - Open the right document when running cold toolbox open. r=bgrins draft
authorAlexandre Poirot <poirot.alex@gmail.com>
Thu, 12 Oct 2017 01:15:19 +0200
changeset 678821 51f151c5fb4e6278251d7345c7fef4f92964e06f
parent 678523 f3e939a81ee1169f9501ad96eb43bbf4bf4a1bde
child 678822 1ef315af011a1a06f2acc570b937a0290935ce4e
push id84062
push userbmo:poirot.alex@gmail.com
push dateWed, 11 Oct 2017 23:16:40 +0000
reviewersbgrins
bugs1406564
milestone58.0a1
Bug 1406564 - Open the right document when running cold toolbox open. r=bgrins MozReview-Commit-ID: J6MZFCPLqT9
testing/talos/talos/tests/devtools/addon/content/damp.js
--- a/testing/talos/talos/tests/devtools/addon/content/damp.js
+++ b/testing/talos/talos/tests/devtools/addon/content/damp.js
@@ -309,18 +309,18 @@ Damp.prototype = {
   },
 
   async reloadPageAndLog(name, onReload) {
     dump("Reload page on '" + name + "'\n");
     let {time} = await this.reloadPage(onReload);
     this._results.push({name: name + ".reload.DAMP", value: time });
   },
 
-  async _coldInspectorOpen(url) {
-    await this.testSetup(url);
+  async _coldInspectorOpen() {
+    await this.testSetup(SIMPLE_URL);
     await this.openToolboxAndLog("cold.inspector", "inspector");
     await this.closeToolbox();
     await this.testTeardown();
   },
 
   _getToolLoadingTests(url, label, { expectedMessages, expectedSources }) {
     let subtests = {
       inspectorOpen: Task.async(function* () {