Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions load_testing/common_flows/flow_ial2_proofing.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,7 @@ def do_ial2_proofing(context):
)
auth_token = authenticity_token(resp)

# SSN - use faker to get unique SSNs
fake = Faker()
ssn = fake.ssn()
ssn = '900-12-3456'
# print("*** Using ssn: " + ssn)
resp = do_request(
context,
Expand Down
4 changes: 1 addition & 3 deletions load_testing/common_flows/flow_sp_ial2_sign_in.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,7 @@ def ial2_sign_in(context):
)
auth_token = authenticity_token(resp)

# SSN - use faker to get unique SSNs
fake = Faker()
ssn = fake.ssn()
ssn = '900-12-3456'
if os.getenv("DEBUG"):
print("DEBUG: /verify/doc_auth/ssn")
resp = do_request(
Expand Down
4 changes: 1 addition & 3 deletions load_testing/common_flows/flow_sp_ial2_sign_in_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,7 @@ def ial2_sign_in_async(context):
)
auth_token = authenticity_token(resp)

# SSN - use faker to get unique SSNs
fake = Faker()
ssn = fake.ssn()
ssn = '900-12-3456'
logging.debug('/verify/doc_auth/ssn')
resp = do_request(
context,
Expand Down
4 changes: 1 addition & 3 deletions load_testing/common_flows/flow_sp_ial2_sign_up.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,7 @@ def ial2_sign_up(context):
)
auth_token = authenticity_token(resp)

# SSN - use faker to get unique SSNs
fake = Faker()
ssn = fake.ssn()
ssn = '900-12-3456'
if os.getenv("DEBUG"):
print("DEBUG: /verify/doc_auth/ssn")
resp = do_request(
Expand Down
4 changes: 1 addition & 3 deletions load_testing/common_flows/flow_sp_ial2_sign_up_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,7 @@ def ial2_sign_up_async(context):
auth_token = authenticity_token(resp)

logging.debug('/verify/doc_auth/ssn')
# SSN - use faker to get unique SSNs
fake = Faker()
ssn = fake.ssn()
ssn = '900-12-3456'
resp = do_request(
context,
"put",
Expand Down