Skip to content
Snippets Groups Projects

STRLEN

Merged Daniel Ramteke requested to merge danramteke/RediStack:strlen into master
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -232,7 +232,7 @@ final class StringCommandsTests: RediStackIntegrationTestCase {
func test_strlen() throws {
XCTAssertNoThrow(try connection.set(#function, to: "value").wait())
let val = try connection.strlen(#function).wait()
let val = try connection.send(.strln(#function)).wait()
XCTAssertEqual(val, 5)
}
}
Loading