From 936e01e5bb286d9a8701b2d71d8e90f5b7168475 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 19 Nov 2019 11:49:05 +0100 Subject: [PATCH] Fix stream test after addition of 0-0 ID test. --- tests/unit/type/stream.tcl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/type/stream.tcl b/tests/unit/type/stream.tcl index a4431c654..656bac5de 100644 --- a/tests/unit/type/stream.tcl +++ b/tests/unit/type/stream.tcl @@ -124,9 +124,9 @@ start_server { } test {XADD with ID 0-0} { - r DEL mystream - catch {r XADD mystream 0-0 k v} err - assert {[r EXISTS mystream] == 0} + r DEL otherstream + catch {r XADD otherstream 0-0 k v} err + assert {[r EXISTS otherstream] == 0} } test {XRANGE COUNT works as expected} {