depend on the sanctity of ablankstein.id instead of muneeb.id for the CI build

This commit is contained in:
Aaron Blankstein
2017-10-10 19:18:10 -04:00
parent 1f76a31466
commit b1c8e3d7e4
2 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ test:
- blockstack api stop -y
deployment:
tarball_venv:
branch: [master, osx-single-file-build, develop, hotfix/storage-errno]
branch: [master, osx-single-file-build, develop]
commands:
- cp -r ../virtualenvs/venv-system ./venv-copy
- virtualenv --relocatable ../virtualenvs/venv-system

View File

@@ -166,7 +166,7 @@ class AuthInternal(APITestCase):
data = self.get_request('/v1/wallet/payment_address',
headers = auth_header, status_code=200)
data = self.get_request('/v1/users/muneeb.id',
data = self.get_request('/v1/users/ablankstein.id',
headers = auth_header, status_code=200)
# self.assertIn('error', data)
@@ -201,7 +201,7 @@ class AuthInternal(APITestCase):
data = self.get_request('/v1/wallet/payment_address',
headers = auth_header, status_code=200)
data = self.get_request('/v1/users/muneeb.id',
data = self.get_request('/v1/users/ablankstein.id',
headers = auth_header, status_code=200)
def test_auth_token_no_username(self):