diff --git a/src/caosdb/utils/register_tests.py b/src/caosdb/utils/register_tests.py
index b15b722cecfa9a6a2b40f0bd8f6dbc1b677550cc..9d0afcbb0845e1d8d31622e8ab9926f26f7e78f6 100644
--- a/src/caosdb/utils/register_tests.py
+++ b/src/caosdb/utils/register_tests.py
@@ -26,7 +26,7 @@ from caosdb import administration as admin
 This module implements a registration procedure for integration tests which
 need a running CaosDB instance.
 
-It ensures that tests do not accidently overwrite data in real CaosDB
+It ensures that tests do not accidentally overwrite data in real CaosDB
 instances, as it checks whether the running CaosDB instance is actually the
 correct one, that
 should be used for these tests.
@@ -66,7 +66,7 @@ def _register_test():
         raise RuntimeError("Response from server for Info could not be interpreted.")
     if res > 0:
         raise RuntimeError("This instance of CaosDB contains entities already."
-                           "It must be empty in order to gegister a new test.")
+                           "It must be empty in order to register a new test.")
 
     print("Current host of CaosDB instance is: {}".format(
         db.connection.connection.get_connection()._delegate_connection.setup_fields["host"]))