diff --git a/README.md b/README.md index 697bbd7..e79b9b7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Build Status](https://travis-ci.org/evamaina/StackOverflow-lite.svg?branch=master)](https://travis-ci.org/evamaina/StackOverflow-lite) [![Coverage Status](https://coveralls.io/repos/github/evamaina/StackOverflow-lite/badge.svg?branch=Develop)](https://coveralls.io/github/evamaina/StackOverflow-lite?branch=Develop) -[![Maintainability](https://api.codeclimate.com/v1/badges/163a8686782281a51d9c/maintainability)](https://codeclimate.com/github/evamaina/StackOverflow-lite/maintainability) + [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/hyperium/hyper/master/LICENSE) [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity) diff --git a/tests/test_answers.py b/tests/test_answers.py index 4e83058..1e0e83e 100644 --- a/tests/test_answers.py +++ b/tests/test_answers.py @@ -117,13 +117,13 @@ def test_user_can_fetch_all_answers(self): def test_user_must_login_to_answer_question(self): - # response = self.client.post("/api/v1/register", - # data=json.dumps(dict(first_name="jyce", - # last_name="krir", - # username="jkorry", - # email="jy@gmal.com", - # password="jy")), - # content_type="application/json") + response = self.client.post("/api/v1/register", + data=json.dumps(dict(first_name="jyce", + last_name="krir", + username="jkorry", + email="jy@gmal.com", + password="jy")), + content_type="application/json") response = self.client.post("/api/v1/question", data=json.dumps(self.question),