From b89dd07fef7a9b6ad8221b4ec1f2544f1a6c1354 Mon Sep 17 00:00:00 2001 From: dandds Date: Mon, 6 Aug 2018 14:14:11 -0400 Subject: [PATCH] use DOD_SDN from mocks --- tests/domain/authnid/test_utils.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/domain/authnid/test_utils.py b/tests/domain/authnid/test_utils.py index 310f5ba5..caaa29f9 100644 --- a/tests/domain/authnid/test_utils.py +++ b/tests/domain/authnid/test_utils.py @@ -1,12 +1,7 @@ import pytest import atst.domain.authnid.utils as utils +from tests.mocks import DOD_SDN -DOD_SDN_INFO = { - 'first_name': 'ART', - 'last_name': 'GARFUNKEL', - 'dod_id': '5892460358' - } -DOD_SDN = f"CN={DOD_SDN_INFO['last_name']}.{DOD_SDN_INFO['first_name']}.G.{DOD_SDN_INFO['dod_id']},OU=OTHER,OU=PKI,OU=DoD,O=U.S. Government,C=US" def test_parse_sdn(): parsed = utils.parse_sdn(DOD_SDN)