From 5f0a5f7429ff74cccdc772fd45e0e5d3ee49891d Mon Sep 17 00:00:00 2001
From: adityacp
Date: Thu, 5 Mar 2020 10:46:31 +0530
Subject: Change in decorators, tests, travis

- Remove python 2.7 from travis
- Fix url reverse function import in views tests
- Fix error in is_email_verified decorator for user is_authenticated
---
 yaksh/test_views.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'yaksh/test_views.py')

diff --git a/yaksh/test_views.py b/yaksh/test_views.py
index 58c6633..7c932b5 100644
--- a/yaksh/test_views.py
+++ b/yaksh/test_views.py
@@ -11,7 +11,7 @@ import shutil
 from markdown import Markdown
 from django.contrib.auth.models import Group
 from django.contrib.auth import authenticate
-from django.core.urlresolvers import reverse
+from django.urls import reverse
 from django.test import TestCase
 from django.test import Client
 from django.http import Http404
@@ -3740,7 +3740,7 @@ class TestPasswordReset(TestCase):
         # Then
         self.assertEqual(response.context['email'], self.user1.email)
         self.assertEqual(response.status_code, 302)
-        self.assertRedirects(response, '/exam/reset/password_reset/mail_sent/')
+        self.assertRedirects(response, '/exam/reset/password_reset/done/')
 
     def test_password_change_post(self):
         """
-- 
cgit