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:
authorWilliam Desportes <williamdes@wdes.fr>2021-02-17 16:21:53 +0300
committerWilliam Desportes <williamdes@wdes.fr>2021-02-17 16:21:53 +0300
commitda4f9667d24306339ef516dc9f54a3d996c6d684 (patch)
tree27486bb2f9e56a2637560c50cd7d74d8dc06ebc7 /test/selenium
parent2e63d8f99b7de15d3f24f8f025520c2e2e284c96 (diff)
Fix a casing issue on a phpunit function call
Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to 'test/selenium')
-rw-r--r--test/selenium/Database/TriggersTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/selenium/Database/TriggersTest.php b/test/selenium/Database/TriggersTest.php
index 6185f39935..46688d5d4f 100644
--- a/test/selenium/Database/TriggersTest.php
+++ b/test/selenium/Database/TriggersTest.php
@@ -225,7 +225,7 @@ class TriggersTest extends TestBase
$this->dbQuery(
'SHOW TRIGGERS FROM `' . $this->databaseName . '`;',
function (): void {
- $this->assertfalse($this->isElementPresent('className', 'table_results'));
+ $this->assertFalse($this->isElementPresent('className', 'table_results'));
}
);
}