From 84daa5d1278529a11a03576eddb3acb29167c9b5 Mon Sep 17 00:00:00 2001 From: Marat Al Date: Fri, 12 Jul 2024 17:37:00 +0200 Subject: [PATCH] Fix issue #1946 here so all tests would pass (the issue is too small to have a dedicated PR). --- Test/Tests/AuthTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test/Tests/AuthTests.swift b/Test/Tests/AuthTests.swift index 9a09da555..9fb811768 100644 --- a/Test/Tests/AuthTests.swift +++ b/Test/Tests/AuthTests.swift @@ -1914,7 +1914,7 @@ class AuthTests: XCTestCase { guard let error = error else { fail("Error is nil"); done(); return } - expect(error.message).to(contain("mismatched clientId")) + expect(error.message).to(contain("invalid clientId")) done() } }