From e1f532e2fd702437f3c459f4e8cd5d29b288145b Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Sun, 4 Aug 2013 09:26:18 -0400 Subject: [PATCH] Fixed broken tests --- core/tests/base.py | 3 +++ hscommon/tests/currency_test.py | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/core/tests/base.py b/core/tests/base.py index badf56a0..a8fa2814 100644 --- a/core/tests/base.py +++ b/core/tests/base.py @@ -148,6 +148,9 @@ class TestApp(TestAppBase): link_gui(self.pdialog.prioritization_list) link_gui(self.app.ignore_list_dialog) link_gui(self.app.ignore_list_dialog.ignore_list_table) + link_gui(self.app.progress_window) + link_gui(self.app.progress_window.jobdesc_textfield) + link_gui(self.app.progress_window.progressdesc_textfield) #--- Helpers def select_pri_criterion(self, name): diff --git a/hscommon/tests/currency_test.py b/hscommon/tests/currency_test.py index e6ca0d01..5c940a01 100644 --- a/hscommon/tests/currency_test.py +++ b/hscommon/tests/currency_test.py @@ -11,7 +11,9 @@ import sqlite3 as sqlite from .. import io from ..testutil import eq_, assert_almost_equal -from ..currency import Currency, RatesDB, CAD, EUR, PLN, USD +from ..currency import Currency, RatesDB, CAD, EUR, USD + +PLN = Currency(code='PLN') def setup_module(module): global FOO