diff options
author | Tim Rupp <caphrim007@gmail.com> | 2018-06-16 00:41:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-16 00:41:57 +0200 |
commit | 16466f31710e03b212cf1bfdbe48755c6e61fdb6 (patch) | |
tree | 3f3bc08b9b4f48224a1b785fd8e5990f905841a3 /test | |
parent | Temporarily revert c119d54 (diff) | |
download | ansible-16466f31710e03b212cf1bfdbe48755c6e61fdb6.tar.xz ansible-16466f31710e03b212cf1bfdbe48755c6e61fdb6.zip |
Fixes usage of popen in bigip iapplx package (#41612)
This functionality is superceeded by the run_command method in the
ansible module class.
Diffstat (limited to 'test')
-rw-r--r-- | test/units/modules/network/f5/test_bigip_iapplx_package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/units/modules/network/f5/test_bigip_iapplx_package.py b/test/units/modules/network/f5/test_bigip_iapplx_package.py index 05ed42a79b..181b5bde77 100644 --- a/test/units/modules/network/f5/test_bigip_iapplx_package.py +++ b/test/units/modules/network/f5/test_bigip_iapplx_package.py @@ -84,7 +84,7 @@ class TestManager(unittest.TestCase): set_module_args(dict( content='fixtures/MyApp-0.1.0-0001.noarch.rpm', state='present', - password='passsword', + password='password', server='localhost', user='admin' )) |