diff options
author | Michael Gottesman <mgottesman@apple.com> | 2013-09-10 06:58:00 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2013-09-10 06:58:00 +0000 |
commit | 86942d20b9ca8861207edd49eba13939dfec230a (patch) | |
tree | 8dc2245b85289ff7f12229cda5d847705c9f909e /bindings/python | |
parent | 653212fdd1f5b5eea1c5b7d4d28b3f6c8fd05bba (diff) |
[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
Diffstat (limited to 'bindings/python')
-rw-r--r-- | bindings/python/llvm/tests/test_core.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |