From 73e4e1769cd675b62455738a113c15e66951b91f Mon Sep 17 00:00:00 2001 From: Joakim Hamren Date: Fri, 10 May 2024 22:29:51 +0200 Subject: [PATCH] use the option --- integration/stream_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/integration/stream_test.go b/integration/stream_test.go index e8a2a63..6e817a3 100644 --- a/integration/stream_test.go +++ b/integration/stream_test.go @@ -27,6 +27,7 @@ func TestStream(t *testing.T) { ) c.Do("XADD", "reallynosuchkey", + "NOMKSTREAM", "*", "name", "Earth", ) @@ -132,7 +133,7 @@ func TestStream(t *testing.T) { c.Do("EXEC") c.Do("MULTI") - c.Do("XADD", "reallynosuchkey", "MAXLEN", "four", "*", "name", "Mercury") + c.Do("XADD", "reallynosuchkey", "NOMKSTREAM", "MAXLEN", "four", "*", "name", "Mercury") c.Do("EXEC") }) })