aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2024-05-04 19:38:20 +0100
committerJuan J. Martinez <jjm@usebox.net>2024-05-04 19:38:20 +0100
commit4b56dc74819f7fc85099ffa49e772ce821592708 (patch)
tree54b1b594c57ba46e1a0f17dd21250e4c49c9b1c8
parentefdf58ce9045f197c549dc5dd437dd6b8630a628 (diff)
downloadubox-msx-lib-4b56dc74819f7fc85099ffa49e772ce821592708.tar.gz
ubox-msx-lib-4b56dc74819f7fc85099ffa49e772ce821592708.zip
Argument type expected to be a string
-rwxr-xr-xtests/test_rom.py2
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):