Skip to content
This repository has been archived by the owner on Aug 24, 2019. It is now read-only.

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
enisbt committed Aug 19, 2018
1 parent 3ebadfb commit 7feee8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions factlist/perspective/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_get_list_of_topics(self):
self.assertEqual(response.status_code, status.HTTP_200_OK)
self.assertEqual(response.data['count'], 2)

def test_get_an_topic(self):
def test_get_a_topic(self):
user, client = self.create_user_and_user_client()

data = {
Expand All @@ -56,7 +56,7 @@ def test_get_an_topic(self):
self.assertEqual(response.status_code, status.HTTP_200_OK)
self.assertEqual(response.data["title"], "Test topic")

def test_update_an_topic(self):
def test_update_a_topic(self):
enis, enis_client = self.create_user_and_user_client()
ali, ali_client = self.create_user_and_user_client()

Expand All @@ -79,7 +79,7 @@ def test_update_an_topic(self):
response = ali_client.patch('/api/v1/topics/%s/' % response.data["id"], data=data)
self.assertEqual(response.status_code, status.HTTP_404_NOT_FOUND)

def test_delete_an_topic(self):
def test_delete_a_topic(self):
enis, enis_client = self.create_user_and_user_client()
ali, ali_client = self.create_user_and_user_client()

Expand Down

0 comments on commit 7feee8e

Please sign in to comment.