summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2016-07-04 12:41:25 +0200
committerantirez <antirez@gmail.com>2016-07-04 12:41:35 +0200
commita0dd0140f3771b9651a7eeca2f723239a9d44d0d (patch)
treeaeb1e8b3a6b3412518d3f00f0b25df61655d7650
parentb99ad1bd808fcfa5f57301a65c875d8c16d7cf71 (diff)
downloadredis-a0dd0140f3771b9651a7eeca2f723239a9d44d0d.tar.gz
Fix test for new RDB checksum failure message.
-rw-r--r--tests/integration/rdb.tcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/rdb.tcl b/tests/integration/rdb.tcl
index f2de3504d..2ed47cc58 100644
--- a/tests/integration/rdb.tcl
+++ b/tests/integration/rdb.tcl
@@ -89,7 +89,7 @@ close $fd
start_server_and_kill_it [list "dir" $server_path] {
test {Server should not start if RDB is corrupted} {
wait_for_condition 50 100 {
- [string match {*RDB checksum*} \
+ [string match {*CRC error*} \
[exec tail -n10 < [dict get $srv stdout]]]
} else {
fail "Server started even if RDB was corrupted!"