Skip to content

Commit fa3698f

Browse files
committed
fix TestLibraryIndirect.py
(cherry picked from commit 5967cbc)
1 parent 64df8e3 commit fa3698f

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
@@ -112,8 +112,9 @@ def cleanup():
112112
# This test is deliberately checking what the user will see, rather than
113113
# the structure provided by the Python API, in order to test the recovery.
114114
self.expect("fr var", substrs=[
115-
"(SomeLibrary.ContainsTwoInts) container = (wrapped = 0x",
116-
", other = 10)",
115+
"(SomeLibrary.ContainsTwoInts) container = {",
116+
"wrapped = 0x",
117+
"other = 10",
117118
"(Int) simple = 1"])
118119
self.expect("e container", substrs=["(SomeLibrary.ContainsTwoInts)", "(wrapped = 0x", ", other = 10"])
119120
self.expect("e container.wrapped", substrs=["(SomeLibrary.BoxedTwoInts)", "0x", "{}"])

0 commit comments

Comments
 (0)