Skip to content

Commit

Permalink
style(PHP): satisfy code style linter
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
  • Loading branch information
blizzz committed Oct 15, 2024
1 parent 8ecd70d commit 9b5a3b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/features/bootstrap/FeatureContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -2508,7 +2508,7 @@ public function userDeletesRow(string $user, string $rowAlias): void {
$row = $this->collectionManager->getByAlias('row', $rowAlias);

if ($this->activeNode['type'] === 'view') {
$endpoint = sprintf('/apps/tables/api/1/views/%s/rows/%s',$this->activeNode['id'], $row['id']);
$endpoint = sprintf('/apps/tables/api/1/views/%s/rows/%s', $this->activeNode['id'], $row['id']);
} else {
$endpoint = sprintf('/apps/tables/api/1/rows/%s', $row['id']);
}
Expand Down

0 comments on commit 9b5a3b3

Please sign in to comment.