diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 16:32:52 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 16:32:52 -0600 |
commit | 44db66e13e55d01adac349a48e26384318f24c56 (patch) | |
tree | 1b5e2b849fdbcaee2f1dbc049d7c10711cfa8bf3 /extras/tests.py | |
parent | 564a1b5874dfb7bae6454ad0b78d11cd1454aaab (diff) |
fix AsmList import in tests
Diffstat (limited to 'extras/tests.py')
-rw-r--r-- | extras/tests.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/extras/tests.py b/extras/tests.py index 10b142acb..0d61ed6db 100644 --- a/extras/tests.py +++ b/extras/tests.py @@ -8,10 +8,14 @@ import hashlib import random import json -from romstr import RomStr from interval_map import IntervalMap from chars import chars, jap_chars +from romstr import ( + RomStr, + AsmList, +) + from item_constants import ( item_constants, find_item_label_by_id, @@ -67,7 +71,6 @@ from crystal import ( generate_map_constant_labels, get_map_constant_label_by_id, get_id_for_map_constant_label, - AsmList, calculate_pointer_from_bytes_at, isolate_incbins, remove_quoted_text, |