mirror of
https://github.com/mnaberez/py65.git
synced 2025-01-01 11:29:32 +00:00
Fix typo in test names
This commit is contained in:
parent
bd2bef179c
commit
16d21704cc
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user