Merge remote-tracking branch 'origin/master' into nomenclature
Conflicts: test/data/test.db workers/dockerfilebuild.py
This commit is contained in:
commit
ed8bcff39e
26 changed files with 138 additions and 134 deletions
Binary file not shown.
|
@ -173,7 +173,7 @@ class ApiTestCase(unittest.TestCase):
|
|||
if memberData['name'] == membername:
|
||||
return
|
||||
|
||||
self.fail(membername + ' not found in team: ' + json.dumps(data))
|
||||
self.fail(membername + ' not found in team: ' + py_json.dumps(data))
|
||||
|
||||
def login(self, username, password='password'):
|
||||
return self.postJsonResponse(Signin, data=dict(username=username, password=password))
|
||||
|
@ -405,7 +405,7 @@ class TestCreateNewUser(ApiTestCase):
|
|||
invite = model.add_or_invite_to_team(inviter, team, None, 'foo@example.com')
|
||||
|
||||
details = {
|
||||
'inviteCode': invite.invite_token
|
||||
'invite_code': invite.invite_token
|
||||
}
|
||||
details.update(NEW_USER_DETAILS);
|
||||
|
||||
|
|
Reference in a new issue