aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php
diff options
context:
space:
mode:
authorGravatar murgatroid99 <michael.lumish@gmail.com>2015-02-02 13:38:08 -0800
committerGravatar murgatroid99 <michael.lumish@gmail.com>2015-02-02 13:38:08 -0800
commitd9ba1db7fa94175e5c9c4df03ac9f540719bdfb9 (patch)
tree52ae543af592f9047c428be24013989f9c357518 /src/php
parent5accd24a76e439f4e68aa412814ebebf07fbb2f1 (diff)
Removed assertEquals from TimevalTest
Diffstat (limited to 'src/php')
-rwxr-xr-xsrc/php/tests/unit_tests/TimevalTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php/tests/unit_tests/TimevalTest.php b/src/php/tests/unit_tests/TimevalTest.php
index 6af9fba043..067254b55b 100755
--- a/src/php/tests/unit_tests/TimevalTest.php
+++ b/src/php/tests/unit_tests/TimevalTest.php
@@ -2,7 +2,7 @@
class TimevalTest extends PHPUnit_Framework_TestCase{
public function testCompareSame() {
$zero = Grpc\Timeval::zero();
- $this->assertEquals(0, Grpc\Timeval::compare($zero, $zero));
+ $this->assertSame(0, Grpc\Timeval::compare($zero, $zero));
}
public function testPastIsLessThanZero() {