From 59011e87a9e1d1b54a4255980f95123d9b6183e4 Mon Sep 17 00:00:00 2001 From: Tom Dale Date: Wed, 13 May 2015 11:07:23 -0700 Subject: [PATCH] Fix failing node test --- tests/node/template-compiler-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/node/template-compiler-test.js b/tests/node/template-compiler-test.js index c45cad4eaa9..9206a6c0128 100644 --- a/tests/node/template-compiler-test.js +++ b/tests/node/template-compiler-test.js @@ -53,7 +53,7 @@ test('allows enabling of features', function() { templateCompiler._Ember.FEATURES['ember-htmlbars-component-generation'] = true; templateOutput = templateCompiler.precompile(''); - ok(templateOutput.indexOf('["component","some-thing",[],0]') > -1, 'component generation can be enabled'); + ok(templateOutput.indexOf('["component","",[],0]') > -1, 'component generation can be enabled'); } else { ok(true, 'cannot test features in feature stripped build'); }