Skip to content
This repository has been archived by the owner on Dec 16, 2018. It is now read-only.

Commit

Permalink
Temporarily add some print statements to see why the Travis build is …
Browse files Browse the repository at this point in the history
…failing on Python 3.4
  • Loading branch information
cyrozap committed May 1, 2015
1 parent ace8f60 commit bbf8772
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ def test_generate_otp_uri():
test_secret = b'ZqeD\xd9wg]"\x12\x1f7\xc7v6"\xf0\x13\\i'
expected_uri = 'otpauth://totp/VIP%20Access:VSST26070843?secret=LJYWKRGZO5TV2IQSD434O5RWELYBGXDJ&issuer=Symantec'
generated_uri = generate_otp_uri(test_id, test_secret)
print(expected_uri, type(expected_uri))
print(generated_uri, type(generated_uri))
assert generated_uri == expected_uri

def test_generate_qr_code():
Expand Down

0 comments on commit bbf8772

Please sign in to comment.