Skip to content

Commit 03ea93d

Browse files
authored
fix(ci): phoenix channel tests not running (firezone#3749)
Similar to firezone#3747
1 parent da242e0 commit 03ea93d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/_rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ jobs:
5050
# TODO: https://github.com/rust-lang/cargo/issues/5220
5151
include:
5252
- runs-on: ubuntu-20.04
53-
packages: -p firezone-relay -p firezone-linux-client -p firezone-gateway -p connlib-client-android -p snownet
53+
packages: --workspace
5454
- runs-on: ubuntu-22.04
55-
packages: -p firezone-relay -p firezone-linux-client -p firezone-gateway -p connlib-client-android -p snownet
55+
packages: --workspace
5656
- runs-on: macos-12
5757
packages: -p connlib-client-apple -p snownet
5858
- runs-on: macos-13

rust/phoenix-channel/src/heartbeat.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ mod tests {
7474

7575
#[tokio::test]
7676
async fn returns_heartbeat_after_interval() {
77-
let mut heartbeat = Heartbeat::new(Duration::from_millis(10));
77+
let mut heartbeat = Heartbeat::new(Duration::from_millis(30));
7878
let _ = poll_fn(|cx| heartbeat.poll(cx)).await; // Tick once at startup.
7979

8080
let start = Instant::now();

0 commit comments

Comments
 (0)