Skip to content

Commit

Permalink
Fix Mirror tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abnegate committed Aug 19, 2024
1 parent 9fff328 commit fd1bc7f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Database/Mirror.php
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,8 @@ public function updateAttribute(string $collection, string $id, string $type = n
$array,
$format,
$formatOptions,
$filters
$filters,
$newKey,
);

if ($this->destination === null) {
Expand Down Expand Up @@ -396,7 +397,8 @@ public function updateAttribute(string $collection, string $id, string $type = n
$document->getAttribute('array'),
$document->getAttribute('format'),
$document->getAttribute('formatOptions'),
$document->getAttribute('filters')
$document->getAttribute('filters'),
$newKey,
);
} catch (\Throwable $err) {
$this->logError('updateAttribute', $err);
Expand Down

0 comments on commit fd1bc7f

Please sign in to comment.