Skip to content

Commit 8497cbc

Browse files
committed
Fixed unit test 4
1 parent 50662de commit 8497cbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/cut_plotter_presenter_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def test_propagate_sample_temperatures_throughout_cache(self):
335335
self.assertEqual(cut_3._sample_temp, None)
336336

337337
@mock.patch("mslice.presenters.cut_plotter_presenter.plt.gca")
338-
def test_missing_sample_temperature(self):
338+
def test_missing_sample_temperature(self, mock_plot_gca):
339339
ax = mock.MagicMock()
340340
self.populate_presenter_cache_dict(ax)
341341
cut_1, cut_2, cut_3 = self.cut_plotter_presenter._cut_cache_dict[ax]

0 commit comments

Comments
 (0)