diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-09-01 15:33:52 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-01 15:33:52 -0500 |
commit | 74a9f14502a51f25f16be62135d28dc7adba6fbb (patch) | |
tree | 8011150e4b6e7a5cde5760ff83f996186be00fb9 /tests/integration/tests.py | |
parent | adb89bb985b02f2072da9770072b54e8f1d38bba (diff) |
move index and grouper into helpers.py
Diffstat (limited to 'tests/integration/tests.py')
-rw-r--r-- | tests/integration/tests.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/integration/tests.py b/tests/integration/tests.py index 0d0ac68..1dffd4e 100644 --- a/tests/integration/tests.py +++ b/tests/integration/tests.py @@ -37,6 +37,11 @@ from pokemontools.labels import ( get_label_from_line, ) +from pokemontools.helpers import ( + grouper, + index, +) + from pokemontools.crystal import ( rom, load_rom, @@ -69,9 +74,7 @@ from pokemontools.crystal import ( load_asm, asm, is_valid_address, - index, how_many_until, - grouper, get_pokemon_constant_by_id, generate_map_constant_labels, get_map_constant_label_by_id, |