Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Antti Soininen authored and Antti Soininen committed Aug 19, 2024
1 parent 7c7c6f1 commit b02b085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/widgets/test_TimeSeriesFixedResolutionTableView.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def test_copy_single_cell(self):
mock_clipboard = mock.MagicMock()
clipboard_getter.return_value = mock_clipboard
self._table_view.copy()
mock_clipboard.setText.assert_called_once_with("2019-08-08T15:00:00" + os.linesep)
mock_clipboard.setText.assert_called_once_with("2019-08-08T15:00:00\r\n")

def test_paste_single_value(self):
selection_model = self._table_view.selectionModel()
Expand Down

0 comments on commit b02b085

Please sign in to comment.