RuntimeError: maximum recursion depth exceeded while calling a Python object
- by Bilal Basharat
this error arises when i try to run the following test case which is written in models.py of my django app named 'administration' :
from django.test import Client, TestCase
from django.core import mail
class ClientTest( TestCase ):
fixtures = [ 'testdata.json' ]
def test_get_register( self ):
response = self.client.get(…