1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-11 08:06:49 +02:00

Fix for copyRow

This commit is contained in:
Cameron 2019-02-12 12:04:18 -08:00
parent cc1493833d
commit 8bb6c442a2

View File

@ -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);