Skip to content

Commit 82afae0

Browse files
committed
The test added to TestContainerCommands.py cherry-picked
in 78233d9 checks the apropos string to make sure the command was added, but in TOT the first letter of the short help is capitalized, whereas in this branch it isn't, so the test had to be modified for this branch.
1 parent aac7099 commit 82afae0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/commands/command/container/TestContainerCommands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def container_add(self):
6868
# Make sure we really did overwrite:
6969
self.expect("test-multi test-multi-sub welcome friend", "Used the new command class",
7070
substrs=["Hello friend, welcome again to LLDB"])
71-
self.expect("apropos welcome", "welcome should show up in apropos", substrs=["A docstring for the second Welcome"])
71+
self.expect("apropos welcome", "welcome should show up in apropos", substrs=["a docstring for the second Welcome"])
7272

7373
# Now switch the default and make sure we can now delete w/o the overwrite option:
7474
self.runCmd("settings set interpreter.require-overwrite 0")

0 commit comments

Comments
 (0)