diff options
author | Matt Martz <matt@sivel.net> | 2023-06-07 16:09:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-07 16:09:01 +0200 |
commit | 92d5ffda82a84a559e7a0d6f8352a2071fd2d3aa (patch) | |
tree | 1bc374adff32ce90964da4ab51e47f61b9e8085b /test/units/galaxy/test_collection.py | |
parent | Update other_tools_and_programs.rst (#80895) (diff) | |
download | ansible-92d5ffda82a84a559e7a0d6f8352a2071fd2d3aa.tar.xz ansible-92d5ffda82a84a559e7a0d6f8352a2071fd2d3aa.zip |
Update galaxy_ng container for tests (#80721)
Diffstat (limited to 'test/units/galaxy/test_collection.py')
-rw-r--r-- | test/units/galaxy/test_collection.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/units/galaxy/test_collection.py b/test/units/galaxy/test_collection.py index 6e8d50000a..54b54ada56 100644 --- a/test/units/galaxy/test_collection.py +++ b/test/units/galaxy/test_collection.py @@ -223,23 +223,19 @@ def test_cli_options(required_signature_count, valid, monkeypatch): { 'url': 'https://galaxy.ansible.com', 'validate_certs': 'False', - 'v3': 'False', }, # Expected server attributes { 'validate_certs': False, - '_available_api_versions': {}, }, ), ( { 'url': 'https://galaxy.ansible.com', 'validate_certs': 'True', - 'v3': 'True', }, { 'validate_certs': True, - '_available_api_versions': {'v3': '/v3'}, }, ), ], @@ -257,7 +253,6 @@ def test_bool_type_server_config_options(config, server, monkeypatch): "server_list=server1\n", "[galaxy_server.server1]", "url=%s" % config['url'], - "v3=%s" % config['v3'], "validate_certs=%s\n" % config['validate_certs'], ] @@ -277,7 +272,6 @@ def test_bool_type_server_config_options(config, server, monkeypatch): assert galaxy_cli.api_servers[0].name == 'server1' assert galaxy_cli.api_servers[0].validate_certs == server['validate_certs'] - assert galaxy_cli.api_servers[0]._available_api_versions == server['_available_api_versions'] @pytest.mark.parametrize('global_ignore_certs', [True, False]) |