Skip to content

Commit bf48a87

Browse files
committed
test: 🚨 update golden test runner
1 parent 2ff86ce commit bf48a87

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/golden_test.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import pytest
88
import src.machine.main as machine
9-
import src.translator as translator
9+
import src.translator.main as translator
1010

1111

1212
@pytest.mark.golden_test("golden/*.yml")
@@ -25,15 +25,15 @@ def test_translator_and_machine(golden, caplog):
2525
f.write(golden["in_stdin"])
2626

2727
with contextlib.redirect_stdout(io.StringIO()) as stdout:
28-
translator.main(source, target_data, target_code)
28+
translator.main(source, target_code, target_data)
2929
print("============================================================")
30-
machine(target_code, target_data, input_stream)
30+
machine.main(target_code, target_data, input_stream)
3131

32-
with open(target_code, mode="rb") as f:
33-
code = str(f.read(), encoding="utf-8")
32+
with open(target_code, encoding="utf-8") as f:
33+
code = f.read()
3434

35-
with open(target_data, mode="rb") as f:
36-
data = str(f.read(), encoding="utf-8")
35+
with open(target_data, encoding="utf-8") as f:
36+
data = f.read()
3737

3838
assert data == golden.out["out_data"]
3939
assert code == golden.out["out_code"]

0 commit comments

Comments
 (0)