Skip to content

Commit e78b2c0

Browse files
authored
Add integration test via localstack (#941)
1 parent 4032bce commit e78b2c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Unit/AsyncAwsSqsQueueTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ public function testPush()
7979

8080
// verify that body is serialized.
8181
$body = json_decode($input['MessageBody'], true);
82-
$this->assertArrayHasKey('displayName', $body);
83-
$this->assertArrayHasKey('job', $body);
84-
$this->assertArrayHasKey('data', $body);
82+
self::assertArrayHasKey('displayName', $body);
83+
self::assertArrayHasKey('job', $body);
84+
self::assertArrayHasKey('data', $body);
8585

8686
if (CreateUser::class !== $body['displayName']) {
8787
return false;

0 commit comments

Comments
 (0)