Skip to content

Commit

Permalink
fixup! Add managed-access integration test for verbatim manifests (#6098
Browse files Browse the repository at this point in the history
)
  • Loading branch information
nadove-ucsc committed May 1, 2024
1 parent 6073a24 commit 24209d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1586,9 +1586,9 @@ def dump_verbatim_manifest(bundles: Iterable[str]) -> set[str]:
self.assertEqual(len(manifest_lines), len(manifest_content))
return manifest_content

for manifest_format in ManifestFormat.verbatim_jsonl, ManifestFormat.verbatim_pfb:
if manifest_format in metadata_plugin.manifest_formats:
with self.subTest(format=manifest_format):
for format_ in ManifestFormat.verbatim_jsonl, ManifestFormat.verbatim_pfb:
if format_ in metadata_plugin.manifest_formats:
with self.subTest(format=format_):
unauthorized = dump_verbatim_manifest(all_bundles)
with self._service_account_credentials:
authorized = dump_verbatim_manifest(all_bundles)
Expand Down

0 comments on commit 24209d0

Please sign in to comment.