summaryrefslogtreecommitdiff
path: root/bindings/python
diff options
context:
space:
mode:
authorAnders Waldenborg <anders@0x63.nu>2014-04-23 20:32:03 +0000
committerAnders Waldenborg <anders@0x63.nu>2014-04-23 20:32:03 +0000
commit99bf4b758ff3027f7b942268a0c999be1574b05b (patch)
treea58bde6e26643a60e5ccd92ebfe0acfe0176dc9e /bindings/python
parent6cd6974e56977ac28ebcf851d55d705044656772 (diff)
downloadllvm-99bf4b758ff3027f7b942268a0c999be1574b05b.tar.gz
llvm-99bf4b758ff3027f7b942268a0c999be1574b05b.tar.bz2
llvm-99bf4b758ff3027f7b942268a0c999be1574b05b.tar.xz
[python] Fix python bindings tests
Broke after the changes related to the LLVMGetSymbolFileOffset removal in r206750 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207018 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/python')
-rw-r--r--bindings/python/llvm/tests/test_object.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/bindings/python/llvm/tests/test_object.py b/bindings/python/llvm/tests/test_object.py
index 7ff981b6a2..5662d2240e 100644
--- a/bindings/python/llvm/tests/test_object.py
+++ b/bindings/python/llvm/tests/test_object.py
@@ -39,7 +39,6 @@ class TestObjectFile(TestBase):
assert isinstance(symbol.name, str)
assert isinstance(symbol.address, long)
assert isinstance(symbol.size, long)
- assert isinstance(symbol.file_offset, long)
self.assertGreater(count, 0)