Ignore:
Timestamp:
06/28/13 15:47:03 (11 years ago)
Author:
pharms
Message:
  • corrected test cases
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-htmlmonitor-test/src/test/java/de/ugoe/cs/autoquest/htmlmonitor/HtmlMonitorServerTest.java

    r1078 r1245  
    594594            assertEquals(200, response.getStatusLine().getStatusCode()); 
    595595            assertTrue 
    596                 ((response.getEntity() == null) || (response.getEntity().getContentLength() == 0)); 
     596                ((response.getEntity() == null) || (response.getEntity().getContentLength() == 0) || 
     597                 ((response.getEntity().getContentLength() == 1) && 
     598                  (response.getEntity().getContent().read() == ' '))); 
    597599        } 
    598600        finally { 
Note: See TracChangeset for help on using the changeset viewer.