[python-bindings] Changed test_memory_buffer_create_from_file to just use the generic provided test_file instead of a binary.

llvm-svn: 190389
This commit is contained in:
Michael Gottesman 2013-09-10 06:58:00 +00:00
parent f125e00e37
commit e0bc30284c
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class TestCore(TestBase):
self.assertEqual(op, OpCode.Ret) self.assertEqual(op, OpCode.Ret)
def test_memory_buffer_create_from_file(self): def test_memory_buffer_create_from_file(self):
source = self.get_test_binary() source = self.get_test_file()
MemoryBuffer(filename=source) MemoryBuffer(filename=source)