Closed
Bug 583292
Opened 15 years ago
Closed 15 years ago
Assert Property error in testUndoTabFromContextMenu.js (default)
Categories
(Mozilla QA Graveyard :: Mozmill Tests, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: aaronmt, Assigned: aaronmt)
References
()
Details
(Whiteboard: [mozmill-test-failure])
Attachments
(2 files)
|
3.48 KB,
patch
|
u279076
:
review-
|
Details | Diff | Splinter Review |
|
3.59 KB,
patch
|
u279076
:
review+
whimboo
:
review+
|
Details | Diff | Splinter Review |
MODULE: firefox/testSessionStore/
TEST: testUndoTabFromContextMenu.js
FAIL: Controller.assertProperty(ID: context_undoCloseTab) : true == false
BRANCH: default
With the recent changes in trunk
http://hg.mozilla.org/mozilla-central/rev/a68fa21f86b2 @ bug 580956
The test needs updating to check to disabled instead of hidden
| Assignee | ||
Comment 1•15 years ago
|
||
Attachment #461586 -
Flags: review?(anthony.s.hughes)
| Assignee | ||
Updated•15 years ago
|
Status: NEW → ASSIGNED
| Assignee | ||
Updated•15 years ago
|
Assignee: nobody → aaron.train
| Assignee | ||
Updated•15 years ago
|
Summary: Assert Property error in testUndoTabFromContextMenu.js → Assert Property error in testUndoTabFromContextMenu.js (default)
Comment on attachment 461586 [details] [diff] [review]
Patch v1 - From 'hidden' to 'disabled'
>+const LOCAL_TEST_FOLDER = collector.addHttpResource('../test-files/');
>
Let's use a LOCAL_TEST_PAGE constant here to contain the URL:
const LOCAL_TEST_PAGE = LOCAL_TEST_FOLDER + "tabbedbrowsing/openinnewtab_target.html?id=";
> // Open 3 tabs with pages in the local test folder
> for (var i = 0; i < 3; i++) {
>- controller.open(localTestFolder +
>+ controller.open(LOCAL_TEST_FOLDER +
> 'tabbedbrowsing/openinnewtab_target.html?id=' + i);
Then the loop simply becomes:
controller.open(LOCAL_TEST_PAGE + i);
Attachment #461586 -
Flags: review?(anthony.s.hughes) → review-
| Assignee | ||
Comment 3•15 years ago
|
||
Attachment #464247 -
Flags: review?(anthony.s.hughes)
Comment on attachment 464247 [details] [diff] [review]
Patch v1.1 - From 'hidden' to 'disabled' - fixes
Looks good. Over to Henrik for followup.
Attachment #464247 -
Flags: review?(hskupin)
Attachment #464247 -
Flags: review?(anthony.s.hughes)
Attachment #464247 -
Flags: review+
Comment on attachment 464247 [details] [diff] [review]
Patch v1.1 - From 'hidden' to 'disabled' - fixes
>+const LOCAL_TEST_PAGE = LOCAL_TEST_FOLDER +
>+ "tabbedbrowsing/openinnewtab_target.html?id=";
Nit: Please indent that correctly.
Otherwise r=me.
Attachment #464247 -
Flags: review?(hskupin) → review+
(In reply to comment #5)
> Comment on attachment 464247 [details] [diff] [review]
> Patch v1.1 - From 'hidden' to 'disabled' - fixes
>
> >+const LOCAL_TEST_PAGE = LOCAL_TEST_FOLDER +
> >+ "tabbedbrowsing/openinnewtab_target.html?id=";
>
> Nit: Please indent that correctly.
>
> Otherwise r=me.
I'll correct that prior to check-in.
Landed:
http://hg.mozilla.org/qa/mozmill-tests/rev/79286a91d333 (default)
http://hg.mozilla.org/qa/mozmill-tests/rev/096f3f46b292 (mozilla1.9.2)
http://hg.mozilla.org/qa/mozmill-tests/rev/fb12391d7c9b (mozilla1.9.1)
Status: ASSIGNED → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 8•15 years ago
|
||
(In reply to comment #7)
> Landed:
> http://hg.mozilla.org/qa/mozmill-tests/rev/79286a91d333 (default)
> http://hg.mozilla.org/qa/mozmill-tests/rev/096f3f46b292 (mozilla1.9.2)
> http://hg.mozilla.org/qa/mozmill-tests/rev/fb12391d7c9b (mozilla1.9.1)
This is a (default) fix as indicated in comment #0. Please back out (mozilla1.9.2) and (mozilla1.9.1).
Backed-out:
http://hg.mozilla.org/qa/mozmill-tests/rev/cf4a134c0d8d (mozilla1.9.2)
http://hg.mozilla.org/qa/mozmill-tests/rev/3e2f0d88fb09 (mozilla1.9.1)
Sorry for the confusion. I thought this was being backported. In the future, if the patch is for default-only, please indicate it. If the patch needs to be backported, please indicate that as well.
Thanks.
Move of Mozmill Test related project bugs to newly created components. You can
filter out those emails by using "Mozmill-Tests-to-MozillaQA" as criteria.
Product: Testing → Mozilla QA
Version: Trunk → unspecified
Updated•6 years ago
|
Product: Mozilla QA → Mozilla QA Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•