Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dot/utils/utils.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def get_configured_tests_row(
test_params_clause = ""
if test_parameters != "":
test_params_clause = (
f" AND regexp_replace(LOWER(CAST(test_parameters AS VARCHAR)), '\W+', '', 'g') = "
f" AND regexp_replace(LOWER(CAST(REPLACE(test_parameters::text, '\\r', '') AS VARCHAR)), '\\W+', '', 'g') = "
f"'{prefix}{test_parameters.lower()}';"
)

Expand Down
Loading