diff options
author | Zachary Turner <zturner@google.com> | 2015-10-26 16:50:39 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-10-26 16:50:39 +0000 |
commit | 210eb970de7fa9531f844e72074d1db662ff2b1e (patch) | |
tree | 3c3e98a4f20962283c43150a1d8e6bc57bc30b27 /lldb/test/python_api/section/TestSectionAPI.py | |
parent | 744cd5d8ed9c46dc05718c9cf598a1a4f29ef8ff (diff) | |
download | bcm5719-llvm-210eb970de7fa9531f844e72074d1db662ff2b1e.tar.gz bcm5719-llvm-210eb970de7fa9531f844e72074d1db662ff2b1e.zip |
Convert deprecated unittest method names.
Plural methods were long deprecated, and in Python 3 they are gone.
Convert to the actual supported method names.
llvm-svn: 251303
Diffstat (limited to 'lldb/test/python_api/section/TestSectionAPI.py')
-rwxr-xr-x | lldb/test/python_api/section/TestSectionAPI.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/python_api/section/TestSectionAPI.py b/lldb/test/python_api/section/TestSectionAPI.py index 4d94a80df32..4575f90747c 100755 --- a/lldb/test/python_api/section/TestSectionAPI.py +++ b/lldb/test/python_api/section/TestSectionAPI.py @@ -38,4 +38,4 @@ class SectionAPITestCase(TestBase): break self.assertIsNotNone(data_section) - self.assertEquals(data_section.target_byte_size, 1) + self.assertEqual(data_section.target_byte_size, 1) |