Fix some more U tests ...

This commit is contained in:
Yaourt
2010-11-05 10:17:03 +01:00
parent afad308e29
commit 2836d78c44
3 changed files with 16 additions and 6 deletions

View File

@@ -21,8 +21,9 @@ public class ControlCommandsTest extends JedisCommandTestBase {
String status = jedis.bgsave();
assertEquals("Background saving started", status);
} catch (JedisException e) {
assertEquals("ERR Background save already in progress", e
.getMessage());
assertTrue(
"ERR Background save already in progress"
.equalsIgnoreCase(e.getMessage()));
}
}