File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/com/redislabs/redisai Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ public void testSetTensorNegative() {
86
86
Assert .fail ("Should throw JedisDataException" );
87
87
} catch (RedisAIException e ) {
88
88
Assert .assertEquals (
89
- "redis.clients.jedis.exceptions.JedisDataException: ERR wrong number of arguments for 'AI.TENSORSET' command" ,
89
+ "redis.clients.jedis.exceptions.JedisDataException: ERR wrong number of values was given in 'AI.TENSORSET' command" ,
90
90
e .getMessage ());
91
91
}
92
92
@@ -96,7 +96,7 @@ public void testSetTensorNegative() {
96
96
Assert .fail ("Should throw JedisDataException" );
97
97
} catch (RedisAIException e ) {
98
98
Assert .assertEquals (
99
- "redis.clients.jedis.exceptions.JedisDataException: ERR wrong number of arguments for 'AI.TENSORSET' command" ,
99
+ "redis.clients.jedis.exceptions.JedisDataException: ERR wrong number of values was given in 'AI.TENSORSET' command" ,
100
100
e .getMessage ());
101
101
}
102
102
}
You can’t perform that action at this time.
0 commit comments