From 4c05019dc0cdf1b88bb229677f45c9a13074b84f Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Mon, 3 Feb 2020 20:44:53 -0800 Subject: [PATCH] [lldb/Test] Fix typo in TestDataFormatterStdMap.py --- .../libstdcpp/map/TestDataFormatterStdMap.py | 28 ++++++++++++---------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py index b3692d08..0e32e49 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py @@ -201,19 +201,23 @@ class StdMapDataFormatterTestCase(TestBase): self.runCmd("c") - self.expect("frame variable is", - substrs=['map has 4 items', - '[0] = (first = 1, second = "is")', - '[1] = (first = 2, second = "smart")', - '[2] = (first = 3, second = "!!!")', - '[3] = (first = 85, second = "goofy")') + self.expect( + "frame variable is", + substrs=[ + 'map has 4 items', '[0] = (first = 1, second = "is")', + '[1] = (first = 2, second = "smart")', + '[2] = (first = 3, second = "!!!")', + '[3] = (first = 85, second = "goofy")' + ]) - self.expect("p is", - substrs=['map has 4 items', - '[0] = (first = 1, second = "is")', - '[1] = (first = 2, second = "smart")', - '[2] = (first = 3, second = "!!!")', - '[3] = (first = 85, second = "goofy")') + self.expect( + "p is", + substrs=[ + 'map has 4 items', '[0] = (first = 1, second = "is")', + '[1] = (first = 2, second = "smart")', + '[2] = (first = 3, second = "!!!")', + '[3] = (first = 85, second = "goofy")' + ]) # check access-by-index self.expect("frame variable is[0]", -- 2.7.4