Rename offline client class and fix django bootstrap

Wrong method name was used when bootstrapping django.

Change-Id: Iee112e465daaa7e108fb12999374f4da569411a8
This commit is contained in:
David Moreau Simard 2018-06-20 10:17:22 -04:00
parent d50ebdd1a3
commit c907258a61
No known key found for this signature in database
GPG Key ID: 33A07694CBB71ECC
1 changed files with 2 additions and 2 deletions

View File

@ -27,10 +27,10 @@ from django.core.management import execute_from_command_line
from django.test import Client
class OfflineClient(object):
class AraOfflineClient(object):
def __init__(self):
self.client = self.bootstrap_django_client()
self.log = logging.getLogger('ara.clients.offline')
self.client = self._bootstrap_django_client()
def _bootstrap_django_client(self):
self.log.debug('Bootstrapping Django offline client')