Skip to content

Commit 955ff3e

Browse files
committed
Fix test
1 parent f5aae6c commit 955ff3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/services/ember-cli-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ test("buildHtml works when testing not enabled", function(assert) {
191191
assert.ok(output.indexOf("window.location.hash='/';") > 0, "output sets initialRoute");
192192
assert.ok(output.indexOf('EmberENV = {"FEATURES":{}}') > 0, "output contains feature flags");
193193
assert.ok(output.indexOf('<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js"></script>') > 0, "output includes dependency");
194-
assert.ok(output.indexOf('<style type="text/css">/* styles */</style>') > 0, "output includes styles");
194+
assert.ok(output.indexOf('<style type="text/css">/* styles */') > 0, "output includes styles");
195195
assert.ok(output.indexOf('<script type="text/javascript">/* app */') > 0, "output includes the app js");
196196
assert.ok(output.indexOf('<div id="ember-testing-container">') === -1, "output does not contain testing container");
197197
});

0 commit comments

Comments
 (0)