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:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2020-07-11 00:06:29 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2020-07-11 00:06:29 +0300
commit3b285ff17e26faec8e3cc2ed9058f0f82ad27708 (patch)
treeb1cdfca7d52fdc0d266b0bd95b78432c3c94d6b6 /test/selenium
parent75443758672002e4afe2041c73db46a1c1e55e9f (diff)
Use identical operator for non-empty strings
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'test/selenium')
-rw-r--r--test/selenium/ExportTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/selenium/ExportTest.php b/test/selenium/ExportTest.php
index 51cb8ab167..947601029a 100644
--- a/test/selenium/ExportTest.php
+++ b/test/selenium/ExportTest.php
@@ -159,7 +159,7 @@ class ExportTest extends TestBase
$this->scrollIntoView('radio_view_as_text');
$this->byCssSelector('label[for=radio_view_as_text]')->click();
- if ($plugin == 'SQL') {
+ if ($plugin === 'SQL') {
if ($type !== 'db') {
$this->scrollIntoView('radio_sql_structure_or_data_structure_and_data');
$this->byCssSelector('label[for=radio_sql_structure_or_data_structure_and_data]')->click();