Skip to content

Commit 1a831c9

Browse files
Merge pull request #9484 from adrian-prantl/fix-assert
Rename assertEquals -> assertEqual
2 parents a0000b5 + 36efc84 commit 1a831c9

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/TestInitializerList.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,3 @@ def test(self):
4040
"frame variable ils",
4141
substrs=['[4] = "surprise it is a long string!! yay!!"'],
4242
)
43-
44-
self.expect("image list", substrs=self.getLibcPlusPlusLibs())

lldb/test/API/lang/swift/expression/language_version/TestSwiftExpressionLanguageVersion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def test_version(n):
2727
options = lldb.SBExpressionOptions()
2828
options.SetLanguage(lldb.eLanguageNameSwift, n*100 + 0)
2929
value = self.frame().EvaluateExpression(expr, options)
30-
self.assertEquals(value.GetValue(), "%d" % n)
30+
self.assertEqual(value.GetValue(), "%d" % n)
3131

3232
test_version(5)
3333
test_version(6)

0 commit comments

Comments
 (0)