Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit a2a57ca

Browse files
[client-python] Adapt testing for task (#3382)
1 parent 098a803 commit a2a57ca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/cases/entities.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ def case_case_rft(api_client):
160160
return CaseRftTest(api_client)
161161

162162
@staticmethod
163-
def case_case_task(api_client):
164-
return CaseTaskTest(api_client)
163+
def task(api_client):
164+
return TaskTest(api_client)
165165

166166

167167
class EntityTest:
@@ -1043,7 +1043,7 @@ def own_class(self):
10431043
return self.api_client.case_rft
10441044

10451045

1046-
class CaseTaskTest(EntityTest):
1046+
class TaskTest(EntityTest):
10471047
def data(self) -> Dict:
10481048
return {
10491049
"name": "Case Task",
@@ -1052,4 +1052,4 @@ def data(self) -> Dict:
10521052
}
10531053

10541054
def own_class(self):
1055-
return self.api_client.case_task
1055+
return self.api_client.task

0 commit comments

Comments
 (0)