Skip to content

Commit

Permalink
Fix invalid assertion.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Apr 14, 2015
1 parent 5a4667b commit ffedc10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ember-views/tests/views/select_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ QUnit.test("XSS: does not escape label value when it is a SafeString", function(
append();

equal(select.$('option').length, 2, "Should have two options");
equal(select.$('option[value=1] b').length, 1, "Should have child elements");
equal(select.$('option[value=1] p').length, 1, "Should have child elements");

// IE 8 adds whitespace
equal(trim(select.$().text()), "YehudaTom", "Options should have content");
Expand Down

0 comments on commit ffedc10

Please sign in to comment.