Skip to content

Commit

Permalink
identifying descriptor added to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbott committed Aug 11, 2021
1 parent 14eb1ac commit de266a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/minigrid-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ jobs:
pip install -r dev/requirements.txt
pip install -r requirements.txt
pip install coveralls
- name: Set up Node 14
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install node dependencies
run: |
npm install
Expand Down
2 changes: 1 addition & 1 deletion tests/python/test_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,7 @@ def test_verify_value_error(self, get_verified_email):
)
self.assertResponseCode(response, 400)
self.assertEqual(
response.error.message, 'error')
response.error.message, 'ValueError: error')

@patch('minigrid.handlers.get_verified_email', new_callable=CoroMock)
def test_verify(self, get_verified_email):
Expand Down

0 comments on commit de266a4

Please sign in to comment.