Skip to content

Commit

Permalink
fix another windows invalid path by using os.path.join
Browse files Browse the repository at this point in the history
  • Loading branch information
CopyDemon committed Oct 16, 2024
1 parent 8ab01c3 commit e7f13d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions idaes_ui/fv/tests/test_fsvis.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,8 +521,8 @@ async def run_visualizer_and_save_diagram():
)

# define default save path
default_save_path = (
f'{save_diagram_return["default_save_path"]}/{screenshot_file_name}'
default_save_path = os.path.join(
save_diagram_return["default_save_path"], screenshot_file_name
)

# check 1 assert when save_to is empty use default_save_path
Expand Down

0 comments on commit e7f13d8

Please sign in to comment.