From f2871266ad4378a69623a70ed864ee654c2dc7de Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Mon, 31 Mar 2025 09:05:58 +0200 Subject: [PATCH] Tests: Fix --- tests/cockroachdb.html | 10 ---------- tests/generate-pdo.php | 2 +- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/tests/cockroachdb.html b/tests/cockroachdb.html index 5173e140..7b860166 100644 --- a/tests/cockroachdb.html +++ b/tests/cockroachdb.html @@ -345,16 +345,6 @@ verifyTextPresent220 - - - - - - - - -
Sequences
open/adminer/?pgsql=localhost:26257&username=ODBC&db=adminer_test&ns=public
clicklink=albums_id_seq
typenamealbums_id_seq2
clickAndWait//input[@value='Save']
verifyTextPresentSequence has been altered.
- diff --git a/tests/generate-pdo.php b/tests/generate-pdo.php index 4f65d308..99c3d8e2 100755 --- a/tests/generate-pdo.php +++ b/tests/generate-pdo.php @@ -5,7 +5,7 @@ chdir(__DIR__); foreach (glob("*.html") as $filename) { - if (!preg_match('~^pdo-|elastic~', $filename)) { + if (!preg_match('~^pdo-|elastic|screenshots~', $filename)) { $file = file_get_contents($filename); $file = preg_replace_callback('~/(adminer(/sqlite)?|editor/example)\.php(\??)~', function ($match) { return "/$match[1].php?ext=pdo" . ($match[3] ? "&" : "");
Scheme