Skip to content

Commit

Permalink
[LLM]
Browse files Browse the repository at this point in the history
  • Loading branch information
pakrym-stripe committed Jan 16, 2024
1 parent 2c31d2f commit 6a14755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Stripe/WebhookTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function testValidJsonAndHeader()
$sigHeader = $this->generateHeader();
$event = Webhook::constructEvent(self::EVENT_PAYLOAD, $sigHeader, self::SECRET);
static::assertSame('evt_test_webhook', $event->id);
static::assertInstanceOf(\Stripe\Terminal\Reader::class, $event->data->object);
static::assertInstanceOf(\Stripe\Terminal\Reader::class, $event->data->__get('object'));
}

public function testInvalidJson()
Expand Down

0 comments on commit 6a14755

Please sign in to comment.