From 42c369bf7ff5022087fc03fec78f953f401c4731 Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Tue, 17 Sep 2024 12:22:21 -0700 Subject: [PATCH] relax test expectations --- .../test/API/lang/swift/completion/TestSwiftREPLCompletion.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/test/API/lang/swift/completion/TestSwiftREPLCompletion.py b/lldb/test/API/lang/swift/completion/TestSwiftREPLCompletion.py index b16cd437f64af..83b4ea98fbe8d 100644 --- a/lldb/test/API/lang/swift/completion/TestSwiftREPLCompletion.py +++ b/lldb/test/API/lang/swift/completion/TestSwiftREPLCompletion.py @@ -29,8 +29,8 @@ def test_basic_completion(self): # Try completing something that has multiple completions. self.child.send("Hash\t") self.child.expect_exact("Available completions:") - self.child.expect_exact("Hashable") - self.child.expect_exact("Hasher") + self.child.expect_exact("\tHash --") + self.child.expect_exact("\tHash --") self.child.sendline("") self.quit()