We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aa7105 commit 82e9b0bCopy full SHA for 82e9b0b
Tests/IntegrationTests/ClientIntegrationTests.swift
@@ -607,7 +607,8 @@ struct ClientIntegratedTests {
607
#expect(clientInfo.contains("db=\(dbNum)"))
608
609
// Verify via setting and getting keys on all the DBs
610
- let key = "key-\(dbNum)", value = "value-\(dbNum)"
+ let key = "key-\(dbNum)"
611
+ let value = "value-\(dbNum)"
612
try await connection.set(ValkeyKey(key), value: value)
613
let response = try await connection.get(ValkeyKey(key)).map { String(buffer: $0) }
614
#expect(response == value)
0 commit comments