mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/14168] Fix resync tests on sqlite3
PHPBB3-14168
This commit is contained in:
parent
b00c7511f0
commit
c6f9e3a966
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ class phpbb_attachment_resync_test extends \phpbb_database_test_case
|
|||
$data = $this->db->sql_fetchrow($result);
|
||||
$this->db->sql_freeresult($result);
|
||||
|
||||
$this->assertSame($exist_data, $data);
|
||||
$this->assertEquals($exist_data, $data);
|
||||
|
||||
$this->resync->resync($type, $ids);
|
||||
|
||||
|
@ -69,6 +69,6 @@ class phpbb_attachment_resync_test extends \phpbb_database_test_case
|
|||
$data = $this->db->sql_fetchrow($result);
|
||||
$this->db->sql_freeresult($result);
|
||||
|
||||
$this->assertSame($resync_data, $data);
|
||||
$this->assertEquals($resync_data, $data);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue