summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2017-02-21 17:14:53 -0800
committerMicah Lee <micah@micahflee.com>2017-02-21 17:14:53 -0800
commit304e6db4a5338d6dc384df1e3c9a5057a1dfd2f4 (patch)
tree3cba981740859cde9465f212b3f9a833ff4fa93b /test
parent05319f7344640291a0568217d39b25b0a56af71d (diff)
downloadonionshare-304e6db4a5338d6dc384df1e3c9a5057a1dfd2f4.tar.gz
onionshare-304e6db4a5338d6dc384df1e3c9a5057a1dfd2f4.zip
Fix path in test
Diffstat (limited to 'test')
-rw-r--r--test/onionshare_strings_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/onionshare_strings_test.py b/test/onionshare_strings_test.py
index 0a48e8ca..dc20a271 100644
--- a/test/onionshare_strings_test.py
+++ b/test/onionshare_strings_test.py
@@ -22,7 +22,7 @@ from onionshare import helpers, strings
# Stub get_resource_path so it finds the correct path while running tests
def get_resource_path(filename):
- resources_dir = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'resources')
+ resources_dir = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'share')
path = os.path.join(resources_dir, filename)
return path
helpers.get_resource_path = get_resource_path