Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed May 5, 2024
1 parent 9ac1588 commit 0bc84e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/RecordedEndpointPageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@

expect($propertyKeys)->toBeInstanceOf(\Illuminate\Support\Collection::class);
expect($propertyKeys)->toHaveCount(16);

// dd($propertyKeys);

foreach ($propertyKeys as $propertyKey) {
$id = $databaseStructure->getProperty($propertyKey)->getId();
$property = \Notion::page('f1884dca3885460e93f52bf4da7cce8e')->property($id);

match($propertyKey){
match ($propertyKey) {
'Rollup' => dd($property->asCollection()) && expect($property->asCollection()->first())->toBeInstanceOf(Rollup::class),
// default => throw new \Exception('Unknown property key')
default => null
Expand Down

0 comments on commit 0bc84e6

Please sign in to comment.