From 5f545da43d3ce2e04d9adc88b6b0197d38cc76be Mon Sep 17 00:00:00 2001
From: Todd Dembrey <todd.dembrey@torchbox.com>
Date: Tue, 5 Mar 2019 21:28:17 +0000
Subject: [PATCH] test: start the test method with the word test or it doesn't
 run

---
 opentech/apply/review/tests/test_views.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opentech/apply/review/tests/test_views.py b/opentech/apply/review/tests/test_views.py
index c59daab48..ed32e8472 100644
--- a/opentech/apply/review/tests/test_views.py
+++ b/opentech/apply/review/tests/test_views.py
@@ -291,7 +291,7 @@ class NonStaffReviewOpinionCase(BaseViewTestCase):
     def get_kwargs(self, instance):
         return {'pk': instance.id, 'submission_pk': instance.submission.id}
 
-    def nonstaff_cant_post_opinion_to_review(self):
+    def test_nonstaff_cant_post_opinion_to_review(self):
         staff = StaffFactory()
         review = ReviewFactory(submission=self.submission, author=staff, recommendation_yes=True)
         response = self.post_page(review, {'agree': AGREE})
-- 
GitLab