mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-05-05 13:11:49 +02:00
FIXUP: return type for mypy
This commit is contained in:
parent
2a29cf7c27
commit
6c8a75732e
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ def test_get_runtime_name_non_linux(mocker: MockerFixture, tmp_path: Path) -> No
|
||||||
assert Runtime().name == "docker"
|
assert Runtime().name == "docker"
|
||||||
|
|
||||||
|
|
||||||
def test_get_unsupported_runtime_name(mocker: MockerFixture, tmp_path: Path):
|
def test_get_unsupported_runtime_name(mocker: MockerFixture, tmp_path: Path) -> None:
|
||||||
mocker.patch("dangerzone.settings.get_config_dir", return_value=tmp_path)
|
mocker.patch("dangerzone.settings.get_config_dir", return_value=tmp_path)
|
||||||
settings = Settings()
|
settings = Settings()
|
||||||
settings.set(
|
settings.set(
|
||||||
|
|
Loading…
Reference in a new issue