X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fconditions.py;h=afb1841e9a6c230a64f66c9144169999e70da372;hb=e3bfd84f9061d5f03ec5f5764f75e4137505ea45;hp=5270812a41e9f7fc369a426876fe316b349e34b7;hpb=1e4c7cd5cde09a5c58bc601cae3f5a49eb615399;p=plomtask diff --git a/tests/conditions.py b/tests/conditions.py index 5270812..afb1841 100644 --- a/tests/conditions.py +++ b/tests/conditions.py @@ -19,9 +19,9 @@ class TestsWithDB(TestCaseWithDB): default_init_kwargs = {'is_active': False} test_versioneds = {'title': str, 'description': str} - def test_Condition_from_table_row(self) -> None: + def test_from_table_row(self) -> None: """Test .from_table_row() properly reads in class from DB""" - self.check_from_table_row() + super().test_from_table_row() self.check_versioned_from_table_row('title', str) self.check_versioned_from_table_row('description', str)