mirror of
https://github.com/onionshare/onionshare.git
synced 2025-05-03 15:05:11 -04:00
Fixes typos about Linux as platform name
It is `linux` not 'Linux' in sys.platform
This commit is contained in:
parent
3a07bbe161
commit
e4178cff49
3 changed files with 4 additions and 4 deletions
|
@ -123,7 +123,7 @@ class TestSettings:
|
|||
"~/Library/Application Support/OnionShare-testdata/onionshare.json"
|
||||
)
|
||||
|
||||
@pytest.mark.skipif(sys.platform != "Linux", reason="requires Linux")
|
||||
@pytest.mark.skipif(sys.platform != "linux", reason="requires Linux")
|
||||
def test_filename_linux(self, monkeypatch, platform_linux):
|
||||
obj = settings.Settings(common.Common())
|
||||
assert obj.filename == os.path.expanduser(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue