PEP8, Pylint

This commit is contained in:
DarkCat09 2022-12-25 18:19:28 +04:00
parent c02d3fed3e
commit c788976ab2
3 changed files with 21 additions and 14 deletions

View file

@ -9,11 +9,11 @@ from tests import files
class TestJsNode(unittest.TestCase):
def setUp(self) -> None:
self.tests = files.read_sample('token_input.txt')
self.results = files.read_sample('token_output.txt')
self.js = atjsparse.NodeInterpreter()
def test_exec(self) -> None:
for func, exp in zip(self.tests, self.results):