diff --git a/backend/secfit/suggested_workouts/tests.py b/backend/secfit/suggested_workouts/tests.py
index f7e22e2dbd3fb280c80c521b0fe314734c28b5ea..a3793f9dd2087b3fc8a6ed12f71f8481475974c6 100644
--- a/backend/secfit/suggested_workouts/tests.py
+++ b/backend/secfit/suggested_workouts/tests.py
@@ -10,10 +10,8 @@ from workouts.serializers import ExerciseSerializer
 from django.urls import reverse
 from suggested_workouts.views import createSuggestedWorkouts, detailedSuggestedWorkout
 from rest_framework import status
-
-
 """
-Integration testing for new feature: UC2
+Integration testing for the functionality for UC2
 """
 
 
@@ -26,6 +24,7 @@ functions as expected together with the serializer, meaning that we test wheter
 to deserialize, serialize, updating and creating an instance of SuggestedWorkout.
 """
 
+
 class SuggestedWorkoutTestCase(APITestCase):
     def setUp(self):
         self.factory = APIRequestFactory()
diff --git a/backend/secfit/users/tests.py b/backend/secfit/users/tests.py
index 6b66a60f1f25d971b1236b3d8bd033b11bdbd961..90329a719704dba5e26235b7ee44f581afa08f7f 100644
--- a/backend/secfit/users/tests.py
+++ b/backend/secfit/users/tests.py
@@ -13,10 +13,8 @@ import json
 from unittest import skip
 import random
 
-
-
 '''
-    Serializer tests
+    Serializer
 '''
 
 class UserSerializerTestCase(APITestCase):
@@ -176,9 +174,8 @@ class UserSerializerTestCase(APITestCase):
 
 
 '''
-    Boundary value tests
+    Boundary values
 '''
-
 defaultDataRegister = {
         "username": "johnDoe", "email": "johnDoe@webserver.com", "password": "johnsPassword", "password1": "johnsPassword",  "phone_number": "11223344", "country": "Norway", "city": "Trondheim", "street_address": "Kongens gate 33"
     }
@@ -460,6 +457,7 @@ class PhoneBoundaryTestCase(TestCase):
             self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
 
 
+
 class CountryBoundaryTestCase(TestCase):
     def setUp(self):
         # Adds some randomness
@@ -530,6 +528,7 @@ class CountryBoundaryTestCase(TestCase):
             self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
 
 
+
 class CityBoundaryTestCase(TestCase):
     def setUp(self):
         # Adds some randomness
@@ -595,6 +594,8 @@ class CityBoundaryTestCase(TestCase):
             self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
 
 
+
+
 class Street_AdressBoundaryTestCase(TestCase):
     def setUp(self):
         # Adds some randomness
@@ -667,14 +668,12 @@ class Street_AdressBoundaryTestCase(TestCase):
 
 
 
-
-
 '''
     2-way domain testing
 
     We will do the following:
     1. Define data, we will reuse the same data as in boundary values (ideally this could be automated so that all the data is only stored in one place, the validity could be set from the tests themselfs)
-    2. Do several iterations to test the data togheter
+    2. Do several loops to test the data togheter
     3. Return results
 '''
 
diff --git a/backend/secfit/workouts/tests.py b/backend/secfit/workouts/tests.py
index 959df1e507468a098ae32b75b33a1d958800242d..6b16dccc47976f01080ffad6eefec6097e1c2cae 100644
--- a/backend/secfit/workouts/tests.py
+++ b/backend/secfit/workouts/tests.py
@@ -15,10 +15,6 @@ import pytz
 from rest_framework.request import Request
 
 
-'''
-    Test permmisions.py
-'''
-
 class WorkoutPermissionsTestCases(TestCase):
     def setUp(self):
         self.owner = get_user_model()(id=1, username='owner', email='email@email.com', phone_number='92134654',
@@ -271,11 +267,8 @@ class WorkoutPermissionsTestCases(TestCase):
             self, request=self.request, view=None, obj=None))
 
 
-
-
-
 '''
-    Boundary value tests
+    Boundary values
 '''
 defaultDataWorkout = {"name": "workoutname", "date": "2021-01-1T13:29:00.000Z", "notes": "notes",
                       "visibility": "PU", "planned": "false", "exercise_instances": [], "filename": []}
@@ -683,14 +676,6 @@ class Exercise_instancesBoundaryTestCase(TestCase):
         self.assertEqual(response.status_code, 400)
 
 
-
-
-
-
-'''
-    Integration test new feature: UC1
-'''
-
 class IntegrationTestPlannedWorkout(APITestCase):
     def setUp(self):
         self.client = APIClient()