Projet

Général

Profil

0001-mpdh13-PEP8-31445.patch

Benjamin Dauvergne, 15 mars 2019 11:17

Télécharger (1,14 ko)

Voir les différences:

Subject: [PATCH 1/2] mpdh13: PEP8 (#31445)

 tests/test_mdph13.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
tests/test_mdph13.py
264 264
    assert Link.objects.count() == 0
265 265
    try:
266 266
        mdph13.check_status()
267
    except Exception as e:
267
    except Exception:
268 268
        pytest.fail('check_status() should not raise')
269 269

  
270 270

  
......
357 357
    # check relinking with update
358 358
    mock_http.add_response(VALID_RESPONSE)
359 359
    response = mdph13.link(request=None, NameID=NAME_ID,
360
                           numero_dossier=FILE_NUMBER, secret=SECRET+'a',
360
                           numero_dossier=FILE_NUMBER, secret=SECRET + 'a',
361 361
                           date_de_naissance=DOB_ISOFORMAT, email=EMAIL)
362 362
    assert response == {
363 363
        'link_id': link.pk,
364
-