Skip to content
This repository has been archived by the owner on Jan 31, 2019. It is now read-only.

Commit

Permalink
changed: using asserCount instead of assertEquals
Browse files Browse the repository at this point in the history
  • Loading branch information
Ephigenia committed Jun 26, 2012
1 parent 55ce196 commit d0ef3ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ephFrame/test/util/TimerTest.php
Expand Up @@ -21,7 +21,7 @@ public function testStep()
$this->assertTrue($elapsed1 > 0.0001);
$this->timer->step('second');
$this->assertTrue($this->timer->elapsed > $elapsed1);
$this->assertTrue(count($this->timer->steps) == 2);
$this->assertCount(2, $this->timer->steps);
$this->assertInternalType('float', $this->timer->steps['second']);
}

Expand Down

0 comments on commit d0ef3ea

Please sign in to comment.