Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
niekdejonge committed Oct 25, 2024
1 parent 407ffc0 commit c65c203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_training_wrapper_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_train_wrapper_ms2ds_model(tmp_path):
model_file_name = os.path.join(tmp_path, expected_file_names.trained_models_folder,
model_directory_name, settings.model_file_name)
assert os.path.isfile(model_file_name)
model = load_model(model_file_name)
load_model(model_file_name)
assert os.path.isfile(expected_file_names.negative_mode_spectra_file)
assert os.path.isfile(expected_file_names.negative_validation_spectra_file)
assert os.path.isfile(os.path.join(tmp_path, expected_file_names.trained_models_folder,
Expand Down

0 comments on commit c65c203

Please sign in to comment.