Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Larkooo committed Dec 17, 2024
1 parent 06e557f commit 5dc0c8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/torii/grpc/src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ impl DojoWorld {
.collect::<Result<Vec<String>, Error>>()?
.join(", ")

Check warning on line 797 in crates/torii/grpc/src/server/mod.rs

View check run for this annotation

Codecov / codecov/patch

crates/torii/grpc/src/server/mod.rs#L790-L797

Added lines #L790 - L797 were not covered by tests
)),
None => return Err(QueryError::MissingParam("value_type".into()).into()),
None => Err(QueryError::MissingParam("value_type".into()).into()),

Check warning on line 799 in crates/torii/grpc/src/server/mod.rs

View check run for this annotation

Codecov / codecov/patch

crates/torii/grpc/src/server/mod.rs#L799

Added line #L799 was not covered by tests
}
}

Check warning on line 801 in crates/torii/grpc/src/server/mod.rs

View check run for this annotation

Codecov / codecov/patch

crates/torii/grpc/src/server/mod.rs#L801

Added line #L801 was not covered by tests

Expand Down Expand Up @@ -1408,7 +1408,7 @@ fn build_composite_clause(
.collect::<Result<Vec<String>, Error>>()?
.join(", ")

Check warning on line 1409 in crates/torii/grpc/src/server/mod.rs

View check run for this annotation

Codecov / codecov/patch

crates/torii/grpc/src/server/mod.rs#L1402-L1409

Added lines #L1402 - L1409 were not covered by tests
)),
None => return Err(QueryError::MissingParam("value_type".into()).into()),
None => Err(QueryError::MissingParam("value_type".into()).into()),

Check warning on line 1411 in crates/torii/grpc/src/server/mod.rs

View check run for this annotation

Codecov / codecov/patch

crates/torii/grpc/src/server/mod.rs#L1411

Added line #L1411 was not covered by tests
}
}
let value = prepare_comparison(&value, &mut bind_values)?;

Check warning on line 1414 in crates/torii/grpc/src/server/mod.rs

View check run for this annotation

Codecov / codecov/patch

crates/torii/grpc/src/server/mod.rs#L1413-L1414

Added lines #L1413 - L1414 were not covered by tests
Expand Down

0 comments on commit 5dc0c8c

Please sign in to comment.