summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql/tests
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-09-18 14:28:32 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-09-18 14:28:32 +0200
commitc5401854fcea27ff9aabfd0682ff4d81bbb3c888 (patch)
treef6b8e94b80d682da470133f0771fa83182d2226e /ext/pdo_pgsql/tests
parentbfceb710becab71d7d561d64667be4c9668b6a9c (diff)
downloadphp-git-c5401854fcea27ff9aabfd0682ff4d81bbb3c888.tar.gz
Run tidy
This should fix most of the remaining issues with tabs and spaces being mixed in tests.
Diffstat (limited to 'ext/pdo_pgsql/tests')
-rw-r--r--ext/pdo_pgsql/tests/bug62479.phpt10
-rw-r--r--ext/pdo_pgsql/tests/bug68199.phpt2
-rw-r--r--ext/pdo_pgsql/tests/bug69362.phpt10
3 files changed, 11 insertions, 11 deletions
diff --git a/ext/pdo_pgsql/tests/bug62479.phpt b/ext/pdo_pgsql/tests/bug62479.phpt
index 3e78098d0c..afe8978ec3 100644
--- a/ext/pdo_pgsql/tests/bug62479.phpt
+++ b/ext/pdo_pgsql/tests/bug62479.phpt
@@ -19,17 +19,17 @@ $pass = 'testpass';
// Assume that if we can't create or drop a user, this test needs to be skipped
try {
- $db->exec("DROP USER IF EXISTS $user");
- $db->exec("CREATE USER $user WITH PASSWORD '$pass'");
+ $db->exec("DROP USER IF EXISTS $user");
+ $db->exec("CREATE USER $user WITH PASSWORD '$pass'");
} catch (PDOException $e) {
- die("skip You need CREATEUSER permissions to run the test");
+ die("skip You need CREATEUSER permissions to run the test");
}
// Peer authentication might prevent the test from properly running
try {
- $testConn = new PDO($dsn, $user, $pass);
+ $testConn = new PDO($dsn, $user, $pass);
} catch (PDOException $e) {
- echo "skip ".$e->getMessage();
+ echo "skip ".$e->getMessage();
}
$db->exec("DROP USER $user");
diff --git a/ext/pdo_pgsql/tests/bug68199.phpt b/ext/pdo_pgsql/tests/bug68199.phpt
index 0c79faeeb9..25a200365a 100644
--- a/ext/pdo_pgsql/tests/bug68199.phpt
+++ b/ext/pdo_pgsql/tests/bug68199.phpt
@@ -9,7 +9,7 @@ PDOTest::skip();
$db = PDOTest::factory();
if (version_compare($db->getAttribute(PDO::ATTR_SERVER_VERSION), '9.0.0') < 0) {
- die("skip Requires 9.0+");
+ die("skip Requires 9.0+");
}
?>
diff --git a/ext/pdo_pgsql/tests/bug69362.phpt b/ext/pdo_pgsql/tests/bug69362.phpt
index 1fd4e80e7d..c1ed7e615f 100644
--- a/ext/pdo_pgsql/tests/bug69362.phpt
+++ b/ext/pdo_pgsql/tests/bug69362.phpt
@@ -19,17 +19,17 @@ $pass = 'testpass';
// Assume that if we can't create or drop a user, this test needs to be skipped
try {
- $db->exec("DROP USER IF EXISTS $user");
- $db->exec("CREATE USER $user WITH PASSWORD '$pass'");
+ $db->exec("DROP USER IF EXISTS $user");
+ $db->exec("CREATE USER $user WITH PASSWORD '$pass'");
} catch (PDOException $e) {
- die("skip You need CREATEUSER permissions to run the test");
+ die("skip You need CREATEUSER permissions to run the test");
}
// Peer authentication might prevent the test from properly running
try {
- $testConn = new PDO($dsn, $user, $pass);
+ $testConn = new PDO($dsn, $user, $pass);
} catch (PDOException $e) {
- echo "skip ".$e->getMessage();
+ echo "skip ".$e->getMessage();
}
$db->exec("DROP USER $user");