Skip to content

Commit 15b8c36

Browse files
author
rofrischmann
committed
fix
1 parent 466ab28 commit 15b8c36

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

modules/__tests__/tokenizer-test.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,11 +160,8 @@ describe('Tokenizing CSS values', () => {
160160

161161
it('should return an array of tokens', () => {
162162
expect(tokenizeCSSValue('#FF66f6')).toEqual([{
163-
type: 'hash',
164-
value: '#'
165-
}, {
166163
type: 'hexadecimal',
167-
value: 'FF66f6'
164+
value: '#FF66f6'
168165
}])
169166
})
170167
})

0 commit comments

Comments
 (0)