Skip to content

Commit

Permalink
tests: Fix assertion message
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 committed Apr 7, 2017
1 parent cd70fed commit 91a7222
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if (config.stripTestSelectors) {
test('it strips data-test-* attributes from components with positional params data-test-* as first param', function(assert) {
this.render(hbs`{{print-test-attributes data-test-should-not-be "param1"}}`);

assert.equal(this.$('.data-test-positional-params').text(), 1, 'there should be no params');
assert.equal(this.$('.data-test-positional-params').text(), 1, 'there should be only one param');
});

test('it strips data-test-* attributes from components with multiple positional params', function(assert) {
Expand Down

0 comments on commit 91a7222

Please sign in to comment.