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

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fprochazka committed May 19, 2017
1 parent 0ae435d commit a2d0c2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions tests/KdybyTests/Clock/ConstantProvider.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ConstantProviderTest extends Tester\TestCase

sleep(2);

Assert::type('\DateTimeImmutable', $datetime);
Assert::type('DateTimeImmutable', $datetime);
Assert::same($datetime, $tp->getDateTime());
Assert::same($date, $tp->getDate());
Assert::same($time->format('%h:%i:%s'), $tp->getTime()->format('%h:%i:%s'));
Expand All @@ -54,7 +54,7 @@ class ConstantProviderTest extends Tester\TestCase

sleep(2);

Assert::type('\DateTimeImmutable', $datetime);
Assert::type('DateTimeImmutable', $datetime);
Assert::same($datetime, $tp->getDateTime());
Assert::same($date, $tp->getDate());
Assert::same($time->format('%h:%i:%s'), $tp->getTime()->format('%h:%i:%s'));
Expand All @@ -73,7 +73,7 @@ class ConstantProviderTest extends Tester\TestCase

sleep(2);

Assert::type('\DateTimeImmutable', $datetime);
Assert::type('DateTimeImmutable', $datetime);
Assert::same($datetime, $tp->getDateTime());
Assert::same($date, $tp->getDate());
Assert::same($time->format('%h:%i:%s'), $tp->getTime()->format('%h:%i:%s'));
Expand Down
2 changes: 1 addition & 1 deletion tests/KdybyTests/Clock/CurrentProvider.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class CurrentProviderTest extends Tester\TestCase

sleep(2);

Assert::type('\DateTimeImmutable', $datetime);
Assert::type('DateTimeImmutable', $datetime);
Assert::same('00:00:00', $date->format('H:i:s'));
Assert::notEqual($datetime, $tp->getDateTime());
Assert::notEqual($time->format('%h:%i:%s'), $tp->getTime()->format('%h:%i:%s'));
Expand Down

0 comments on commit a2d0c2c

Please sign in to comment.