summaryrefslogtreecommitdiff
path: root/tests/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests.py')
-rw-r--r--tests/tests.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/tests.py b/tests/tests.py
index 7b37794..15cf3c3 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -416,16 +416,6 @@ class TestAsmList(unittest.TestCase):
self.assertEqual(labels[0]["label"], "HelloWorld")
del asm
- # this test takes a lot of time :(
- def xtest_scan_for_predefined_labels(self):
- # label keys: line_number, bank, label, offset, address
- load_asm()
- all_labels = scan_for_predefined_labels()
- label_names = [x["label"] for x in all_labels]
- self.assertIn("GetFarByte", label_names)
- self.assertIn("AddNTimes", label_names)
- self.assertIn("CheckShininess", label_names)
-
def test_write_all_labels(self):
"""dumping json into a file"""
filename = "test_labels.json"