You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
XCTAssertEqual(resultList?[0],RedisString("one"),"The first element of the list should be \(RedisString("one")). It was \(String(describing:resultList?[0]))")
112
+
XCTAssertEqual(resultList?[1],RedisString("-1.5"),"The first score of the list should be \(RedisString("-1.5")). It was \(String(describing:resultList?[0]))")
113
+
114
+
XCTAssertEqual(resultList?[2],RedisString("two"),"The first element of the list should be \(RedisString("two")). It was \(String(describing:resultList?[1]))")
115
+
XCTAssertEqual(resultList?[3],RedisString("2.33333333"),"The first score of the list should be \(RedisString("2.33333333")). It was \(String(describing:resultList?[1]))")
116
+
117
+
XCTAssertEqual(resultList?[4],RedisString("three"),"The first element of the list should be \(RedisString("three")). It was \(String(describing:resultList?[2]))")
118
+
XCTAssertEqual(resultList?[5],RedisString("3.14159"),"The first score of the list should be \(RedisString("3.14159")). It was \(String(describing:resultList?[2]))")
119
+
120
+
XCTAssertEqual(resultList?.count,6,"The size of the list should be 6. It was \(String(describing: resultList?.count))")
0 commit comments