mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
test: add missing return type hint in test method
Following parallel merges of #1700 (added new test method), and #1710 (started running mypy on tests), ci/cd fails in the develop branch. This is fixed in this patch. Signed-off-by: Lukas Puehringer <lukas.puehringer@nyu.edu>
This commit is contained in:
parent
8209189a44
commit
d8b23f1d55
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