Skip to content

Commit 5967cbc

Browse files
committed
fix TestLibraryIndirect.py
1 parent 3ff1e49 commit 5967cbc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lldb/test/API/lang/swift/implementation_only_imports/library_indirect/TestLibraryIndirect.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,9 @@ def cleanup():
114114
# This test is deliberately checking what the user will see, rather than
115115
# the structure provided by the Python API, in order to test the recovery.
116116
self.expect("fr var", substrs=[
117-
"(SomeLibrary.ContainsTwoInts) container = (wrapped = 0x",
118-
", other = 10)",
117+
"(SomeLibrary.ContainsTwoInts) container = {",
118+
"wrapped = 0x",
119+
"other = 10",
119120
"(Int) simple = 1"])
120121
self.expect("e container", substrs=["(SomeLibrary.ContainsTwoInts)", "(wrapped = 0x", ", other = 10"])
121122
self.expect("e container.wrapped", substrs=["(SomeLibrary.BoxedTwoInts)", "0x", "{}"])

0 commit comments

Comments
 (0)