summaryrefslogtreecommitdiff
path: root/tests/arch/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/arch/errors.py')
-rw-r--r--tests/arch/errors.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/arch/errors.py b/tests/arch/errors.py
index 9d5e273..8affb77 100644
--- a/tests/arch/errors.py
+++ b/tests/arch/errors.py
@@ -26,7 +26,12 @@ class TestArchErrors(ChrysalideTestCase):
pattern.append([ArchProcessor.APE_LABEL, addr, 'random desc #%d' % i])
- proc = ArchProcessor()
+
+ class NewProc(ArchProcessor):
+ pass
+
+
+ proc = NewProc()
for i in range(errlen):