Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-stoehr committed Oct 26, 2023
1 parent 9fe38c7 commit ef27570
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Tests/Functional/Repository/CollectionRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ public function canFindCollectionsBySettings(): void

$collectionsByLabel = $this->findCollectionsBySettings(
[
'index_name' => ['Geschichte', 'collection-with-single-document'],
'show_userdefined' => true
'index_name' => ['Geschichte', 'collection-with-single-document'],
'show_userdefined' => true
]
);
$this->assertCount(2, $collectionsByLabel);
Expand Down
10 changes: 6 additions & 4 deletions Tests/Functional/Repository/MetatdataRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,12 @@ public function canFindBySettings(): void
implode(', ', array_keys($metadataByLabel))
);

$metadataByLabel = $this->findBySettings([
'is_sortable' => true,
'is_listed' => true
]);
$metadataByLabel = $this->findBySettings(
[
'is_sortable' => true,
'is_listed' => true
]
);
$this->assertCount(2, $metadataByLabel);
$this->assertEquals(
'Autor, Titel',
Expand Down

0 comments on commit ef27570

Please sign in to comment.