From 33d355c2865d6675e51b9aa166a3f341c691f15c Mon Sep 17 00:00:00 2001 From: GuiMacielPereira Date: Tue, 31 Oct 2023 14:25:48 +0000 Subject: [PATCH] Updated unit tests --- tests/plot_options_presenter_test.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/plot_options_presenter_test.py b/tests/plot_options_presenter_test.py index 3fd93791..7620099a 100644 --- a/tests/plot_options_presenter_test.py +++ b/tests/plot_options_presenter_test.py @@ -237,13 +237,3 @@ def test_set_all_fonts_size(self): fonts_updated = {'title_size': 20, 'x_range_font_size': 20, 'y_range_font_size': 20, 'x_label_size': 20, 'y_label_size': 20} model_all_fonts_size.assert_any_call(fonts_updated) # Not latest call due to copy() methods - - def test_increase_all_fonts(self): - self.presenter = CutPlotOptionsPresenter(self.view, self.model) - self.presenter._increase_all_fonts() - self.model.increase_all_fonts.assert_called_once_with() - - def test_decrease_all_fonts(self): - self.presenter = CutPlotOptionsPresenter(self.view, self.model) - self.presenter._decrease_all_fonts() - self.model.decrease_all_fonts.assert_called_once_with()