diff --git a/test/integration_test.py b/test/integration_test.py index c34ca797c..701fec89a 100644 --- a/test/integration_test.py +++ b/test/integration_test.py @@ -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)