Skip to content

Commit 5764a45

Browse files
committed
revert change to test case
1 parent 894f6bf commit 5764a45

1 file changed

Lines changed: 5 additions & 8 deletions

File tree

tests/cases/gts/rendering-test.gts

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,17 @@ module('Render with template tag', function (hooks) {
66
setupRenderingTest(hooks);
77

88
test('it has a template tag', async function (assert) {
9-
await render(
10-
<template>
9+
await render(<template>
1110
what
1211
</template>);
1312
assert.dom().hasText('what');
1413
});
1514

1615

1716
test('it has a template tag with a tag', async function (assert) {
18-
await render(
19-
<template>
20-
<h1>what</h1>
21-
</template>
22-
);
17+
await render(<template>
18+
<h1>what</h1>
19+
</template>);
2320
assert.dom().hasText('what');
2421
});
2522

@@ -46,4 +43,4 @@ module('Render with template tag', function (hooks) {
4643
</template>);
4744
assert.dom().hasText('what');
4845
});
49-
});
46+
});

0 commit comments

Comments
 (0)