Move tests out of main package

This commit is contained in:
James Westman 2021-10-22 23:35:18 -05:00
parent 419faf0362
commit 15591cda45
No known key found for this signature in database
GPG key ID: CE2DBA0ADB654EA6
2 changed files with 2 additions and 2 deletions

View file

@ -20,8 +20,8 @@
import unittest
from ..errors import PrintableError
from ..tokenizer import Token, TokenType, tokenize
from gtkblueprinttool.errors import PrintableError
from gtkblueprinttool.tokenizer import Token, TokenType, tokenize
class TestTokenizer(unittest.TestCase):