Skip to content

Commit c909185

Browse files
author
e1732a364fed
committed
minor fix
1 parent 46e66bd commit c909185

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

crates/ruci-cmd/src/lib.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,9 @@ fn deserialize_config() {
297297
Ok(args) => args,
298298
Err(e) => panic!("{}", e),
299299
};
300-
println!(
301-
"file_server_tar_zip_data_source_base64 is {:?}",
302-
args.file_server_tar_zip_data_source_base64
303-
)
300+
301+
#[cfg(feature = "file_server")]
302+
assert_eq!(args.file_server_tar_zip_data_source_base64.unwrap(), "sss")
304303
}
305304

306305
#[cfg(target_os = "android")]

0 commit comments

Comments
 (0)