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 1c43be0 commit 0999996Copy full SHA for 0999996
lldb/test/API/commands/command/backticks/TestBackticksInAlias.py
@@ -76,6 +76,7 @@ def test_backticks_in_raw_cmd(self):
76
interp = self.dbg.GetCommandInterpreter()
77
interp.HandleCommand(f"script {argc_value} - `argc`", result)
78
self.assertTrue(result.Succeeded(), "Command succeeded")
79
- self.assertEqual("0\n", result.GetOutput(), "Substitution worked")
+ fixed_output = result.GetOutput().rstrip()
80
+ self.assertEqual("0", fixed_output, "Substitution worked")
81
82
0 commit comments