Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
codingkarthik committed Sep 16, 2024
1 parent bad18f9 commit fe74c75
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/ndc-sqlserver/tests/common/fresh_deployments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,9 @@ impl FreshDeployment {
.expect("Error initializing the newly created DB");

for file_path in data_setup_file_paths.into_iter() {
let query = fs::read_to_string(file_path.clone()).unwrap_or_else(|_| panic!("Failed to read file from {}",
file_path.to_str().unwrap()));
let query = fs::read_to_string(file_path.clone()).unwrap_or_else(|_| {
panic!("Failed to read file from {}", file_path.to_str().unwrap())
});

new_db_connection
.simple_query(query)
Expand Down

0 comments on commit fe74c75

Please sign in to comment.