From 8ca1e1b070e64affc9400011a99eaef6bd4f7949 Mon Sep 17 00:00:00 2001 From: Jorrit Schaap <schaap@astron.nl> Date: Mon, 10 May 2021 16:08:04 +0200 Subject: [PATCH] TMSS-553: fixes --- SAS/TMSS/backend/test/tmss_test_data_django_models.py | 3 +-- SAS/TMSS/backend/test/tmss_test_data_rest.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/SAS/TMSS/backend/test/tmss_test_data_django_models.py b/SAS/TMSS/backend/test/tmss_test_data_django_models.py index 538d5d74809..ef0268ca142 100644 --- a/SAS/TMSS/backend/test/tmss_test_data_django_models.py +++ b/SAS/TMSS/backend/test/tmss_test_data_django_models.py @@ -108,8 +108,7 @@ def TaskConnectorType_test_data() -> dict: "datatype": models.Datatype.objects.get(value='instrument model'), "dataformat": models.Dataformat.objects.get(value='Beamformed'), "task_template": models.TaskTemplate.objects.create(**TaskTemplate_test_data()), - "iotype": models.IOType.objects.get(value=models.IOType.Choices.OUTPUT.value), - "tags": []} + "iotype": models.IOType.objects.get(value=models.IOType.Choices.OUTPUT.value)} def Cycle_test_data() -> dict: return {"name": 'my_cycle' + str(uuid.uuid4()), diff --git a/SAS/TMSS/backend/test/tmss_test_data_rest.py b/SAS/TMSS/backend/test/tmss_test_data_rest.py index b0264d53860..7fbd564e753 100644 --- a/SAS/TMSS/backend/test/tmss_test_data_rest.py +++ b/SAS/TMSS/backend/test/tmss_test_data_rest.py @@ -229,8 +229,7 @@ class TMSSRESTTestDataCreator(): "datatype": self.django_api_url + '/datatype/image', "dataformat": self.django_api_url + '/dataformat/Beamformed', "task_template": task_template_url, - "iotype": self.django_api_url + '/iotype/%s'%iotype, - "tags": []} + "iotype": self.django_api_url + '/iotype/%s'%iotype} def DefaultTemplates(self, name="defaulttemplate"): -- GitLab