Skip to content

Commit 1aa4c4f

Browse files
committed
Fix test
1 parent 16ed648 commit 1aa4c4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ describe('styled-jsx-plugin-less', () => {
2121

2222
it('works with expressions placeholders', () => {
2323
assert.equal(
24-
plugin('p { img { display: block } color: %%styled-jsx-expression-1%%; } %%styled-jsx-expression-1%%').trim(),
24+
plugin('p { img { display: block } color: %%styled-jsx-placeholder-1%%; } %%styled-jsx-placeholder-1%%').trim(),
2525
cleanup(`
2626
p {
27-
color: %%styled-jsx-expression-1%%;
27+
color: %%styled-jsx-placeholder-1%%;
2828
}
2929
p img {
3030
display: block;
3131
}
32-
%%styled-jsx-expression-1%%
32+
%%styled-jsx-placeholder-1%%
3333
`)
3434
)
3535
})

0 commit comments

Comments
 (0)