diff --git a/test/decoupled/2p/test_impes_problem.hh b/test/decoupled/2p/test_impes_problem.hh
index f0b334c87d9876606280070695582f40e1a4d93a..fbfa5ac2865ae6701b29f1a3685bf9649e22b0b5 100644
--- a/test/decoupled/2p/test_impes_problem.hh
+++ b/test/decoupled/2p/test_impes_problem.hh
@@ -144,7 +144,7 @@ SET_SCALAR_PROP(IMPESTestProblem, CFLFactor, 0.95);
  * and there is free outflow on the right side.
  *
  * To run the simulation execute the following line in shell:
- * <tt>./test_2p 1e8</tt>,
+ * <tt>./test_impes 1e8</tt>,
  * where the argument defines the simulation endtime.
  */
 template<class TypeTag = TTAG(IMPESTestProblem)>
diff --git a/test/decoupled/2p/test_transport_problem.hh b/test/decoupled/2p/test_transport_problem.hh
index 8695f6efd8556dce6176beb83a6cbaa9e83553ac..135b1968265b5591962b77966ce12f79159999a0 100644
--- a/test/decoupled/2p/test_transport_problem.hh
+++ b/test/decoupled/2p/test_transport_problem.hh
@@ -32,7 +32,7 @@
 #include <dune/grid/uggrid.hh>
 #endif
 
-#include <dune/grid/io/file/dgfparser/dgfug.hh>
+#include <dune/grid/io/file/dgfparser.hh>
 
 #include <dumux/material/fluidsystems/liquidphase.hh>
 #include <dumux/material/components/unit.hh>
@@ -60,7 +60,7 @@ NEW_TYPE_TAG(TransportTestProblem, INHERITS_FROM(DecoupledModel, Transport));
 // Set the grid type
 SET_PROP(TransportTestProblem, Grid)
 {
-	typedef Dune::UGGrid<2> type;
+	typedef Dune::YaspGrid<2> type;
 };
 
 // Set the problem property
@@ -116,7 +116,6 @@ SET_SCALAR_PROP(TransportTestProblem, CFLFactor, 1.0);
  *
  * \brief test problem for the explicit transport model
  *
- *
  * A unit "fluid" is injected from the left side into a rectangular 2D
  * domain also this testing fluid. Upper and lower boundary are closed (Neumann = 0),
  * and there is free outflow on the right side.
@@ -125,7 +124,7 @@ SET_SCALAR_PROP(TransportTestProblem, CFLFactor, 1.0);
  * pressure field being solved.
  *
  * To run the simulation execute the following line in shell:
- * <tt>./test_2p 16000</tt>,
+ * <tt>./test_transport grids/test_transport.dgf 16000</tt>,
  * where the argument defines the simulation endtime.
  */
 template<class TypeTag = TTAG(TransportTestProblem)>