Skip to content

Commit

Permalink
added specific ids to xautoclaim to help diagnosing a pb
Browse files Browse the repository at this point in the history
  • Loading branch information
mcatanzariti committed Apr 6, 2024
1 parent b107cdb commit 0df4699
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/tests/stream_commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ async fn xautoclaim() -> Result<()> {
let id1: String = client
.xadd(
"mystream",
"*",
"1-0",
("message", "apple"),
XAddOptions::default(),
)
Expand All @@ -640,7 +640,7 @@ async fn xautoclaim() -> Result<()> {
let id2: String = client
.xadd(
"mystream",
"*",
"2-0",
("message", "orange"),
XAddOptions::default(),
)
Expand All @@ -649,7 +649,7 @@ async fn xautoclaim() -> Result<()> {
let id3: String = client
.xadd(
"mystream",
"*",
"3-0",
("message", "strawberry"),
XAddOptions::default(),
)
Expand All @@ -658,7 +658,7 @@ async fn xautoclaim() -> Result<()> {
let id4: String = client
.xadd(
"mystream",
"*",
"4-0",
("message", "apricot"),
XAddOptions::default(),
)
Expand All @@ -667,7 +667,7 @@ async fn xautoclaim() -> Result<()> {
let id5: String = client
.xadd(
"mystream",
"*",
"5-0",
("message", "banana"),
XAddOptions::default(),
)
Expand Down

0 comments on commit 0df4699

Please sign in to comment.