From 86942d20b9ca8861207edd49eba13939dfec230a Mon Sep 17 00:00:00 2001 From: Michael Gottesman Date: Tue, 10 Sep 2013 06:58:00 +0000 Subject: [PATCH] [python-bindings] Changed test_memory_buffer_create_from_file to just use the generic provided test_file instead of a binary. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190389 91177308-0d34-0410-b5e6-96231b3b80d8 --- bindings/python/llvm/tests/test_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/llvm/tests/test_core.py b/bindings/python/llvm/tests/test_core.py index 699f3105e81..bd792a10330 100644 --- a/bindings/python/llvm/tests/test_core.py +++ b/bindings/python/llvm/tests/test_core.py @@ -13,7 +13,7 @@ class TestCore(TestBase): self.assertEqual(op, OpCode.Ret) def test_memory_buffer_create_from_file(self): - source = self.get_test_binary() + source = self.get_test_file() MemoryBuffer(filename=source) -- 2.34.1