summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-03-25 11:56:08 +0100
committerantirez <antirez@gmail.com>2013-03-25 11:56:34 +0100
commit797d98e906f4ca8e994356279afa94bf87241137 (patch)
tree26ab21ac18a641a8bdc92b04a47201982fdcf2fd
parent09aa55a3343d72a35fe77279eb35c3be5bc92342 (diff)
downloadredis-797d98e906f4ca8e994356279afa94bf87241137.tar.gz
Test: obuf-limits test false positive removed.
Fixes #621.
-rw-r--r--tests/unit/obuf-limits.tcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/obuf-limits.tcl b/tests/unit/obuf-limits.tcl
index e965e892d..5d625cf45 100644
--- a/tests/unit/obuf-limits.tcl
+++ b/tests/unit/obuf-limits.tcl
@@ -15,7 +15,7 @@ start_server {tags {"obuf-limits"}} {
if {![regexp {omem=([0-9]+)} $c - omem]} break
if {$omem > 200000} break
}
- assert {$omem >= 99000 && $omem < 200000}
+ assert {$omem >= 90000 && $omem < 200000}
$rd1 close
}