Skip to content

Commit 12952ab

Browse files
committed
remove bin
1 parent 9d8d6f3 commit 12952ab

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

arbiter-core/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ edition = "2021"
44
name = "arbiter-core"
55
version = "0.1.0"
66

7-
[[bin]]
8-
name = "multi-agent"
9-
path = "main.rs"
10-
117
[dependencies]
128
# Error and logging
139
postage = "0.5.0"

arbiter-core/tests/multi_agent.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ async fn test_multi_agent() {
7575
pong.set_name("pong");
7676
pong.address();
7777

78-
let mut pong = pong.process();
79-
pong.start().await;
80-
8178
let mut ping = ping.process();
8279
ping.start().await;
8380

81+
let mut pong = pong.process();
82+
pong.start().await;
83+
8484
let agent = ping.join().await;
8585
assert_eq!(agent.inner().count, 10);
8686
}

0 commit comments

Comments
 (0)