Skip to content

Commit dd6bf47

Browse files
Merge pull request #9 from richan-fongdasen/analysis-Q35glZ
Apply fixes from StyleCI [ci skip] [skip ci]
2 parents 54a00fc + 3f65b95 commit dd6bf47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Feature/PubSubEventHandlingTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class PubSubEventHandlingTest extends TestCase
1212
#[Test]
1313
public function it_will_return_403_on_unauthorized_pubsub_request()
1414
{
15-
$data = json_decode(file_get_contents(dirname(__DIR__, 2) . '/dummies/message.json'), true);
15+
$data = json_decode(file_get_contents(dirname(__DIR__, 2).'/dummies/message.json'), true);
1616

1717
$this->postJson('/gcr-worker/pub-sub/event-handler', $data)
1818
->assertStatus(403);
@@ -25,7 +25,7 @@ public function it_can_handle_pubsub_invocation_as_expected()
2525

2626
config(['gcr-worker.allow_event_invocation' => true]);
2727

28-
$data = json_decode(file_get_contents(dirname(__DIR__, 2) . '/dummies/message.json'), true);
28+
$data = json_decode(file_get_contents(dirname(__DIR__, 2).'/dummies/message.json'), true);
2929

3030
self::assertNull(Cache::get('dummy-job-status'));
3131

0 commit comments

Comments
 (0)