Skip to content

Commit

Permalink
chore: Fix some clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
andreespirela committed May 15, 2024
1 parent e176ab7 commit f9bb0c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion crates/base/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use async_tungstenite::WebSocketStream;
use base::{
integration_test, integration_test_listen_fut, integration_test_with_server_flag,
rt_worker::worker_ctx::{create_user_worker_pool, create_worker, TerminationToken},
server::{ServerEvent, ServerFlags, ServerHealth, Tls},
server::{ServerEvent, ServerHealth, Tls},
DecoratorType,
};
use deno_core::serde_json;
Expand Down Expand Up @@ -349,6 +349,7 @@ async fn test_main_worker_boot_error() {
vec![],
None,
None,
None
)
.await
.unwrap();
Expand Down
2 changes: 1 addition & 1 deletion crates/sb_os/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub struct MemInfo {
#[op2]
#[serde]
fn op_system_memory_info() -> Option<MemInfo> {
let mut mem_info = MemInfo {
let mem_info = MemInfo {
total: 0,
free: 0,
available: 0,
Expand Down

0 comments on commit f9bb0c4

Please sign in to comment.