Index: trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorServerTest.java
===================================================================
--- trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorServerTest.java	(revision 1229)
+++ trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorServerTest.java	(revision 1245)
@@ -594,5 +594,7 @@
             assertEquals(200, response.getStatusLine().getStatusCode());
             assertTrue
-                ((response.getEntity() == null) || (response.getEntity().getContentLength() == 0));
+                ((response.getEntity() == null) || (response.getEntity().getContentLength() == 0) ||
+                 ((response.getEntity().getContentLength() == 1) &&
+                  (response.getEntity().getContent().read() == ' ')));
         }
         finally {
Index: trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorTest.java
===================================================================
--- trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorTest.java	(revision 1229)
+++ trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorTest.java	(revision 1245)
@@ -782,5 +782,7 @@
             assertEquals(200, response.getStatusLine().getStatusCode());
             assertTrue
-                ((response.getEntity() == null) || (response.getEntity().getContentLength() == 0));
+                ((response.getEntity() == null) || (response.getEntity().getContentLength() == 0) ||
+                 ((response.getEntity().getContentLength() == 1) &&
+                  (response.getEntity().getContent().read() == ' ')));
         }
         finally {
