From 53da8e0775c0aeea1cb2b2b64c426ba907064e7b Mon Sep 17 00:00:00 2001 From: Nikhil Jain Date: Thu, 11 Mar 2021 19:50:11 +0530 Subject: [PATCH] removing some invalid chars --- awx_collection/test/awx/test_user.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/awx_collection/test/awx/test_user.py b/awx_collection/test/awx/test_user.py index 34adfaa6e9..a530e63d90 100644 --- a/awx_collection/test/awx/test_user.py +++ b/awx_collection/test/awx/test_user.py @@ -61,7 +61,7 @@ def test_update_password_on_create(run_module, admin_user, mock_auth_stuff): @pytest.mark.django_db def test_update_user(run_module, admin_user, mock_auth_stuff): -    result = run_module('tower_user', dict( + result = run_module('tower_user', dict(         username='Bob',         password='pass4word',         is_system_auditor=True @@ -69,9 +69,8 @@ def test_update_user(run_module, admin_user, mock_auth_stuff):     assert not result.get('failed', False), result.get('msg', result)     assert result.get('changed'), result -    update_result = run_module('tower_user', dict( + update_result = run_module('tower_user', dict(         username='Bob', -        password='pass4word',         is_system_auditor=False     ), admin_user)