Skip to content

Commit

Permalink
Missed one, double quoted patch, fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
asgibson committed Aug 31, 2023
1 parent cf0fea6 commit ac8f319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/data_handling/parsers/test_forty_two_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_FortyTwo_pre_process_data_sets_labels_and_data_to_values_returned_from_
fake_data = MagicMock()
forced_return_parse_sim_data = (fake_labels, fake_data)

mocker.patch("onair.data_handling.parsers.forty_two_parser.str2lst", return_value=forced_return_str2lst)
mocker.patch(forty_two_parser.__name__ + '.str2lst', return_value=forced_return_str2lst)
mocker.patch.object(pytest.cut, "parse_sim_data", return_value=forced_return_parse_sim_data)

# Act
Expand Down

0 comments on commit ac8f319

Please sign in to comment.