Skip to content

Commit 0601095

Browse files
committed
NPA-4922 Fix Sandbox Linting Errors
1 parent eaba2eb commit 0601095

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

sandbox/api/tests/test_get_consent.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -95,62 +95,62 @@ def test_get_consent_returns_expected_responses__mocked_get_consent(
9595
),
9696
(
9797
"performer:identifier=9000000010", # performer:identifier resulting in single adult relationship
98-
"./api/examples/GET_Consent/single-consenting-adult-relationship.yaml",
98+
"./api/examples/GET_Consent/single-consenting-adult-relationship.yaml", # noqa: E501
9999
200,
100100
),
101101
(
102102
"patient:identifier=9000000005",
103-
"./api/examples/GET_Consent/single-consenting-adult-relationship.yaml",
103+
"./api/examples/GET_Consent/single-consenting-adult-relationship.yaml", # noqa: E501
104104
200,
105105
),
106106
(
107107
"performer:identifier=9000000010&patient:identifier=9000000005",
108-
"./api/examples/GET_Consent/single-consenting-adult-relationship.yaml",
108+
"./api/examples/GET_Consent/single-consenting-adult-relationship.yaml", # noqa: E501
109109
200,
110110
),
111111
(
112112
"performer:identifier=9000000010&_include=Consent:performer&_include=Consent:patient",
113-
"./api/examples/GET_Consent/single-consenting-adult-relationship-include-performer-patient.yaml",
113+
"./api/examples/GET_Consent/single-consenting-adult-relationship-include-performer-patient.yaml", # noqa: E501
114114
200,
115115
),
116116
(
117117
"patient:identifier=9000000005&_include=Consent:performer&_include=Consent:patient",
118-
"./api/examples/GET_Consent/single-consenting-adult-relationship-include-performer-patient.yaml",
118+
"./api/examples/GET_Consent/single-consenting-adult-relationship-include-performer-patient.yaml", # noqa: E501
119119
200,
120120
),
121121
(
122-
"performer:identifier=9000000010&patient:identifier=9000000005&_include=Consent:performer&_include=Consent:patient",
123-
"./api/examples/GET_Consent/single-consenting-adult-relationship-include-performer-patient.yaml",
122+
"performer:identifier=9000000010&patient:identifier=9000000005&_include=Consent:performer&_include=Consent:patient",
123+
"./api/examples/GET_Consent/single-consenting-adult-relationship-include-performer-patient.yaml", # noqa: E501
124124
200,
125125
),
126126
(
127127
"performer:identifier=9000000019",
128-
"./api/examples/GET_Consent/single-mother-child-relationship.yaml",
128+
"./api/examples/GET_Consent/single-mother-child-relationship.yaml", # noqa: E501
129129
200,
130130
),
131131
(
132132
"patient:identifier=9000000009",
133-
"./api/examples/GET_Consent/single-mother-child-relationship.yaml",
133+
"./api/examples/GET_Consent/single-mother-child-relationship.yaml", # noqa: E501
134134
200,
135135
),
136136
(
137137
"performer:identifier=9000000019&patient:identifier=9000000009",
138-
"./api/examples/GET_Consent/single-mother-child-relationship.yaml",
138+
"./api/examples/GET_Consent/single-mother-child-relationship.yaml", # noqa: E501
139139
200,
140140
),
141141
(
142142
"performer:identifier=9000000019&_include=Consent:performer&_include=Consent:patient",
143-
"./api/examples/GET_Consent/single-mother-child-relationship-include-performer-patient.yaml",
143+
"./api/examples/GET_Consent/single-mother-child-relationship-include-performer-patient.yaml", # noqa: E501
144144
200,
145145
),
146146
(
147147
"patient:identifier=9000000009&_include=Consent:performer&_include=Consent:patient",
148-
"./api/examples/GET_Consent/single-mother-child-relationship-include-performer-patient.yaml",
148+
"./api/examples/GET_Consent/single-mother-child-relationship-include-performer-patient.yaml", # noqa: E501
149149
200,
150150
),
151151
(
152152
"performer:identifier=9000000019&patient:identifier=9000000009&_include=Consent:performer&_include=Consent:patient",
153-
"./api/examples/GET_Consent/single-mother-child-relationship-include-performer-patient.yaml",
153+
"./api/examples/GET_Consent/single-mother-child-relationship-include-performer-patient.yaml", # noqa: E501
154154
200,
155155
),
156156
(

0 commit comments

Comments
 (0)