Skip to content

Commit

Permalink
refactor: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoverson committed Aug 29, 2023
1 parent bd26f29 commit c9a6cf7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion crates/wick/wick-asset-reference/src/asset_reference.rs
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,10 @@ mod test {
}

#[rstest::rstest]
#[case("/integration-tests/testdata/files/assets/test.fake.wasm", Ok("files/assets/test.fake.wasm"))]
#[case(
"/integration-tests/testdata/files/assets/test.fake.wasm",
Ok("files/assets/test.fake.wasm")
)]
#[case(
"/integration-tests/../integration-tests/testdata/files/./assets/test.fake.wasm",
Ok("files/assets/test.fake.wasm")
Expand Down
2 changes: 1 addition & 1 deletion src/commands/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ fn write_line(mut buff: impl Write, op: &OperationSignature) -> std::fmt::Result

fn config(config: &[Field]) -> String {
if config.is_empty() {
return String::new();
String::new()
} else {
format!(
"with: {{ {} }}",
Expand Down

0 comments on commit c9a6cf7

Please sign in to comment.