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 | a94c18fca31dab1d4b82c02c6bd428e7f08da9d0 (patch) | |
tree | 5995c713cd9c5f1c2d018f07cf0e7e5ee778c9b5 | |
parent | 13f0b0df1147be2bc03a0142cb6d9c5420c86af9 (diff) |
fix AsmList import in tests
original-commit-id: 44db66e13e55d01adac349a48e26384318f24c56
-rw-r--r-- | tests.py | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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, |