Skip to content

Commit 5cf4669

Browse files
committed
VED-746: change variable names
1 parent e0c8bb1 commit 5cf4669

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

e2e/test_search_by_identifier.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,10 @@ def store_records(self, *resources):
2323
def test_search_imms(self):
2424
for imms_api in self.imms_apis:
2525
with self.subTest(imms_api):
26-
# Given two patients each with one covid_19
27-
covid_19_p1 = generate_imms_resource()
28-
rsv_p1 = generate_imms_resource()
29-
covid_ids = self.store_records(covid_19_p1)
30-
rsv_ids = self.store_records(rsv_p1)
26+
covid19_imms_data = generate_imms_resource()
27+
rsv_imms_data = generate_imms_resource()
28+
covid_ids = self.store_records(covid19_imms_data)
29+
rsv_ids = self.store_records(rsv_imms_data)
3130

3231
# Retrieve the resources to get the identifier system and value via read API
3332
covid_resource = imms_api.get_immunization_by_id(covid_ids).json()

e2e/test_search_by_identifier_elements.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ def store_records(self, *resources):
2020
def test_search_imms(self):
2121
for imms_api in self.imms_apis:
2222
with self.subTest(imms_api):
23-
covid_19_p1 = generate_imms_resource()
24-
covid_ids = self.store_records(covid_19_p1)
23+
covid19_imms_data = generate_imms_resource()
24+
covid_ids = self.store_records(covid19_imms_data)
2525

2626
# Retrieve the resources to get the identifier system and value via read API
2727
covid_resource = imms_api.get_immunization_by_id(covid_ids).json()

0 commit comments

Comments
 (0)