Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sandreae committed Aug 4, 2023
1 parent 58ab021 commit 2b400ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aquadoggo/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl Configuration {

// Create folders when they don't exist yet
fs::create_dir_all(&base_path)?;
fs::create_dir(&base_path.join(BLOBS_DIR_NAME))?;
fs::create_dir(base_path.join(BLOBS_DIR_NAME))?;

Check warning on line 87 in aquadoggo/src/config.rs

View check run for this annotation

Codecov / codecov/patch

aquadoggo/src/config.rs#L87

Added line #L87 was not covered by tests

Ok(base_path)
}
Expand Down
3 changes: 1 addition & 2 deletions aquadoggo/src/http/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,7 @@ mod tests {
let schema_provider = SchemaProvider::default();
let graphql_schema_manager =
GraphQLSchemaManager::new(node.context.store.clone(), tx, schema_provider).await;
let context =
HttpServiceContext::new(graphql_schema_manager, BLOBS_DIR_NAME.into());
let context = HttpServiceContext::new(graphql_schema_manager, BLOBS_DIR_NAME.into());
let client = TestClient::new(build_server(context));

let response = client
Expand Down

0 comments on commit 2b400ef

Please sign in to comment.