1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-07-01 00:35:06 +02:00

Remove unused dark/light style type.

This commit is contained in:
Alec Thomas
2017-09-18 14:19:59 +10:00
parent 19d5d708ad
commit c8636118d5
3 changed files with 2 additions and 12 deletions

View File

@ -7,8 +7,8 @@ import (
)
func TestCompressStyle(t *testing.T) {
style := "color: #888888; background-color: #ffffff"
style := "color: #888888; background-color: #faffff"
actual := compressStyle(style)
expected := "color:#888;background-color:#fff"
expected := "color:#888;background-color:#faffff"
require.Equal(t, expected, actual)
}