Changeset 1729

Show
Ignore:
Timestamp:
07/22/08 01:15:57 (1 month ago)
Author:
mikey
Message:

fix test case

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • labs/incubator/src/test/php/net/stubbles/util/date/stubDateTestCase.php

    r1727 r1729  
    147147    /** 
    148148     * date handling should work as expected 
     149     * 
     150     * @test 
    149151     */ 
    150152    public function dateHandling() 
    151153    { 
    152         $this->assertEquals($this->timestamp, $this->date->getTime()); 
     154        $this->assertEquals($this->timestamp, $this->date->getTimestamp()); 
    153155        $this->assertEquals(date('r', $this->timestamp), $this->date->format('r')); 
    154156        $this->assertTrue($this->date->isAfter(new stubDate('yesterday')));