Skip to content

Commit

Permalink
Fix: Transient IT failure due to AssertionError in GitLab dev (#5251,…
Browse files Browse the repository at this point in the history
… PR #5261)
  • Loading branch information
achave11-ucsc committed Jun 3, 2023
2 parents 6b83f47 + 2f2144f commit d7404b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ def __check_manifest(self,
log.info(f'Manifest contains {len(rows)} rows.')
self.assertGreater(len(rows), 0)
self.assertIn(uuid_field_name, reader.fieldnames)
bundle_uuids = rows[0][uuid_field_name].split(ManifestGenerator.column_joiner)
bundle_uuids = rows[0][uuid_field_name].split(ManifestGenerator.padded_joiner)
self.assertGreater(len(bundle_uuids), 0)
for bundle_uuid in bundle_uuids:
self.assertEqual(bundle_uuid, str(uuid.UUID(bundle_uuid)))
Expand Down Expand Up @@ -1239,7 +1239,7 @@ def assert_manifest(expected_bundles):
))
all_found_bundles = set()
for row in manifest_rows:
row_bundles = set(row['bundle_uuid'].split(ManifestGenerator.column_joiner))
row_bundles = set(row['bundle_uuid'].split(ManifestGenerator.padded_joiner))
# It's possible for one file to be present in multiple
# bundles (e.g. due to stitching), so each row may include
# additional bundles besides those included in the filters.
Expand Down

0 comments on commit d7404b1

Please sign in to comment.