Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardocustodio committed Oct 7, 2024
1 parent 9df7065 commit 40388c7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/Feature/GraphQL/Mutations/AcknowledgeEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ protected function generateEvents(?int $numberOfEvents = 5): void
'event' => [
'MultiTokens' => [
'CollectionCreated' => [
'collection_id' => $collection->id,
'owner' => $collection->owner->address,
'T::CollectionId' => $collection->id,
'T::AccountId' => $collection->owner->address,
],
],
],
Expand Down
8 changes: 4 additions & 4 deletions tests/Feature/GraphQL/Queries/GetPendingEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ protected function setUp(): void
'event' => [
'MultiTokens' => [
'CollectionCreated' => [
'collection_id' => $this->collections[0]->id,
'owner' => $this->collections[0]->owner->address,
'T::CollectionId' => $this->collections[0]->id,
'T::AccountId' => $this->collections[0]->owner->address,
],
],
],
Expand All @@ -47,8 +47,8 @@ protected function setUp(): void
'event' => [
'MultiTokens' => [
'CollectionCreated' => [
'collection_id' => $this->collections[1]->id,
'owner' => $this->collections[1]->owner->address,
'T::CollectionId' => $this->collections[1]->id,
'T::AccountId' => $this->collections[1]->owner->address,
],
],
],
Expand Down

0 comments on commit 40388c7

Please sign in to comment.