From 1469ac605881ad8aa0e6ada2f5a3614a9be628cd Mon Sep 17 00:00:00 2001
From: Rafael Guterres Jeffman <rjeffman@redhat.com>
Date: Tue, 17 Jan 2023 14:00:28 -0300
Subject: [PATCH] dnszone tests: Fix typo on task names.

---
 tests/dnszone/test_dnszone.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/dnszone/test_dnszone.yml b/tests/dnszone/test_dnszone.yml
index ef0f2d23..0491e263 100644
--- a/tests/dnszone/test_dnszone.yml
+++ b/tests/dnszone/test_dnszone.yml
@@ -11,7 +11,7 @@
     ansible.builtin.include_tasks: env_setup.yml
 
   # Tests
-  - name: Check if zone is present, when in shouldn't be.
+  - name: Check if zone is present, when it shouldn't be.
     ipadnszone:
       ipaadmin_password: SomeADMINpassword
       ipaapi_context: "{{ ipa_context | default(omit) }}"
@@ -21,7 +21,7 @@
     register: result
     failed_when: not result.changed or result.failed
 
-  - name: Check if zone is present again, when in shouldn't be.
+  - name: Check if zone is present again, when it shouldn't be.
     ipadnszone:
       ipaadmin_password: SomeADMINpassword
       ipaapi_context: "{{ ipa_context | default(omit) }}"
@@ -40,7 +40,7 @@
     register: result
     failed_when: not result.changed or result.failed
 
-  - name: Check if zone is present, when in should be.
+  - name: Check if zone is present, when it should be.
     ipadnszone:
       ipaadmin_password: SomeADMINpassword
       ipaapi_context: "{{ ipa_context | default(omit) }}"
-- 
GitLab