Skip to content

Commit b25d2ab

Browse files
committed
fixup! format python file
1 parent a25b3c8 commit b25d2ab

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx-simulators/unique_ptr/TestDataFormatterLibcxxUniquePtrSimulator.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from lldbsuite.test import lldbutil
1010
import functools
1111

12+
1213
class LibcxxUniquePtrDataFormatterSimulatorTestCase(TestBase):
1314
NO_DEBUG_INFO_TESTCASE = True
1415

@@ -20,10 +21,13 @@ def _run_test(self, defines):
2021
)
2122
self.expect("frame variable var_up", substrs=["pointer ="])
2223
self.expect("frame variable var_up", substrs=["deleter ="], matching=False)
23-
self.expect("frame variable var_with_deleter_up", substrs=["pointer =", "deleter ="])
24+
self.expect(
25+
"frame variable var_with_deleter_up", substrs=["pointer =", "deleter ="]
26+
)
27+
2428

25-
#for r in range(3):
26-
for r in range(1):
29+
# for r in range(3):
30+
for r in [0, 2]:
2731
name = "test_r%d" % r
2832
defines = ["COMPRESSED_PAIR_REV=%d" % r]
2933
f = functools.partialmethod(

0 commit comments

Comments
 (0)