Removing unused test Client

This commit is contained in:
Sam Splunks 2024-04-08 08:31:58 +00:00
parent c9ca97516a
commit 210b7b13f8

View File

@ -3,7 +3,6 @@ from datetime import datetime, timedelta
from django.contrib.auth.hashers import make_password
from django.contrib.auth.models import User
from django.test import TestCase, override_settings
from django.test.client import Client
from helpdesk.models import FollowUp, Queue, Ticket
from helpdesk import settings as helpdesk_settings
import uuid
@ -25,8 +24,6 @@ class TimeSpentAutoTestCase(TestCase):
title='test ticket',
description='test ticket description')
self.client = Client()
self.user = User.objects.create(
username='staff',
email='staff@example.com',