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
path: root/test
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2022-07-21 02:57:41 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2022-07-21 02:57:41 +0300
commit31bfbbe816ecbef13a1f050df15768729782a507 (patch)
treed8f6b24536b10d9776cf0a8cf507cacb4ba25240 /test
parentc906f43e9a9eb4bff9f1437df1e364a52ee8d9d1 (diff)
parentdbe3db564e53758751c388e295f79474e4638d2e (diff)
Merge branch 'QA_5_2'
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'test')
-rw-r--r--test/classes/Controllers/Table/Structure/ChangeControllerTest.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/classes/Controllers/Table/Structure/ChangeControllerTest.php b/test/classes/Controllers/Table/Structure/ChangeControllerTest.php
index ad7a81e6c5..b1a2b3cefe 100644
--- a/test/classes/Controllers/Table/Structure/ChangeControllerTest.php
+++ b/test/classes/Controllers/Table/Structure/ChangeControllerTest.php
@@ -58,6 +58,7 @@ class ChangeControllerTest extends AbstractTestCase
);
$method->invokeArgs($ctrl, [null]);
+ $actual = $response->getHTMLResult();
$this->assertStringContainsString(
'<input id="field_0_1"' . "\n"
. ' type="text"' . "\n"
@@ -67,7 +68,8 @@ class ChangeControllerTest extends AbstractTestCase
. ' title="Column"' . "\n"
. ' size="10"' . "\n"
. ' value="_id">' . "\n",
- $response->getHTMLResult()
+ $actual
);
+ $this->assertStringContainsString('id="enumEditorModal"', $actual);
}
}