about summary refs log tree commit diff stats
path: root/test/core
diff options
context:
space:
mode:
authorFlorent Monjalet <florent.monjalet@gmail.com>2015-11-30 16:00:26 +0100
committerFlorent Monjalet <florent.monjalet@gmail.com>2016-01-18 14:02:31 +0100
commitba2df16277d7d4deae118ed11e1e92cd478045ec (patch)
treecc59fe2f9fae2fd0bcf795b4268bd305d242fb41 /test/core
parentb3b0b03b4a7b3e69c62bf6742c3ea582e0e78061 (diff)
downloadmiasm-ba2df16277d7d4deae118ed11e1e92cd478045ec.tar.gz
miasm-ba2df16277d7d4deae118ed11e1e92cd478045ec.zip
MemStruct/Types: Renamed analysis.mem to core.types
Diffstat (limited to '')
-rw-r--r--test/core/types.py (renamed from test/analysis/mem.py)10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/analysis/mem.py b/test/core/types.py
index 6c7fc9e3..db72449c 100644
--- a/test/analysis/mem.py
+++ b/test/core/types.py
@@ -1,14 +1,14 @@
 #!/usr/bin/env python
 
-# miasm2.analysis.mem tests
+# miasm2.core.types tests
 
 import struct
 
 from miasm2.analysis.machine import Machine
-from miasm2.analysis.mem import MemStruct, Num, Ptr, Str, \
-                                Array, RawStruct, Union, \
-                                BitField, Self, Void, Bits, \
-                                set_allocator, MemUnion, Struct
+from miasm2.core.types import MemStruct, Num, Ptr, Str, \
+                              Array, RawStruct, Union, \
+                              BitField, Self, Void, Bits, \
+                              set_allocator, MemUnion, Struct
 from miasm2.jitter.csts import PAGE_READ, PAGE_WRITE
 from miasm2.os_dep.common import heap