Changeset 2523

Show
Ignore:
Timestamp:
03/12/10 11:56:40 (5 months ago)
Author:
mikey
Message:

fix another flaky test

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • framework/trunk/src/test/php/net/stubbles/peer/http/stubHTTPRequestTestCase.php

    r2497 r2523  
    246246        $mockSocket->expects($this->at(6)) 
    247247                   ->method('write') 
    248                    ->with($this->equalTo('Date: ' . gmdate('D, d M Y H:i:s') . ' GMT' . stubHTTPConnection::END_OF_LINE)); 
     248                   ->with($this->stringStartsWith('Date: ')); 
    249249        $httpRequest->callProcessHeader($mockSocket, stubHTTPRequest::METHOD_GET, stubHTTPRequest::VERSION_1_0); 
    250250    }