Skip to content

Commit

Permalink
#313 Coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
j3nsch committed Sep 2, 2022
1 parent f426188 commit 4978289
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/Opus/DocumentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3855,13 +3855,13 @@ public function testFromArrayWithCollection()
$colRole->store();

$rootCol = $colRole->getRootCollection();
$colId = $rootCol->getId();
$colId = $rootCol->getId();

$data = [
'Type' => 'article',
'Type' => 'article',
'Collection' => [
['Id' => $colId]
]
['Id' => $colId],
],
];

$document = Document::fromArray($data);
Expand Down Expand Up @@ -3889,10 +3889,10 @@ public function testFromArrayWithLicence()
$licenceId = $licence->store();

$data = [
'Type' => 'article',
'Type' => 'article',
'Licence' => [
['Id' => $licenceId]
]
['Id' => $licenceId],
],
];

$document = Document::fromArray($data);
Expand Down

0 comments on commit 4978289

Please sign in to comment.