Skip to content

Commit

Permalink
Addition fixes to PalisadoesFoundation#400
Browse files Browse the repository at this point in the history
__Issue__: Issue when running tests in `tests/pattoo_/api/web/`

__Fix__: An error ocurred due to inconsistent spelling of access for
access_token in each file in `tests/pattoo_/api/web/`.

Resolves: PalisadoesFoundation#400
  • Loading branch information
Dev-Dominic committed Oct 31, 2020
1 parent 2ac0ad6 commit d90721b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/libraries/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def __init__(self):
'ip_listen_address': '127.0.0.1',
'ip_bind_port': 40202,
'jwt_secret_key': secrets.token_urlsafe(64),
'acesss_token_exp': '15_m',
'access_token_exp': '15_m',
'refresh_token_exp': '1_D'
},
'pattoo_ingesterd': {
Expand Down
2 changes: 1 addition & 1 deletion tests/pattoo_/api/web/test_graphql.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def test_route_graphql(self):
}
user.insert_row(DbRowUser(**test_admin))

# Get accesss token to make test queries
# Get access token to make test queries
acesss_query = ('''\
mutation{
authenticate(Input: {username: "USERNAME", password: "PASSWORD"}) {
Expand Down

0 comments on commit d90721b

Please sign in to comment.