Skip to content

Commit

Permalink
test: add missing return type hint in test method
Browse files Browse the repository at this point in the history
Following parallel merges of theupdateframework#1700 (added new test method),
and theupdateframework#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>
  • Loading branch information
lukpueh committed Dec 10, 2021
1 parent 8209189 commit d8b23f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit d8b23f1

Please sign in to comment.