Skip to content

Commit d5008a0

Browse files
author
apan
committed
change"pasased" to "passed"
1 parent ea44f22 commit d5008a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/helpers/element-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ module('Integration | Helper | element', function (hooks) {
356356
assert.dom('h1').doesNotExist();
357357
});
358358

359-
test('it throws when pasased a number', async function () {
359+
test('it throws when passed a number', async function () {
360360
expectEmberError(
361361
new Error(
362362
'Assertion Failed: The argument passed to the `element` helper must be a string (you passed `123`)'
@@ -372,7 +372,7 @@ module('Integration | Helper | element', function (hooks) {
372372
`);
373373
});
374374

375-
test('it throws when pasased a boolean', async function () {
375+
test('it throws when passed a boolean', async function () {
376376
expectEmberError(
377377
new Error(
378378
'Assertion Failed: The argument passed to the `element` helper must be a string (you passed `false`)'
@@ -388,7 +388,7 @@ module('Integration | Helper | element', function (hooks) {
388388
`);
389389
});
390390

391-
test('it throws when pasased an object', async function () {
391+
test('it throws when passed an object', async function () {
392392
expectEmberError(
393393
new Error(
394394
'Assertion Failed: The argument passed to the `element` helper must be a string'

0 commit comments

Comments
 (0)