summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2018-02-24 19:17:18 -0800
committerMicah Lee <micah@micahflee.com>2018-02-24 19:17:18 -0800
commit471ccef9d3f3c60f3e590385dce3f6bf7921ca98 (patch)
tree3baf8cb643f2faa86f0f5f425850b5d22cceddbc
parent3797e9e2039bbc0109222cd94e32557938ca8dad (diff)
downloadonionshare-471ccef9d3f3c60f3e590385dce3f6bf7921ca98.tar.gz
onionshare-471ccef9d3f3c60f3e590385dce3f6bf7921ca98.zip
Remove test_frozen_windows test because it is verify difficult to test for on a non-Windows platform
-rw-r--r--test/test_onionshare_common.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/test_onionshare_common.py b/test/test_onionshare_common.py
index f574ad7f..cb864313 100644
--- a/test/test_onionshare_common.py
+++ b/test/test_onionshare_common.py
@@ -193,12 +193,6 @@ class TestGetResourcePath:
common.get_resource_path(os.path.join(prefix, 'test_filename')) ==
os.path.join(prefix, 'test_filename'))
- def test_frozen_windows(self, platform_windows, sys_frozen):
- prefix = os.path.join(os.path.dirname(sys.executable), 'share')
- assert (
- common.get_resource_path(os.path.join(prefix, 'test_filename')) ==
- os.path.join(prefix, 'test_filename'))
-
class TestGetTorPaths:
# @pytest.mark.skipif(sys.platform != 'Darwin', reason='requires MacOS') ?