Skip to content

Commit

Permalink
fix: test path
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Nov 13, 2021
1 parent 2f4c46d commit 26b7602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/test_formula.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

def record_cassette(cassette_path, cassette_name, cassette_data):
"""Read from existing file or create new file if it's not present"""
full_cassette_filename = cassette_path + '/' + cassette_name
full_cassette_filename = os.path.join(cassette_path, cassette_name)

if os.path.isfile(full_cassette_filename):
with open(full_cassette_filename, 'r') as cassette_file:
Expand Down

0 comments on commit 26b7602

Please sign in to comment.