diff --git a/src/Test/Trait/CrudTestSelectors.php b/src/Test/Trait/CrudTestSelectors.php index 503343090f..6f3855e798 100644 --- a/src/Test/Trait/CrudTestSelectors.php +++ b/src/Test/Trait/CrudTestSelectors.php @@ -11,7 +11,7 @@ protected function getIndexEntityActionSelector(string $action, string|int $enti protected function getIndexEntityRowSelector(string|int $entityId): string { - return sprintf('tbody tr[data-id=%s]', (string) $entityId); + return sprintf('tbody tr[data-id="%s"]', (string) $entityId); } protected function getActionSelector(string $action): string