From 3193a348f76e061f3033b53d3f0ac75f42d3c480 Mon Sep 17 00:00:00 2001 From: Mike Naberezny Date: Wed, 26 Sep 2018 19:10:53 -0700 Subject: [PATCH] Fix test for assembling by label. [Michael A. Morris] --- py65/tests/test_monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py65/tests/test_monitor.py b/py65/tests/test_monitor.py index c54579f..8919aeb 100644 --- a/py65/tests/test_monitor.py +++ b/py65/tests/test_monitor.py @@ -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])