From 26ce65d196ab743f76b6b279f339cdd57d686534 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Fri, 8 Dec 2023 13:05:39 +0100 Subject: [PATCH] tests: Remove needless quotes in asserts --- tests/tests_additional_packages.yml | 2 +- tests/tests_all_options.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests_additional_packages.yml b/tests/tests_additional_packages.yml index aa2ae39..9fa1da6 100644 --- a/tests/tests_additional_packages.yml +++ b/tests/tests_additional_packages.yml @@ -26,4 +26,4 @@ - name: Verify the packages were installed assert: that: - - "additional_package | trim in ansible_facts.packages" + - additional_package | trim in ansible_facts.packages diff --git a/tests/tests_all_options.yml b/tests/tests_all_options.yml index 4d8102c..98508c0 100644 --- a/tests/tests_all_options.yml +++ b/tests/tests_all_options.yml @@ -85,6 +85,6 @@ - name: Verify the options are in the file assert: that: - - "item ~ ' yes' in config.content | b64decode " + - item ~ ' yes' in config.content | b64decode loop: "{{ ssh_options.stdout_lines }}"