about summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2017-08-07 14:17:42 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2017-08-08 09:25:57 +0200
commit8330eaecfd17c50c5a26ea3f3a9061f69d0159d4 (patch)
tree498793678cd9afff1da27e4de7f3c5faf2e0d346 /test
parentf55fe45c864ea427e4f37631c7c4048e8976ccc8 (diff)
downloadmiasm-8330eaecfd17c50c5a26ea3f3a9061f69d0159d4.tar.gz
miasm-8330eaecfd17c50c5a26ea3f3a9061f69d0159d4.zip
Objc: return accesses set
Diffstat (limited to 'test')
-rw-r--r--test/expr_type/test_chandler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/expr_type/test_chandler.py b/test/expr_type/test_chandler.py
index 2fa3f979..8070841d 100644
--- a/test/expr_type/test_chandler.py
+++ b/test/expr_type/test_chandler.py
@@ -208,8 +208,8 @@ assert obj_test_context.size > obj_test_st.size
 assert cmp(obj_test_st, obj_recurse) != 0
 
 
-expr_types = {ptr_test: (obj_test,),
-              ptr_recurse: (obj_recurse,)}
+expr_types = {ptr_test: set([obj_test]),
+              ptr_recurse: set([obj_recurse])}
 
 
 c_context = {ptr_test.name: obj_test,