Skip to content

Commit 3117231

Browse files
committed
fixup! python format
1 parent bd20056 commit 3117231

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/shared_ptr/TestDataFormatterLibcxxSharedPtr.py

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

5-
65
import lldb
76
from lldbsuite.test.decorators import *
87
from lldbsuite.test.lldbtest import *
@@ -92,15 +91,11 @@ def test_shared_ptr_variables(self):
9291
self.expect_var_path("sp_user->name", type="std::string", summary='"steph"')
9392

9493
valobj = self.expect_var_path(
95-
"si",
96-
type="std::shared_ptr<int>",
97-
summary="47 strong=2 weak=1"
94+
"si", type="std::shared_ptr<int>", summary="47 strong=2 weak=1"
9895
)
9996

10097
valobj = self.expect_var_path(
101-
"sie",
102-
type="std::shared_ptr<int>",
103-
summary="nullptr strong=2 weak=1"
98+
"sie", type="std::shared_ptr<int>", summary="nullptr strong=2 weak=1"
10499
)
105100

106101
self.runCmd("settings set target.experimental.use-DIL true")

0 commit comments

Comments
 (0)