From 85eba9d86084f083b70a808e2c5a4fc28427ab17 Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Fri, 20 Sep 2019 06:11:28 +1000 Subject: [PATCH] Fix test_galaxy failing test --- test/units/cli/test_galaxy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/units/cli/test_galaxy.py b/test/units/cli/test_galaxy.py index 95fa45cfd7f..4c754891840 100644 --- a/test/units/cli/test_galaxy.py +++ b/test/units/cli/test_galaxy.py @@ -712,7 +712,8 @@ def test_collection_build(collection_artifact): if file_entry['name'] == 'plugins/README.md': assert file_entry['ftype'] == 'file' assert file_entry['chksum_type'] == 'sha256' - assert file_entry['chksum_sha256'] == '5be7ec7b71096d56e1cc48311b6a2266b77b5fdb9d1985b5bc625787b1e857c5' + # Can't test the actual checksum as the html link changes based on the version. + assert file_entry['chksum_sha256'] is not None elif file_entry['name'] == 'README.md': assert file_entry['ftype'] == 'file' assert file_entry['chksum_type'] == 'sha256'