From 9e42f66a135b5260501b6f03d1e0243c6f3e7c72 Mon Sep 17 00:00:00 2001 From: Ilya Kuznetsov Date: Thu, 23 Jan 2025 17:35:24 +0100 Subject: [PATCH] Replace window slashes in output --- acceptance/bundle/variables/file-defaults/script | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acceptance/bundle/variables/file-defaults/script b/acceptance/bundle/variables/file-defaults/script index 8e6fd0d75..7dd0ccfbc 100644 --- a/acceptance/bundle/variables/file-defaults/script +++ b/acceptance/bundle/variables/file-defaults/script @@ -15,10 +15,10 @@ title "variable has value in config file" trace $CLI bundle validate -o json --target with_value | jq $cluster_expr title "file cannot be parsed" -trace errcode $CLI bundle validate -o json --target invalid_json | jq $cluster_expr +trace errcode $CLI bundle validate -o json --target invalid_json | jq $cluster_expr | sed 's/\\/\//g' title "file has wrong structure" -trace errcode $CLI bundle validate -o json --target wrong_file_structure | jq $cluster_expr +trace errcode $CLI bundle validate -o json --target wrong_file_structure | jq $cluster_expr | sed 's/\\/\//g' title "file has variable that is complex but default is string" trace errcode $CLI bundle validate -o json --target complex_to_string | jq $cluster_expr