Merge pull request #478 from messense/fix-requests-post-test-cases

Fix exception collection typo
This commit is contained in:
Eli Uriegas 2017-02-22 20:43:53 -06:00 committed by GitHub
commit 0d160fbeaa

View File

@ -45,7 +45,7 @@ class TestClient:
**request_kwargs) **request_kwargs)
results[-1] = response results[-1] = response
except Exception as e: except Exception as e:
exceptions.self.append(e) exceptions.append(e)
self.app.stop() self.app.stop()
self.app.run(host=HOST, debug=debug, port=PORT, **server_kwargs) self.app.run(host=HOST, debug=debug, port=PORT, **server_kwargs)