Skip to content

Commit b562263

Browse files
committed
Fix final formatting issue in REST plugin
- Fix println! statement formatting to single line as required by cargo fmt - All formatting checks now pass - CI/CD pipeline should now be completely green
1 parent 3dd68ee commit b562263

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

crates/plugins/src/rest.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -399,9 +399,7 @@ mod tests {
399399
match e {
400400
RuntimeError::Plugin(_) => {
401401
// This is expected if there's no network access
402-
println!(
403-
"Network request failed (expected in some environments): {e}"
404-
);
402+
println!("Network request failed (expected in some environments): {e}");
405403
}
406404
_ => panic!("Unexpected error type: {e}"),
407405
}

0 commit comments

Comments
 (0)