1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-12-30 13:29:18 +00:00

Fix hexadecimal notation

This commit is contained in:
Mike Naberezny 2013-10-26 13:56:06 -07:00
parent 455fb5da2d
commit 12f14447b1

View File

@ -144,7 +144,7 @@ class ObservableMemoryTests(unittest.TestCase):
return 0xFF
mem.subscribe_to_write([0xC000, 0xC001], write_subscriber)
mem.write(0xC000, [0x01, 002])
mem.write(0xC000, [0x01, 0x02])
self.assertEqual(0x01, subject[0xC000])
self.assertEqual(0x02, subject[0xC001])