Skip to content

Commit

Permalink
Change test assertion comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tiff committed Nov 1, 2012
1 parent 358c566 commit 890d673
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/browser_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ test("Check mobile contentEditable support", function() {
document.querySelector = document.querySelectorAll = function() {};

wysihtml5.browser.USER_AGENT = this.userAgents.iPad_iOS3;
ok(!wysihtml5.browser.supported(), "iPad is correctly unsupported");
ok(!wysihtml5.browser.supported(), "iPad iOS 3 is correctly unsupported");

wysihtml5.browser.USER_AGENT = this.userAgents.iPhone_iOS3;
ok(!wysihtml5.browser.supported(), "iPhone is correctly unsupported");
ok(!wysihtml5.browser.supported(), "iPhone iOS 3 is correctly unsupported");

wysihtml5.browser.USER_AGENT = this.userAgents.iPad_iOS5;
ok(wysihtml5.browser.supported(), "iOS 5 is correctly supported");
ok(wysihtml5.browser.supported(), "iPad iOS 5 is correctly supported");

wysihtml5.browser.USER_AGENT = this.userAgents.Android2;
ok(!wysihtml5.browser.supported(), "Android 2 is correctly unsupported");
Expand Down

0 comments on commit 890d673

Please sign in to comment.