Update py3.

This commit is contained in:
Adi Roiban 2014-02-16 17:57:29 +02:00
parent 5a763750d4
commit a329d2befd
2 changed files with 4 additions and 2 deletions

View File

@ -1,10 +1,10 @@
""" """
Unit tests for the lexer. Unit tests for the lexer.
""" """
from StringIO import StringIO
from tempfile import NamedTemporaryFile from tempfile import NamedTemporaryFile
import unittest import unittest
from six import StringIO
from lesscpy.lessc.lexer import LessLexer from lesscpy.lessc.lexer import LessLexer

View File

@ -1,11 +1,13 @@
""" """
Unit test for the parser. Unit test for the parser.
""" """
from StringIO import StringIO
import unittest import unittest
from six import StringIO
from lesscpy.lessc.parser import LessParser from lesscpy.lessc.parser import LessParser
class TestLessParser(unittest.TestCase): class TestLessParser(unittest.TestCase):
""" """
Unit tests for LessParser. Unit tests for LessParser.