Skip to content

Commit

Permalink
Fix travis
Browse files Browse the repository at this point in the history
  • Loading branch information
karthiicksiva committed Dec 19, 2017
1 parent 96b0d08 commit f9cdcb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ moduleFor('ember-template-compiler: assert-input-helper-without-block', class ex
let expectedMessage =
`The {{input}} helper cannot be used in block form. ('baz/foo-bar' @ L1:C0) `;

assert.expectAssertion(() => {
expectAssertion(() => {
compile('{{#input value="123"}}Completely invalid{{/input}}', {
moduleName: 'baz/foo-bar'
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ moduleFor('ember-template-compiler: deprecate-model-render', class extends Abstr
`Please refactor \`{{render "foo-bar" coolModel}}\` to a component and` +
` invoke via \`{{foo-bar model=coolModel}}\`. ('baz/foo-bar' @ L1:C0) `;

assert.expectDeprecation(() => {
expectDeprecation(() => {
compile('{{render "foo-bar" coolModel}}', {
moduleName: 'baz/foo-bar'
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ moduleFor('ember-template-compiler: deprecate-render', class extends AbstractTes
`Please refactor \`{{render "foo-bar"}}\` to a component and` +
` invoke via \`{{foo-bar}}\`. ('baz/foo-bar' @ L1:C0) `;

assert.expectDeprecation(() => {
expectDeprecation(() => {
compile('{{render "foo-bar"}}', {
moduleName: 'baz/foo-bar'
});
Expand Down

0 comments on commit f9cdcb8

Please sign in to comment.