From 43af76e63d23259bd4061652c59e07314759d36f 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. llvm-svn: 190389 --- 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)