Skip to content

Commit

Permalink
Sorted the project name duplication error with the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sorin Sbarnea committed May 1, 2016
1 parent 6572d6f commit a367d3a
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,10 @@ def __init__(self):
str(sys.version_info[1])

self.project_a = prefix + 'A' # old XSS
self.project_a_name = "Test user=%s python=%s.%s A" \
% (getpass.getuser(), sys.version_info[0],
sys.version_info[1])
self.project_b_name = "Test user=%s python=%s.%s B" \
% (getpass.getuser(), sys.version_info[0],
sys.version_info[1])
self.project_a_name = "Test user=%s key=%s A" \
% (getpass.getuser(), self.project_a)
self.project_b_name = "Test user=%s key=%s B" \
% (getpass.getuser(), self.project_b)
self.project_b = prefix + 'B' # old BULK

# TODO: fin a way to prevent SecurityTokenMissing for On Demand
Expand Down

0 comments on commit a367d3a

Please sign in to comment.