1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-07-08 22:28:56 +00:00

Fix typo in test names

This commit is contained in:
Mike Naberezny 2017-05-08 17:01:55 -07:00
parent bd2bef179c
commit 16d21704cc

View File

@ -1218,7 +1218,7 @@ class MPUTests(unittest.TestCase, Common6502Tests):
# TSB Zero Page
def test_tsb_sp_ones(self):
def test_tsb_zp_ones(self):
mpu = self._make_mpu()
mpu.memory[0x00BB] = 0xE0
# $0000 TSB $BD
@ -1231,7 +1231,7 @@ class MPUTests(unittest.TestCase, Common6502Tests):
self.assertEqual(0x0002, mpu.pc)
self.assertEqual(5, mpu.processorCycles)
def test_tsb_sp_zeros(self):
def test_tsb_zp_zeros(self):
mpu = self._make_mpu()
mpu.memory[0x00BB] = 0x80
# $0000 TSB $BD
@ -1274,7 +1274,7 @@ class MPUTests(unittest.TestCase, Common6502Tests):
# TRB Zero Page
def test_trb_sp_ones(self):
def test_trb_zp_ones(self):
mpu = self._make_mpu()
mpu.memory[0x00BB] = 0xE0
# $0000 TRB $BD
@ -1287,7 +1287,7 @@ class MPUTests(unittest.TestCase, Common6502Tests):
self.assertEqual(0x0002, mpu.pc)
self.assertEqual(5, mpu.processorCycles)
def test_trb_sp_zeros(self):
def test_trb_zp_zeros(self):
mpu = self._make_mpu()
mpu.memory[0x00BB] = 0x80
# $0000 TRB $BD