From: Anders Waldenborg Date: Wed, 23 Apr 2014 20:32:03 +0000 (+0000) Subject: [python] Fix python bindings tests X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=99bf4b758ff3027f7b942268a0c999be1574b05b;p=oota-llvm.git [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 --- diff --git a/bindings/python/llvm/tests/test_object.py b/bindings/python/llvm/tests/test_object.py index 7ff981b6a2f..5662d2240e0 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)