Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sashacmc committed Feb 9, 2024
1 parent 560258d commit 84a9769
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions zenoh/src/net/tests/tables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ fn base_test() {
WhatAmI::Client,
Some(Arc::new(HLC::default())),
&config,
);
)
.unwrap();
let tables = router.tables.clone();

let primitives = Arc::new(DummyPrimitives {});
Expand Down Expand Up @@ -133,7 +134,8 @@ fn match_test() {
WhatAmI::Client,
Some(Arc::new(HLC::default())),
&config,
);
)
.unwrap();
let tables = router.tables.clone();

let primitives = Arc::new(DummyPrimitives {});
Expand Down Expand Up @@ -172,7 +174,8 @@ fn clean_test() {
WhatAmI::Client,
Some(Arc::new(HLC::default())),
&config,
);
)
.unwrap();
let tables = router.tables.clone();

let primitives = Arc::new(DummyPrimitives {});
Expand Down Expand Up @@ -478,7 +481,8 @@ fn client_test() {
WhatAmI::Client,
Some(Arc::new(HLC::default())),
&config,
);
)
.unwrap();
let tables = router.tables.clone();

let sub_info = SubscriberInfo {
Expand Down

0 comments on commit 84a9769

Please sign in to comment.