Skip to content

Commit

Permalink
fixed path in benchmark_path()
Browse files Browse the repository at this point in the history
  • Loading branch information
madsbk committed Dec 7, 2017
1 parent 34aec32 commit c04e0d4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions benchpress/suite_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,4 @@ def benchmark_path(name, implementation, extension):
path : str
Absolute path to the executable
"""

return realpath(join(_script_path(), "..", "benchmarks", name, implementation, "%s%s" % (name, extension)))
return realpath(join(_script_path(), "benchmarks", name, implementation, "%s%s" % (name, extension)))

0 comments on commit c04e0d4

Please sign in to comment.