From 8bb6c442a2c302b66dae6293705dbc64419469cf Mon Sep 17 00:00:00 2001 From: Cameron <e107inc@gmail.com> Date: Tue, 12 Feb 2019 12:04:18 -0800 Subject: [PATCH] Fix for copyRow --- tests/unit/e_db_pdoTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/e_db_pdoTest.php b/tests/unit/e_db_pdoTest.php index 637d5c0b5..41a91a289 100644 --- a/tests/unit/e_db_pdoTest.php +++ b/tests/unit/e_db_pdoTest.php @@ -770,7 +770,7 @@ public function testDb_CopyRow() { $result = $this->db->db_CopyRow('news', '*', "news_id = 1"); - $this->assertEquals(3,$result); + $this->assertGreaterThan(1,$result); $result = $this->db->db_CopyRow('bla'); $this->assertFalse($result);