Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
14 changes: 7 additions & 7 deletions tests/test_answers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down