Skip to content

Commit

Permalink
Fix containers_top
Browse files Browse the repository at this point in the history
  • Loading branch information
not-jan committed Mar 29, 2024
1 parent 8799cff commit aaa642f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/container_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ async fn container_top() {
let top_result = container.top(None).await;
assert!(top_result.is_ok());
assert!(
top_result.unwrap().processes.unwrap_or_default()[0][0].contains(&DEFAULT_CMD.to_string())
top_result.unwrap().processes.unwrap_or_default()[0].contains(&DEFAULT_CMD.to_string())
);

cleanup_container(&docker, container_name).await;
Expand Down

0 comments on commit aaa642f

Please sign in to comment.