summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/unit/tracking.tcl5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/tracking.tcl b/tests/unit/tracking.tcl
index 0332fa726..839b894ea 100644
--- a/tests/unit/tracking.tcl
+++ b/tests/unit/tracking.tcl
@@ -16,9 +16,10 @@ start_server {tags {"tracking"}} {
test {The other connection is able to get invalidations} {
r SET a 1
+ r SET b 1
r GET a
- r INCR a
- r INCR b ; # This key should not be notified, since it wasn't fetched.
+ r INCR b ; # This key should not be notified, since it wasn't fetched.
+ r INCR a
set keys [lindex [$rd1 read] 2]
assert {[llength $keys] == 1}
assert {[lindex $keys 0] eq {a}}