Skip to content
This repository was archived by the owner on May 14, 2021. It is now read-only.

Commit 9293945

Browse files
authored
Merge pull request #257 from chinesedfan/fix_test
Fix duplicate const
2 parents acea9e7 + 50e3df3 commit 9293945

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/fixtures/interpolations/valid.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ const Button8 = styled.button`
8989
// Simple interpolations in one-line css
9090
const display = 'block'
9191
const colorExpression = 'color: red;'
92-
const Button9 = styled.button`
92+
const Button91 = styled.button`
9393
display: ${display}; ${colorExpression}
9494
`
9595

9696
// Complex interpolations in one-line css
9797
const backgroundExpression = 'background: blue;'
98-
const Button9 = styled.button`
98+
const Button92 = styled.button`
9999
display: ${display}; ${colorExpression} ${backgroundExpression}
100100
`
101101
// Interpolations in nested blocks

0 commit comments

Comments
 (0)