@@ -201,51 +201,41 @@ def test_get_person_record_returns_none_when_items_have_no_person_attribute_type
201201 # and record plain does not exist
202202 # then return record AWSCurrent with key AWSCurrent
203203 (True , False , "current" , "current_record" ),
204-
205204 # If key AWSCURRENT exists, record AWSCurrent not exists,
206205 # and key AWSPREVIOUS not exists, record AWSPREVIOUS not exist,
207206 # and record plain does not exist
208207 # then person not found
209208 (True , False , None , "person_not_found" ),
210-
211209 # If key AWSCURRENT exists, record AWSCurrent not exists,
212210 # and key AWSPREVIOUS not exists, record AWSPREVIOUS not exist,
213211 # and record plain does exist
214212 # then return record plain
215213 (True , False , "not_hashed" , "not_hashed_record" ),
216-
217-
218214 # If key AWSCURRENT not exists, record AWSCurrent not exists,
219215 # and key AWSPREVIOUS exists, record AWSPREVIOUS exist,
220216 # and record plain does not exist
221217 # then return record AWSPrevious with key AWSPrevious
222218 (False , True , "previous" , "previous_record" ),
223-
224219 # If key AWSCURRENT not exists, record AWSCurrent not exists,
225220 # and key AWSPREVIOUS exists, record AWSPREVIOUS not exist,
226221 # and record plain does not exist
227222 # then person not found
228223 (False , True , None , "person_not_found" ),
229-
230224 # If key AWSCURRENT not exists, record AWSCurrent not exists,
231225 # and key AWSPREVIOUS exists, record AWSPREVIOUS not exist,
232226 # and record plain does exist
233227 # then person not found
234228 (False , True , "not_hashed" , "person_not_found" ),
235-
236-
237229 # If key AWSCURRENT not exists, record AWSCurrent not exists,
238230 # and key AWSPREVIOUS not exists, record AWSPREVIOUS not exist,
239231 # and record plain does exist
240232 # then return record plain
241233 (False , False , "not_hashed" , "not_hashed_record" ),
242-
243234 # If key AWSCURRENT not exists, record AWSCurrent not exists,
244235 # and key AWSPREVIOUS not exists, record AWSPREVIOUS not exist,
245236 # and record plain does not exist
246237 # then return person not found
247238 (False , False , None , "person_not_found" ),
248-
249239 ],
250240)
251241def test_secret_key_scenarios ( # noqa: PLR0913
0 commit comments