about summary refs log tree commit diff stats
path: root/test/ir/reduce_graph.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2020-12-24 20:29:39 +0100
committerGitHub <noreply@github.com>2020-12-24 20:29:39 +0100
commit53735e8cd23aa4bc1eed641264de3b9d18692103 (patch)
treed00eca211174dcef32971e271f307721a1217a40 /test/ir/reduce_graph.py
parent40d150d0089494d07dd5e10bc7625df41fbf3f68 (diff)
parent73e54732e50b405762c64e0faa032e5ae0fcd1ed (diff)
downloadmiasm-53735e8cd23aa4bc1eed641264de3b9d18692103.tar.gz
miasm-53735e8cd23aa4bc1eed641264de3b9d18692103.zip
Merge pull request #1326 from serpilliere/rename_lifter
Rename lifter
Diffstat (limited to 'test/ir/reduce_graph.py')
-rw-r--r--test/ir/reduce_graph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ir/reduce_graph.py b/test/ir/reduce_graph.py
index 4aa2d5ef..5142cf5a 100644
--- a/test/ir/reduce_graph.py
+++ b/test/ir/reduce_graph.py
@@ -9,7 +9,7 @@ from miasm.expression.expression import ExprId, ExprInt, ExprAssign, ExprCond, \
     ExprLoc, LocKey
 
 from miasm.core.locationdb import LocationDB
-from miasm.ir.analysis import ira
+from miasm.ir.analysis import LifterModelCall
 from miasm.ir.ir import IRBlock, AssignBlock, IRCFG
 from miasm.analysis.data_flow import merge_blocks
 
@@ -70,7 +70,7 @@ class Arch(object):
         return SP
 
 
-class IRATest(ira):
+class IRATest(LifterModelCall):
 
     """Fake IRA class for tests"""