about summary refs log tree commit diff stats
path: root/test/arch/x86/unit/asm_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/arch/x86/unit/asm_test.py')
-rw-r--r--test/arch/x86/unit/asm_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/arch/x86/unit/asm_test.py b/test/arch/x86/unit/asm_test.py
index 401b344a..8310134d 100644
--- a/test/arch/x86/unit/asm_test.py
+++ b/test/arch/x86/unit/asm_test.py
@@ -63,9 +63,9 @@ class Asm_Test(object):
 
     def run(self):
         run_addr = 0
-        self.myjit.vm.vm_add_memory_page(run_addr, PAGE_READ | PAGE_WRITE, self.assembly)
+        self.myjit.vm.add_memory_page(run_addr, PAGE_READ | PAGE_WRITE, self.assembly)
 
-        self.myjit.vm_push_uint32_t(0x1337beef)
+        self.myjit.push_uint32_t(0x1337beef)
 
         self.myjit.add_breakpoint(0x1337beef, lambda x:False)