mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: Fix invalid hbs syntax in tests (#27348)
Followup to 26198fb328
also removes superfluous whitespace
This commit is contained in:
parent
da162639fa
commit
fb812a48ab
@ -123,7 +123,7 @@ module("Integration | Component | FloatKit | d-tooltip", function (hooks) {
|
||||
|
||||
test("<:trigger>", async function (assert) {
|
||||
await render(
|
||||
hbs`<DTooltip @inline={{true}}><:trigger>label</:trigger></DTooltip />`
|
||||
hbs`<DTooltip @inline={{true}}><:trigger>label</:trigger></DTooltip>`
|
||||
);
|
||||
|
||||
assert.dom(".fk-d-tooltip__trigger").hasText("label");
|
||||
@ -131,7 +131,7 @@ module("Integration | Component | FloatKit | d-tooltip", function (hooks) {
|
||||
|
||||
test("<:content>", async function (assert) {
|
||||
await render(
|
||||
hbs`<DTooltip @inline={{true}}><:content>content</:content></DTooltip />`
|
||||
hbs`<DTooltip @inline={{true}}><:content>content</:content></DTooltip>`
|
||||
);
|
||||
|
||||
await hover();
|
||||
|
Loading…
Reference in New Issue
Block a user