Skip to content

Commit

Permalink
Added the missing config to make test compile
Browse files Browse the repository at this point in the history
Signed-off-by: Benedikt Zinn <[email protected]>
  • Loading branch information
BenediktZinn committed Jan 21, 2025
1 parent 43d3de8 commit 07b5933
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rust/client/tests/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// SPDX-License-Identifier: MIT

use client::Client;
use shared::config::{Configuration, GcConfig, SysSendmsgConfig, SysSigquitConfig, VfsWriteConfig};
use shared::config::{Configuration, GcConfig, SysFdTrackingConfig, SysSendmsgConfig, SysSigquitConfig, VfsWriteConfig};
use shared::ziofa::process::Cmd;

// client tests assume daemon is running!
Expand Down Expand Up @@ -56,7 +56,8 @@ async fn set_get_empty_config() {
// jni_references: Some(JniReferencesConfig { pids: vec![] }),
jni_references: None,
sys_sigquit: Some(SysSigquitConfig { pids: vec![] }),
gc: Some(GcConfig { })
gc: Some(GcConfig { }),
sys_fd_tracking: Some(SysFdTrackingConfig { pids: vec![] }),
};

client
Expand Down

0 comments on commit 07b5933

Please sign in to comment.