Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/classes/IndexColumnTest.php')
-rw-r--r--test/classes/IndexColumnTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/classes/IndexColumnTest.php b/test/classes/IndexColumnTest.php
index 3ab72db02e..d82f60ab4e 100644
--- a/test/classes/IndexColumnTest.php
+++ b/test/classes/IndexColumnTest.php
@@ -45,7 +45,7 @@ class IndexColumnTest extends TestCase
public function testGetCompareData(): void
{
- $this->assertEquals(
+ $this->assertSame(
['Column_name' => '', 'Seq_in_index' => 1, 'Collation' => null, 'Sub_part' => null, 'Null' => ''],
$this->object->getCompareData()
);
@@ -56,7 +56,7 @@ class IndexColumnTest extends TestCase
'Sub_part' => 2,
'Null' => 'NO',
]);
- $this->assertEquals(
+ $this->assertSame(
[
'Column_name' => 'name',
'Seq_in_index' => 2,