Skip to content

Commit

Permalink
Add integration test via localstack (#941)
Browse files Browse the repository at this point in the history
  • Loading branch information
jderusse authored Jan 29, 2021
1 parent 4032bce commit e78b2c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Unit/AsyncAwsSqsQueueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ public function testPush()

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

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

0 comments on commit e78b2c0

Please sign in to comment.