From 70e305a918fcf193009831d4e89aa8c386df3dc4 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Tue, 29 Mar 2016 09:24:08 +0200 Subject: Ported / fixed most old tests --- tests/unit/Data/TableGateway/MagicCallTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/unit/Data/TableGateway/MagicCallTest.php') diff --git a/tests/unit/Data/TableGateway/MagicCallTest.php b/tests/unit/Data/TableGateway/MagicCallTest.php index 56cc85b3..caf10019 100644 --- a/tests/unit/Data/TableGateway/MagicCallTest.php +++ b/tests/unit/Data/TableGateway/MagicCallTest.php @@ -1,18 +1,18 @@ add_record1(); $this->add_record2(); $result = $this->getGateway()->findByUsername("record2"); - $this->assertEqual($result['username'], 'record2'); + $this->assertEquals($result['username'], 'record2'); } function test_combined_and_or() @@ -20,7 +20,7 @@ class MagicCallTest extends BaseGatewayTest $this->add_record1(); $this->add_record2(); $result = $this->getGateway()->findAllByUsername_OR_phone('Username', '45233')->readAll(); - $this->assertEqual(2, count($result)); + $this->assertEquals(2, count($result)); } function test_no_result() @@ -28,6 +28,6 @@ class MagicCallTest extends BaseGatewayTest $this->add_record1(); $this->add_record2(); $result = $this->getGateway()->findAllByUsername_and_phone('Username', '45233')->readAll(); - $this->assertEqual(0, count($result)); + $this->assertEquals(0, count($result)); } } \ No newline at end of file -- cgit v1.2.3