From b88d43a029b4298a164b109c38e647cef9ae3ff6 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Wed, 14 Feb 2024 12:38:56 +0900 Subject: [PATCH] uri: update use_netrc.yml (#82672) Changed successfull to successful --- test/integration/targets/uri/tasks/use_netrc.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integration/targets/uri/tasks/use_netrc.yml b/test/integration/targets/uri/tasks/use_netrc.yml index 521f8ebf37d..1559f364392 100644 --- a/test/integration/targets/uri/tasks/use_netrc.yml +++ b/test/integration/targets/uri/tasks/use_netrc.yml @@ -25,7 +25,7 @@ fail_msg: "Was expecting 'foo:bar' in base64, but received: {{ response_failed }}" success_msg: "Expected to fail because netrc is using Basic authentication by default" -- name: Test Bearer authorization is successfull with use_netrc=False +- name: Test Bearer authorization is successful with use_netrc=False uri: url: https://{{ httpbin_host }}/bearer use_netrc: false @@ -36,14 +36,14 @@ NETRC: "{{ remote_tmp_dir }}/netrc" register: response -- name: assert Test Bearer authorization is successfull with use_netrc=False +- name: assert Test Bearer authorization is successful with use_netrc=False assert: that: - response.status == 200 - response.json.token == 'foobar' - response.url == 'https://{{ httpbin_host }}/bearer' fail_msg: "Was expecting successful Bearer authentication, but received: {{ response }}" - success_msg: "Bearer authentication successfull when netrc is ignored." + success_msg: "Bearer authentication successful when netrc is ignored." - name: Clean up file: