From f11e9e6ece6331fc8dce9448e094edd640a19ded Mon Sep 17 00:00:00 2001 From: Adi Roiban <adi.roiban@chevah.com> Date: Sun, 16 Feb 2014 18:06:04 +0200 Subject: [PATCH] Fix py3. --- test/test_lexer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_lexer.py b/test/test_lexer.py index a784806..60b573b 100644 --- a/test/test_lexer.py +++ b/test/test_lexer.py @@ -22,7 +22,7 @@ class TestLessLexer(unittest.TestCase): """ It can load content from a string. """ - file = StringIO(b""" + file = StringIO(""" @simple-var: 1; """)