diff options
author | Juan J. Martinez <jjm@usebox.net> | 2024-05-04 19:38:20 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2024-05-04 19:38:20 +0100 |
commit | 4b56dc74819f7fc85099ffa49e772ce821592708 (patch) | |
tree | 54b1b594c57ba46e1a0f17dd21250e4c49c9b1c8 /tests | |
parent | efdf58ce9045f197c549dc5dd437dd6b8630a628 (diff) | |
download | ubox-msx-lib-4b56dc74819f7fc85099ffa49e772ce821592708.tar.gz ubox-msx-lib-4b56dc74819f7fc85099ffa49e772ce821592708.zip |
Argument type expected to be a string
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_rom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_rom.py b/tests/test_rom.py index 30e8d33..6b7761f 100755 --- a/tests/test_rom.py +++ b/tests/test_rom.py @@ -8,7 +8,7 @@ from os import path, environ class TestRom(unittest.TestCase): """Test that the generated game ROM is correct.""" - ROM_SIZE = int(environ.get("ROM_MAX", 0), 16) + ROM_SIZE = int(environ.get("ROM_MAX", "0"), 16) @classmethod def setUpClass(cls): |