From 210eb970de7fa9531f844e72074d1db662ff2b1e Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Mon, 26 Oct 2015 16:50:39 +0000 Subject: 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 --- lldb/test/python_api/section/TestSectionAPI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/test/python_api/section') 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) -- cgit v1.2.3