mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
Merge pull request #1720 from lukpueh/add-missing-test-type-hint
test: add missing return type hint in test method
This commit is contained in:
commit
03cf3339ef
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ def test_basic_repo(self) -> None:
|
|||
],
|
||||
)
|
||||
|
||||
def test_hashed_bin_delegation(self):
|
||||
def test_hashed_bin_delegation(self) -> None:
|
||||
"""Run 'hashed_bin_delegation.py' and assert creation of metadata files."""
|
||||
self._run_script_and_assert_files(
|
||||
"hashed_bin_delegation.py",
|
||||
|
|
|
|||
Loading…
Reference in a new issue