Skip to content

Commit 2ac8bdc

Browse files
committed
linting
Signed-off-by: NicholasTanz <[email protected]>
1 parent 6318760 commit 2ac8bdc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_updater_ng.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,9 @@ def test_persist_metadata_fails(
316316
def test_invalid_target_base_url(self) -> None:
317317
info = TargetFile(1, {"sha256": ""}, "targetpath")
318318
with self.assertRaises(exceptions.DownloadError):
319-
self.updater.download_target(info, target_base_url="http://invalid/")
319+
self.updater.download_target(
320+
info, target_base_url="http://invalid/"
321+
)
320322

321323
def test_non_existing_target_file(self) -> None:
322324
info = TargetFile(1, {"sha256": ""}, "/non_existing_file.txt")

0 commit comments

Comments
 (0)