Skip to content

Commit

Permalink
url isn't lazy now
Browse files Browse the repository at this point in the history
  • Loading branch information
marazmiki committed Aug 22, 2014
1 parent 3909707 commit b6f97b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions onpay/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from __future__ import absolute_import
from __future__ import division
from django import test
from django.core.urlresolvers import reverse_lazy
from django.core.urlresolvers import reverse
from django.utils import six
from django.utils.timezone import now
from onpay.utils import create_order
Expand Down Expand Up @@ -33,7 +33,7 @@ def setUp(self):
comment='Test order',
email='bender@ilovebender.com')
self.client = test.Client()
self.url = reverse_lazy('onpay_result')
self.url = reverse('onpay_result')

def get_check_data(self):
return {
Expand Down

0 comments on commit b6f97b2

Please sign in to comment.