We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3c0e4e commit 9efedddCopy full SHA for 9efeddd
tests/system/Database/Live/PingTest.php
@@ -60,7 +60,7 @@ public function testPingAfterReconnect(): void
60
public function testPingCanBeUsedToCheckConnectionBeforeQuery(): void
61
{
62
if ($this->db->ping()) {
63
- $sql = $this->db->DBDriver === 'OCI8' ? 'SELECT 1 FROM DUAL' : 'SELECT 1';
+ $sql = $this->db->DBDriver === 'OCI8' ? 'SELECT 1 FROM DUAL' : 'SELECT 1';
64
$result = $this->db->query($sql);
65
$this->assertNotFalse($result);
66
} else {
0 commit comments