diff --git a/tests/Feature/GraphQL/Mutations/AcknowledgeEventsTest.php b/tests/Feature/GraphQL/Mutations/AcknowledgeEventsTest.php index 1903ca17..4b079e58 100644 --- a/tests/Feature/GraphQL/Mutations/AcknowledgeEventsTest.php +++ b/tests/Feature/GraphQL/Mutations/AcknowledgeEventsTest.php @@ -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, ], ], ], diff --git a/tests/Feature/GraphQL/Queries/GetPendingEventsTest.php b/tests/Feature/GraphQL/Queries/GetPendingEventsTest.php index 8a686a9f..df31fcab 100644 --- a/tests/Feature/GraphQL/Queries/GetPendingEventsTest.php +++ b/tests/Feature/GraphQL/Queries/GetPendingEventsTest.php @@ -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, ], ], ], @@ -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, ], ], ],