1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-03-19 21:10:15 +02:00

Fix build (see #190).

This commit is contained in:
Alec Thomas 2018-11-08 17:16:41 +11:00
parent a4f179974b
commit fb4c38e204

View File

@ -48,7 +48,7 @@ func TestSplitTokensIntoLines(t *testing.T) {
{Type: chroma.NameKeyword},
},
}
actual := splitTokensIntoLines(in)
actual := chroma.SplitTokensIntoLines(in)
assert.Equal(t, expected, actual)
}