Skip to content

Commit 03cf333

Browse files
authored
Merge pull request #1720 from lukpueh/add-missing-test-type-hint
test: add missing return type hint in test method
2 parents 8209189 + d8b23f1 commit 03cf333

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def test_basic_repo(self) -> None:
8787
],
8888
)
8989

90-
def test_hashed_bin_delegation(self):
90+
def test_hashed_bin_delegation(self) -> None:
9191
"""Run 'hashed_bin_delegation.py' and assert creation of metadata files."""
9292
self._run_script_and_assert_files(
9393
"hashed_bin_delegation.py",

0 commit comments

Comments
 (0)