Skip to content
This repository has been archived by the owner on Mar 12, 2021. It is now read-only.

Commit

Permalink
Make sure epic2inttest works with case insensitive handle servers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Verkerk committed Nov 12, 2018
1 parent 2b71746 commit e7cfacb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/tests/testB2SafeCmd/epic2intgtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def test_search_handle_by_key_value(self):
search_result = subprocess_popen(command)
search_result_json = json.loads(search_result[0])
self.assertEqual(
create_result[0], search_result_json[0],
unicode(create_result[0]).lower(), search_result_json[0].lower(),
'search existing handle by key returns unexpected response')


Expand Down Expand Up @@ -168,7 +168,7 @@ def test_create_handle(self):
command = [EPIC_PATH, CRED_STORE, CRED_PATH, 'search', 'URL', 'http://www.testB2SafeCmd.com/1']
search_result = subprocess_popen(command)
search_result_json = json.loads(search_result[0])
self.assertEqual(create_result[0], search_result_json[0],
self.assertEqual(unicode(create_result[0]).lower(), search_result_json[0].lower(),
'create handle should add new handle')


Expand Down

0 comments on commit e7cfacb

Please sign in to comment.