Skip to content

Commit

Permalink
Fix path to screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewSazonov committed Apr 25, 2024
1 parent 0a0518f commit c53c124
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/gui/test__TutorialFitTwoPhases.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# Help functions

def desired_img_path(fname:str):
return os.path.join('screenshots', 'desired', fname)
return os.path.join('tests', 'gui', 'screenshots', 'desired', fname)

def actual_img_path(fname:str):
return os.path.join('screenshots', 'actual', fname)
return os.path.join('tests', 'gui', 'screenshots', 'actual', fname)

# Tests

Expand Down

0 comments on commit c53c124

Please sign in to comment.