Skip to content
Snippets Groups Projects
Verified Commit 33f81162 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

fix: new black format

parent ec1adb79
No related branches found
No related tags found
1 merge request!44Support for PyPi
Pipeline #4332 failed
This commit is part of merge request !44. Comments created here will be created in the context of that merge request.
......@@ -7,12 +7,11 @@ from boytacean import GameBoy
CURRENT_DIR = dirname(realpath(__file__))
POCKET_ROM_PATH = join(CURRENT_DIR, "../../../../res/roms/demo/pocket.gb")
class BaseTest(unittest.TestCase):
def test_pocket(self):
gb = GameBoy(
apu_enabled=False, serial_enabled=False, load_graphics=False
)
gb = GameBoy(apu_enabled=False, serial_enabled=False, load_graphics=False)
gb.load_rom(POCKET_ROM_PATH)
for _ in range(600):
gb.next_frame()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment