From d5008a0b2dc303daca39f95c87361690d6555208 Mon Sep 17 00:00:00 2001 From: apan Date: Thu, 14 Apr 2022 20:03:46 -0400 Subject: [PATCH] change"pasased" to "passed" --- tests/integration/helpers/element-test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/helpers/element-test.js b/tests/integration/helpers/element-test.js index 03f103f7..f19da266 100644 --- a/tests/integration/helpers/element-test.js +++ b/tests/integration/helpers/element-test.js @@ -356,7 +356,7 @@ module('Integration | Helper | element', function (hooks) { assert.dom('h1').doesNotExist(); }); - test('it throws when pasased a number', async function () { + test('it throws when passed a number', async function () { expectEmberError( new Error( '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) { `); }); - test('it throws when pasased a boolean', async function () { + test('it throws when passed a boolean', async function () { expectEmberError( new Error( '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) { `); }); - test('it throws when pasased an object', async function () { + test('it throws when passed an object', async function () { expectEmberError( new Error( 'Assertion Failed: The argument passed to the `element` helper must be a string'