From 304e6db4a5338d6dc384df1e3c9a5057a1dfd2f4 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Tue, 21 Feb 2017 17:14:53 -0800 Subject: [PATCH] Fix path in test --- test/onionshare_strings_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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