Skip to content
Snippets Groups Projects
Commit 1c32fcbe authored by Anthony Lim's avatar Anthony Lim
Browse files

refs #24036 made multiplotwidget test python3 compatible

parent f9d93f20
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ class MultiPlotWidgetTest(unittest.TestCase):
def test_setAllValues(self):
self.widget._context.subplots = data()
# mocks as we only want to test logic
self.widget.quickEdit.get_selection = mock.MagicMock(return_value = data().keys())
self.widget.quickEdit.get_selection = mock.MagicMock(return_value = list(data().keys()))
self.widget._x_range_changed = mock.MagicMock()
self.widget._y_range_changed = mock.MagicMock()
self.widget._check_all_errors = mock.MagicMock(return_value = False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment