Skip to content

Commit 63066cc

Browse files
committed
fixup! python format
1 parent 9963727 commit 63066cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Test lldb data formatter subsystem.
33
"""
44

5-
65
import lldb
76
from lldbsuite.test.decorators import *
87
from lldbsuite.test.lldbtest import *
@@ -39,7 +38,8 @@ def test_with_run_command(self):
3938
"frame variable idp", substrs=["idp = 456", "deleter = ", "a = 1", "b = 2"]
4039
)
4140
self.expect(
42-
"frame variable sdp", substrs=['sdp = "baz"', "deleter = ", "a = 3", "b = 4"]
41+
"frame variable sdp",
42+
substrs=['sdp = "baz"', "deleter = ", "a = 3", "b = 4"],
4343
)
4444

4545
self.assertEqual(

0 commit comments

Comments
 (0)