Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
notV4l committed Jan 17, 2024
1 parent c0e1b99 commit 6f5abed
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crates/torii/graphql/src/tests/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,11 @@ pub async fn spinup_types_test() -> Result<SqlitePool> {
Manifest::load_from_remote(&provider, migration.world_address().unwrap()).await.unwrap();

// Execute `create` and insert 10 records into storage
let records_contract =
manifest.contracts.iter().find(|contract| contract.name.eq("types_test::contracts::records")).unwrap();
let records_contract = manifest
.contracts
.iter()
.find(|contract| contract.name.eq("types_test::contracts::records"))
.unwrap();
let InvokeTransactionResult { transaction_hash } = account
.execute(vec![Call {
calldata: vec![FieldElement::from_str("0xa").unwrap()],
Expand Down

0 comments on commit 6f5abed

Please sign in to comment.