diff --git a/server/users/services.py b/server/users/services.py index d205c6c1..7a64a65f 100644 --- a/server/users/services.py +++ b/server/users/services.py @@ -23,7 +23,7 @@ def create_users(data=None): if data is None: teacher = UserFactory(username='teacher') - UserRole.objects.create(user=teacher, role=teacher_role, onboarding_visited=True) + UserRole.objects.create(user=teacher, role=teacher_role) students = [] for i in range(1, 7): @@ -35,7 +35,7 @@ def create_users(data=None): name='skillbox', ) teacher2 = UserFactory(username='teacher2') - UserRole.objects.create(user=teacher2, role=teacher_role, onboarding_visited=True) + UserRole.objects.create(user=teacher2, role=teacher_role) student_second_class = create_student(username='student_second_class', onboarding_visited=True) SchoolClassFactory(