diff --git a/lldb/test/API/lang/swift/cxx_interop/forward/variadic-template-types/TestSwiftForwardInteropVariadicTemplateTypes.py b/lldb/test/API/lang/swift/cxx_interop/forward/variadic-template-types/TestSwiftForwardInteropVariadicTemplateTypes.py index 19501ba8d14b1..e0b99818ec091 100644 --- a/lldb/test/API/lang/swift/cxx_interop/forward/variadic-template-types/TestSwiftForwardInteropVariadicTemplateTypes.py +++ b/lldb/test/API/lang/swift/cxx_interop/forward/variadic-template-types/TestSwiftForwardInteropVariadicTemplateTypes.py @@ -17,9 +17,9 @@ def test(self): self.expect('frame var pair', substrs=['Pair', 'Tuple', '_t', 'v = false', '_t', 'a1', '10', 'a2', '20', 'a3', '30']) - self.expect('expr pair', substrs=['Pair', 'Tuple', '_t', - 'v = false', '_t', 'a1', '10', 'a2', '20', 'a3', '30']) - # rdar://106459037 (Swift/C++ interop: Variadic templates aren't displayed correctly) - # self.expect('frame var variadic', substrs=['Tuple', '_t', - # 'v = false', 'a1', '10', 'a2', '20', 'a3', '30']) + # self.expect('expr pair', substrs=['Pair', 'Tuple', '_t', + # 'v = false', '_t', 'a1', '10', 'a2', '20', 'a3', '30']) + + self.expect('frame var variadic', substrs=['Tuple', '_t', + 'a1', '10', 'a2', '20', 'a3', '30', 'v = false'])