1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-07-12 17:29:24 +00:00

Fix test for assembling by label. [Michael A. Morris]

This commit is contained in:
Mike Naberezny 2018-09-26 19:10:53 -07:00
parent e0722dcb6a
commit 3193a348f7

View File

@ -158,7 +158,7 @@ class MonitorTests(unittest.TestCase):
stdout = StringIO()
mon = Monitor(stdout=stdout)
mon.do_add_label('c000 base')
mon.do_assemble('c000 rts')
mon.do_assemble('base rts')
mpu = mon._mpu
self.assertEqual(0x60, mpu.memory[0xC000])