From 21a6ef7ab1c92e5c037a880afb7a49572ddbcef7 Mon Sep 17 00:00:00 2001 From: moilanik Date: Mon, 22 Jun 2026 07:01:05 +0300 Subject: [PATCH] fix --- tests/features/step_definitions/gitops-update.steps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/features/step_definitions/gitops-update.steps.js b/tests/features/step_definitions/gitops-update.steps.js index 4a033ba..b0009f2 100644 --- a/tests/features/step_definitions/gitops-update.steps.js +++ b/tests/features/step_definitions/gitops-update.steps.js @@ -74,7 +74,7 @@ function requestCount() { } function gitCalls() { - const out = bash(`cat "${GIT_CALLS_FILE:-/dev/null}" 2>/dev/null || echo ""`).stdout; + const out = bash(`cat "${GIT_CALLS_FILE || '/dev/null'}" 2>/dev/null || echo ""`).stdout; return out.split('\n').filter(l => l.length > 0); }