diff --git a/tests/test27cells.c b/tests/test27cells.c
index bcd964620c5c729094a74c79275cdb66180f8dd3..504c07b4db391a2bc6fa60b7ec354367008aeec1 100644
--- a/tests/test27cells.c
+++ b/tests/test27cells.c
@@ -126,7 +126,7 @@ struct cell *make_cell(size_t n, double *offset, double size, double h,
   cell->sorted = 0;
   cell->sort = NULL;
   cell->sortsize = 0;
-  runner_dosort(NULL, cell, 0x1FFF, 0);
+  runner_do_sort(NULL, cell, 0x1FFF, 0);
 
   return cell;
 }
diff --git a/tests/testPair.c b/tests/testPair.c
index 07e576332f81b0471f35f09dfcda21ad535adc8b..a70cb381fd9a6dec061a100eeba17bfd54b0e973 100644
--- a/tests/testPair.c
+++ b/tests/testPair.c
@@ -91,7 +91,7 @@ struct cell *make_cell(size_t n, double *offset, double size, double h,
   cell->sorted = 0;
   cell->sort = NULL;
   cell->sortsize = 0;
-  runner_dosort(NULL, cell, 0x1FFF, 0);
+  runner_do_sort(NULL, cell, 0x1FFF, 0);
 
   return cell;
 }
diff --git a/tests/testSPHStep.c b/tests/testSPHStep.c
index 74c151c97d1c6f883a5c0eb0877cd126b42fbc56..3af0c6ad1afdeab749a378153fd1a8e016f29659 100644
--- a/tests/testSPHStep.c
+++ b/tests/testSPHStep.c
@@ -141,7 +141,7 @@ int main() {
 
   /* Compute density */
   runner_doself1_density(&r, ci);
-  runner_do_cellhierarchy(&r, ci);
+  runner_do_ghost(&r, ci);
 
   message("h=%f rho=%f N_ngb=%f", p->h, p->rho, p->density.wcount);
   message("c=%f", p->force.c);
diff --git a/tests/testTimeIntegration.c b/tests/testTimeIntegration.c
index f3802888bccc40a424d659cde2605d12c9268e47..03893daf3530df040e5a5630bc6dc1d930ddcd1b 100644
--- a/tests/testTimeIntegration.c
+++ b/tests/testTimeIntegration.c
@@ -115,10 +115,10 @@ int main() {
     c.parts[0].a_hydro[1] = -(G * M_sun * c.parts[0].x[1] / r * r * r);
 
     /* Kick... */
-    runner_dokick(&run, &c, 0);
+    runner_do_kick(&run, &c, 0);
 
     /* Drift... */
-    runner_dodrift(&run, &c, 0);
+    runner_do_drift(&run, &c, 0);
   }
 
   /* Clean-up */