From 0df46997c9442d65d2d09044bf00d60c60899df1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Catanzariti?= Date: Sat, 6 Apr 2024 19:57:13 +0200 Subject: [PATCH] added specific ids to `xautoclaim` to help diagnosing a pb --- src/tests/stream_commands.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/tests/stream_commands.rs b/src/tests/stream_commands.rs index b2a0e91..694bc22 100644 --- a/src/tests/stream_commands.rs +++ b/src/tests/stream_commands.rs @@ -631,7 +631,7 @@ async fn xautoclaim() -> Result<()> { let id1: String = client .xadd( "mystream", - "*", + "1-0", ("message", "apple"), XAddOptions::default(), ) @@ -640,7 +640,7 @@ async fn xautoclaim() -> Result<()> { let id2: String = client .xadd( "mystream", - "*", + "2-0", ("message", "orange"), XAddOptions::default(), ) @@ -649,7 +649,7 @@ async fn xautoclaim() -> Result<()> { let id3: String = client .xadd( "mystream", - "*", + "3-0", ("message", "strawberry"), XAddOptions::default(), ) @@ -658,7 +658,7 @@ async fn xautoclaim() -> Result<()> { let id4: String = client .xadd( "mystream", - "*", + "4-0", ("message", "apricot"), XAddOptions::default(), ) @@ -667,7 +667,7 @@ async fn xautoclaim() -> Result<()> { let id5: String = client .xadd( "mystream", - "*", + "5-0", ("message", "banana"), XAddOptions::default(), )