Skip to content

Commit 80b2005

Browse files
committed
fix tests
1 parent a7b15c5 commit 80b2005

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Tests/AuthTests/AuthClientTests.swift

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,9 @@ final class AuthClientTests: XCTestCase {
7070
"""
7171
}
7272

73-
XCTAssertEqual(client.clientID, 1)
74-
7573
let client2 = makeSUT()
76-
XCTAssertEqual(client2.clientID, 2)
74+
75+
XCTAssertLessThan(client.clientID, client2.clientID, "Should increase client IDs")
7776
}
7877

7978
func testOnAuthStateChanges() async throws {

0 commit comments

Comments
 (0)