Skip to content

Commit 5e506f4

Browse files
author
Ram Rachum
committed
-
1 parent 9c47d7e commit 5e506f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

run_tests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ def import_by_path(path, name=None):
8080

8181
package_names = ['garlicsim', 'garlicsim_lib', 'garlicsim_wx']
8282
if frozen:
83-
test_packages_paths = [os.path.join(our_path, 'lib/test_%s') % package_name
84-
for package_name in package_names]
83+
test_packages_paths = [os.path.join(our_path, 'lib', 'test_%s' %
84+
package_name) for package_name in package_names]
8585

8686
else: # not frozen
8787
test_packages_paths = \
88-
[os.path.join(our_path, ('%s/test_%s' % (package_name, package_name)))
88+
[os.path.join(our_path, package_name, 'test_%s' % package_name)
8989
for package_name in package_names]
9090

9191
###############################################################################

0 commit comments

Comments
 (0)