diff --git a/athlete/test.py b/athlete/test.py
index f70a792..cc32f9a 100755
--- a/athlete/test.py
+++ b/athlete/test.py
@@ -4,9 +4,6 @@ import json
 
 HOST = "http://localhost:5000"
 
-# Get root
-assert 200 == requests.get(HOST + "/").status_code
-
 # Get list of athletes as a json object
 get_root = requests.get(HOST + "/athlete").text
 if get_root != "[]\n":
diff --git a/medal/test.py b/medal/test.py
index 0cd019c..596487b 100755
--- a/medal/test.py
+++ b/medal/test.py
@@ -4,9 +4,6 @@ import json
 
 HOST = "http://localhost:5000"
 
-# Get root
-assert 200 == requests.get(HOST + "/").status_code
-
 # Get list of medals as a json object
 get_root = requests.get(HOST + "/medal").text
 
diff --git a/sport/test.py b/sport/test.py
index 3b4007d..d5af0b7 100755
--- a/sport/test.py
+++ b/sport/test.py
@@ -4,8 +4,6 @@ import json
 
 HOST = "http://localhost:5000"
 
-# Get root
-assert 200 == requests.get(HOST + "/").status_code
 
 # Get list of sports as a json object
 get_root = requests.get(HOST + "/sport").text