Skip to content

Commit 904e36f

Browse files
committed
fix: remove trailing comma in panic macro (clippy nightly)
1 parent 3245115 commit 904e36f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/presentation/cli/controllers/destroy/tests/integration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async fn it_should_reject_invalid_environment_names() {
4545
DestroySubcommandError::InvalidEnvironmentName { .. } => {
4646
// Expected error type
4747
}
48-
other => panic!("Expected InvalidEnvironmentName for '{name}', got: {other:?}",),
48+
other => panic!("Expected InvalidEnvironmentName for '{name}', got: {other:?}"),
4949
}
5050
}
5151

0 commit comments

Comments
 (0)