diff options
Diffstat (limited to 'lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py')
| -rw-r--r-- | lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py b/lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py index 3772e63d085..833229e06b0 100644 --- a/lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py +++ b/lldb/test/functionalities/abbreviation/TestCommonShortSpellings.py @@ -32,7 +32,7 @@ class CommonShortSpellingsTestCase(TestBase): ('ta st li', 'target stop-hook list'), ] - for (short, long) in abbrevs: - command_interpreter.ResolveCommand(short, result) + for (short_val, long_val) in abbrevs: + command_interpreter.ResolveCommand(short_val, result) self.assertTrue(result.Succeeded()) - self.assertEqual(long, result.GetOutput()) + self.assertEqual(long_val, result.GetOutput()) |

