Skip to content

Commit

Permalink
tests: fix due to previous refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Sep 2, 2019
1 parent 5af6c03 commit c3d33f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/test_fd_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_clear_and_verify_data(qtbot):
cleanup_autosave(jpkfile)
main_window = pyjibe.head.PyJibe()
main_window.load_data(files=[jpkfile])
war = main_window.subwindow_data[0]
war = main_window.subwindows[0].widget()
# clear data
tpp = war.tab_preprocess
tpp.list_preproc_applied.clear()
Expand Down Expand Up @@ -64,7 +64,7 @@ def test_fit_all(qtbot):
cleanup_autosave(jpkfile)
main_window = pyjibe.head.PyJibe()
main_window.load_data(files=[jpkfile, jpkfile])
war = main_window.subwindow_data[0]
war = main_window.subwindows[0].widget()
war.cb_autosave.setChecked(0)
war.on_fit_all()
a1 = war.data_set[0]
Expand Down
4 changes: 2 additions & 2 deletions tests/test_fd_fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_remember_initial_params(qtbot):
cleanup_autosave(jpkfile)
main_window = pyjibe.head.PyJibe()
main_window.load_data(files=[jpkfile, jpkfile])
war = main_window.subwindow_data[0]
war = main_window.subwindows[0].widget()
# clear data
tpp = war.tab_preprocess
tpp.list_preproc_applied.clear()
Expand Down Expand Up @@ -55,7 +55,7 @@ def test_change_model_keep_parms(qtbot):
cleanup_autosave(jpkfile)
main_window = pyjibe.head.PyJibe()
main_window.load_data(files=[jpkfile, jpkfile])
war = main_window.subwindow_data[0]
war = main_window.subwindows[0].widget()
# clear data
tpp = war.tab_preprocess
tpp.list_preproc_applied.clear()
Expand Down

0 comments on commit c3d33f5

Please sign in to comment.