diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-11-09 13:11:13 -0800 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-11-09 13:11:13 -0800 |
commit | 1d2239e091e9cbf9026ec5afe7e86b718b9b8f38 (patch) | |
tree | b9f3b955a70625b1310c7d509abacfcbb30fa0f3 | |
parent | dafb5518df768f93ac94c59d4bf5981e95f7aba0 (diff) | |
parent | cddfe3804dcf7ef0f2a39e6d9af84f98b10355ef (diff) |
Merge pull request #46 from kanzure/fix-old-parsers-test-imports
Fix a few imports for testing an old func
-rw-r--r-- | pokemontools/crystalparts/old_parsers.py | 2 | ||||
-rw-r--r-- | tests/integration/tests.py | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/pokemontools/crystalparts/old_parsers.py b/pokemontools/crystalparts/old_parsers.py index e07082d..2c1d2b2 100644 --- a/pokemontools/crystalparts/old_parsers.py +++ b/pokemontools/crystalparts/old_parsers.py @@ -2,7 +2,7 @@ Some old methods rescued from crystal.py """ -import pointers +import pokemontools.pointers as pointers map_header_byte_size = 9 diff --git a/tests/integration/tests.py b/tests/integration/tests.py index 40933e5..4f96699 100644 --- a/tests/integration/tests.py +++ b/tests/integration/tests.py @@ -42,6 +42,10 @@ from pokemontools.helpers import ( index, ) +from pokemontools.crystalparts.old_parsers import ( + old_parse_map_header_at, +) + from pokemontools.crystal import ( rom, load_rom, @@ -65,7 +69,6 @@ from pokemontools.crystal import ( all_labels, write_all_labels, parse_map_header_at, - old_parse_map_header_at, process_00_subcommands, parse_all_map_headers, translate_command_byte, |