diff --git a/django/website/rest_api/tests/counts_per_term_tests.py b/django/website/rest_api/tests/counts_per_term_tests.py
index 887c4132e2e8d770b932066b50d4e2c5a356f3f0..d25f03fd7919b83e2c2473e8d555edd364518ef2 100644
--- a/django/website/rest_api/tests/counts_per_term_tests.py
+++ b/django/website/rest_api/tests/counts_per_term_tests.py
@@ -89,18 +89,6 @@ def test_term_count_contains_taxonomy_term_name(questions_category):
     assert origins['name'] == name
 
 
-@pytest.mark.django_db
-def test_term_count_contains_taxonomy_term_name(questions_category):
-    origin1 = create_item(body="What was the caused of ebola outbreak in liberia?").data
-    origins = add_term(taxonomy=questions_category['slug'], name="Test Origins").data
-    categorize_item(origin1, origins)
-
-    terms = get_term_count(questions_category).data
-    [name] = [term['name'] for term in terms]
-
-    assert origins['name'] == name
-
-
 @pytest.mark.django_db
 def test_term_count_contains_taxonomy_term_long_name(questions_category):
     origin1 = create_item(body="What was the caused of ebola outbreak in liberia?").data