mirror of
https://github.com/mnaberez/py65.git
synced 2025-01-01 11:29:32 +00:00
Fix typo in test name
This commit is contained in:
parent
d50458ca85
commit
b8bfcfff06
@ -126,9 +126,9 @@ class AddressParserTests(unittest.TestCase):
|
||||
|
||||
# address_for
|
||||
|
||||
def test_address_for_returns_label(self):
|
||||
def test_address_for_returns_address(self):
|
||||
parser = AddressParser(labels={'chrout': 0xFFD2})
|
||||
self.assertEqual(0xffd2, parser.address_for('chrout'))
|
||||
self.assertEqual(0xFFD2, parser.address_for('chrout'))
|
||||
|
||||
def test_address_for_returns_none_by_default(self):
|
||||
parser = AddressParser(labels={})
|
||||
|
Loading…
Reference in New Issue
Block a user