diff options
Diffstat (limited to 'test/analysis/depgraph.py')
| -rw-r--r-- | test/analysis/depgraph.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/analysis/depgraph.py b/test/analysis/depgraph.py index 7120bd08..3f9b1a92 100644 --- a/test/analysis/depgraph.py +++ b/test/analysis/depgraph.py @@ -76,13 +76,13 @@ class Arch(object): return SP -class IRATest(ir, ira): +class IRATest(ira): """Fake IRA class for tests""" def __init__(self, symbol_pool=None): arch = Arch() - ir.__init__(self, arch, 32, symbol_pool) + super(IRATest, self).__init__(arch, 32, symbol_pool) self.IRDst = PC self.ret_reg = R |