Skip to content

Commit

Permalink
fix(tests): resolve dependency-on-unit-never-type-fallback issue
Browse files Browse the repository at this point in the history
Signed-off-by: Jiaxiao (mossaka) Zhou <[email protected]>
  • Loading branch information
Mossaka committed Dec 16, 2024
1 parent e7ae5cc commit 1564cb0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/src/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ mod test {
.context("connecting to redis")?;
let mut con = client.get_multiplexed_async_connection().await?;

con.publish("testchannel", "some-payload").await?;
con.publish::<_, _, ()>("testchannel", "some-payload")
.await?;

let one_sec = time::Duration::from_secs(1);
thread::sleep(one_sec);
Expand Down

0 comments on commit 1564cb0

Please sign in to comment.