Skip to content

Commit

Permalink
fixup! Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rina23q committed Aug 8, 2023
1 parent 3699fb8 commit 6f13c4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/extensions/c8y_mapper_ext/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1433,7 +1433,7 @@ async fn handle_log_upload_executing_and_failed_cmd_for_child_device() {
#[cfg(feature = "log_upload")]
#[tokio::test]
async fn handle_log_upload_successful_cmd_for_main_device() {
let ttd = &TempTedgeDir::new();
let ttd = TempTedgeDir::new();
let (mqtt, http, _fs, _timer) = spawn_c8y_mapper_actor(&ttd, true).await;
spawn_dummy_c8y_http_proxy(http);

Expand Down Expand Up @@ -1475,7 +1475,7 @@ async fn handle_log_upload_successful_cmd_for_main_device() {
#[cfg(feature = "log_upload")]
#[tokio::test]
async fn handle_log_upload_successful_cmd_for_child_device() {
let ttd = &TempTedgeDir::new();
let ttd = TempTedgeDir::new();
let (mqtt, http, _fs, _timer) = spawn_c8y_mapper_actor(&ttd, true).await;
spawn_dummy_c8y_http_proxy(http);

Expand Down

0 comments on commit 6f13c4e

Please sign in to comment.