Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dyc3 committed Oct 13, 2023
1 parent 7551fef commit cb974aa
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions crates/harness-tests/src/routing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,7 @@ async fn route_ws_to_correct_monolith_race(ctx: &mut TestRunner) {

for i in 0..20 {
let room_name = format!("foo{}", i);
m.send(MsgM2B::Loaded {
name: room_name.clone().into(),
metadata: RoomMetadata::default(),
})
.await;
m.load_room(room_name.clone()).await;

let mut client = Client::new(ctx).unwrap();
client.join(room_name).await;
Expand Down

0 comments on commit cb974aa

Please sign in to comment.