diff options
author | Viljami Ilola <+@hix.fi> | 2024-04-27 02:20:46 +0300 |
---|---|---|
committer | Viljami Ilola <+@hix.fi> | 2024-04-27 02:20:46 +0300 |
commit | d73fe4bb20e544443476ebb4c9fc593fa0a8ad4a (patch) | |
tree | 9a0669819d4f18cf1a118f0755d78dd95959dc7c /tests/test_field.py | |
parent | db5967a52d9409842581276154a6fa9763a57a24 (diff) |
fix tests
Diffstat (limited to 'tests/test_field.py')
-rw-r--r-- | tests/test_field.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_field.py b/tests/test_field.py index ac56184..e84c3fd 100644 --- a/tests/test_field.py +++ b/tests/test_field.py @@ -10,7 +10,7 @@ from sliceitoff.display import Scaling class TestFieldSprite(unittest.TestCase): def test_can_create(self): - fs = FieldSprite((0,0,320_000,220_000)) + fs = FieldSprite((0,0,320_000,220_000), (0,0,0,0)) self.assertNotEqual(None, fs) |