We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6572d6f commit a367d3aCopy full SHA for a367d3a
tests/tests.py
@@ -220,12 +220,10 @@ def __init__(self):
220
str(sys.version_info[1])
221
222
self.project_a = prefix + 'A' # old XSS
223
- self.project_a_name = "Test user=%s python=%s.%s A" \
224
- % (getpass.getuser(), sys.version_info[0],
225
- sys.version_info[1])
226
- self.project_b_name = "Test user=%s python=%s.%s B" \
227
228
+ 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)
229
self.project_b = prefix + 'B' # old BULK
230
231
# TODO: fin a way to prevent SecurityTokenMissing for On Demand
0 commit comments