We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4032bce commit e78b2c0Copy full SHA for e78b2c0
tests/Unit/AsyncAwsSqsQueueTest.php
@@ -79,9 +79,9 @@ public function testPush()
79
80
// verify that body is serialized.
81
$body = json_decode($input['MessageBody'], true);
82
- $this->assertArrayHasKey('displayName', $body);
83
- $this->assertArrayHasKey('job', $body);
84
- $this->assertArrayHasKey('data', $body);
+ self::assertArrayHasKey('displayName', $body);
+ self::assertArrayHasKey('job', $body);
+ self::assertArrayHasKey('data', $body);
85
86
if (CreateUser::class !== $body['displayName']) {
87
return false;
0 commit comments