summaryrefslogtreecommitdiff
path: root/test/units/cli/test_galaxy.py
diff options
context:
space:
mode:
authorAbhijeet Kasurde <akasurde@redhat.com>2019-08-02 03:18:34 +0530
committerJordan Borean <jborean93@gmail.com>2019-08-02 07:48:34 +1000
commit056aac1e3012d0e65991b73f2478b844b7cbdfc8 (patch)
treee7070b7e35b138af8e9d2ae61f7f253fedfed769 /test/units/cli/test_galaxy.py
parentbb1256ca9aa4c22225dbeef0ef23a20fa9388b2f (diff)
downloadansible-056aac1e3012d0e65991b73f2478b844b7cbdfc8.tar.gz
Minor fixes in galaxy command for collection (#59846)
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
Diffstat (limited to 'test/units/cli/test_galaxy.py')
-rw-r--r--test/units/cli/test_galaxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/units/cli/test_galaxy.py b/test/units/cli/test_galaxy.py
index c63dc3e21f..e9ba9b8ee8 100644
--- a/test/units/cli/test_galaxy.py
+++ b/test/units/cli/test_galaxy.py
@@ -494,7 +494,7 @@ def test_collection_default(collection_skeleton):
assert metadata['authors'] == ['your name <example@domain.com>']
assert metadata['readme'] == 'README.md'
assert metadata['version'] == '1.0.0'
- assert metadata['description'] == 'your description'
+ assert metadata['description'] == 'your collection description'
assert metadata['license'] == ['GPL-2.0-or-later']
assert metadata['tags'] == []
assert metadata['dependencies'] == {}
@@ -637,7 +637,7 @@ def test_collection_build(collection_artifact):
assert coll_info['authors'] == ['your name <example@domain.com>']
assert coll_info['readme'] == 'README.md'
assert coll_info['tags'] == []
- assert coll_info['description'] == 'your description'
+ assert coll_info['description'] == 'your collection description'
assert coll_info['license'] == ['GPL-2.0-or-later']
assert coll_info['license_file'] is None
assert coll_info['dependencies'] == {}