about summary refs log tree commit diff stats
path: root/test/analysis/depgraph.py
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2016-01-30 22:54:31 +0100
committerCamille Mougey <commial@gmail.com>2016-01-30 22:54:31 +0100
commit3672de7c319f39273cb7e34797cb928f424ff7c4 (patch)
treeb2b8f867dbec627940b2be9406ae87a009c731bf /test/analysis/depgraph.py
parentdbf10438741443d59b8db500905d3d110a34c73c (diff)
parentd1eaeba1aab93a918d858750e2cc11a7ea283fbd (diff)
downloadmiasm-3672de7c319f39273cb7e34797cb928f424ff7c4.tar.gz
miasm-3672de7c319f39273cb7e34797cb928f424ff7c4.zip
Merge pull request #314 from serpilliere/graph_ir_asm
Graph ir asm
Diffstat (limited to 'test/analysis/depgraph.py')
-rw-r--r--test/analysis/depgraph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/analysis/depgraph.py b/test/analysis/depgraph.py
index b532080b..211671a4 100644
--- a/test/analysis/depgraph.py
+++ b/test/analysis/depgraph.py
@@ -168,7 +168,7 @@ DD2.cache[DEPNODES_0[4]] = set(DEPNODES_0[5:9])
 assert DD2.cache != DD0.cache
 
 
-print "   [+] Test dictionnary equality"
+print "   [+] Test dictionary equality"
 DNA = DependencyNode(LBL2, A, 0, next(STEP_COUNTER))
 DNB = DependencyNode(LBL1, B, 1, next(STEP_COUNTER))
 DNC = DependencyNode(LBL1, C, 0, next(STEP_COUNTER), True)