We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e777a6 commit 907b97dCopy full SHA for 907b97d
lldb/test/API/commands/command/script/TestCommandScript.py
@@ -21,8 +21,8 @@ def pycmd_tests(self):
21
22
# Test that we did indeed add these commands as user commands:
23
interp = self.dbg.GetCommandInterpreter()
24
- self.expectTrue(interp.UserCommandExists("foobar"), "foobar exists")
25
- self.expectFalse(interp.CommandExists("foobar"), "It is not a builtin.")
+ self.assertTrue(interp.UserCommandExists("foobar"), "foobar exists")
+ self.assertFalse(interp.CommandExists("foobar"), "It is not a builtin.")
26
27
# Test a bunch of different kinds of python callables with
28
# both 4 and 5 positional arguments.
0 commit comments