diff options
author | pommicket <pommicket@gmail.com> | 2025-09-23 13:31:00 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-23 13:31:00 -0400 |
commit | 3bf2b10ae0bef28677ea0ab3e2d1bbb3fe31735f (patch) | |
tree | f70dde9c5bcf1f6aae39ea609620ed8e8ca186d3 /tests/location.py | |
parent | 6407cf22def09de43ec2ec02692c0e4ea3b17742 (diff) |
Clean up examples, fix a few bugsv0.0.1
Diffstat (limited to 'tests/location.py')
-rw-r--r-- | tests/location.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/location.py b/tests/location.py index cdac8e7..b24d70b 100644 --- a/tests/location.py +++ b/tests/location.py @@ -5,7 +5,7 @@ def test_path(tester: unittest.TestCase, loc_path: str) -> None: conf_path = loc_path.replace('.locations.pom', '.pom') locs = pom_parser.load_path(loc_path) conf = pom_parser.load_path(conf_path) - for item in conf.items(): + for item in conf: expected = locs.get_uint(item.key) tester.assertTrue(expected is not None) tester.assertEqual(expected, item.line, f'Incorrect line number for {item.key}') |