From b3b59f8452004694c64d9769123bbb693d4bd391 Mon Sep 17 00:00:00 2001 From: Dorian Soergel Date: Mon, 3 Jun 2019 20:14:43 +0200 Subject: [PATCH] rename functions in test --- test/test_parentwork.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_parentwork.py b/test/test_parentwork.py index 985723fb5..885773906 100644 --- a/test/test_parentwork.py +++ b/test/test_parentwork.py @@ -80,9 +80,9 @@ class ParentWorkTest(unittest.TestCase, TestHelper): def test_father_work(self, command_output): mb_workid = u'2e4a3668-458d-3b2a-8be2-0b08e0d8243a' self.assertEqual(u'f04b42df-7251-4d86-a5ee-67cfa49580d1', - parentwork.work_father_id(mb_workid)[0]) + parentwork.direct_parent_id(mb_workid)[0]) self.assertEqual(u'45afb3b2-18ac-4187-bc72-beb1b1c194ba', - parentwork.work_parent_id(mb_workid)[0]) + parentwork.direct_parent_id(mb_workid)[0]) def suite():