From 581af3928808ebd74d722a9247257144366bbc7b Mon Sep 17 00:00:00 2001 From: Stretch Date: Fri, 8 May 2015 08:03:46 +1000 Subject: [PATCH] #3222 test cleanup Improving my test from feedback. --- tests/selection/multiple-tests.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tests/selection/multiple-tests.js b/tests/selection/multiple-tests.js index 08448787..9db13da6 100644 --- a/tests/selection/multiple-tests.js +++ b/tests/selection/multiple-tests.js @@ -55,17 +55,11 @@ test('templateSelection can addClass', function (assert) { text: 'test' }, $container); - for (var i = 0; i < $container[0].classList.length; i += 1) { - if ($container[0].classList[i] === 'testclass') { - found = true; - } - } - assert.ok(called); assert.equal(out, 'test'); - assert.ok(called); + assert.ok($container.hasClass('testclass')); }); test('empty update clears the selection', function (assert) {