Skip to content

Commit 59011e8

Browse files
tilde-engineeringrwjblue
authored andcommitted
Fix failing node test
1 parent 7194a5e commit 59011e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/node/template-compiler-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ test('allows enabling of features', function() {
5353
templateCompiler._Ember.FEATURES['ember-htmlbars-component-generation'] = true;
5454

5555
templateOutput = templateCompiler.precompile('<some-thing></some-thing>');
56-
ok(templateOutput.indexOf('["component","some-thing",[],0]') > -1, 'component generation can be enabled');
56+
ok(templateOutput.indexOf('["component","<some-thing>",[],0]') > -1, 'component generation can be enabled');
5757
} else {
5858
ok(true, 'cannot test features in feature stripped build');
5959
}

0 commit comments

Comments
 (0)