diff --git a/tests/bootstrap/environment.php b/tests/bootstrap/environment.php index 6e23538367b..b00f8c395ee 100644 --- a/tests/bootstrap/environment.php +++ b/tests/bootstrap/environment.php @@ -6,7 +6,7 @@ if (!Environment::getEnv('SS_DATABASE_CLASS') && !Environment::getEnv('SS_DATABASE_USERNAME')) { // The default settings let us define the database config via environment vars - // Database connection, including PDO and legacy ORM support + // Database connection, including legacy ORM support switch (Environment::getEnv('DB')) { case "PGSQL"; $pgDatabaseClass = 'PostgreSQLDatabase'; diff --git a/tests/php/ORM/DatabaseTest.php b/tests/php/ORM/DatabaseTest.php index a1cda42b436..fb01e1085ca 100644 --- a/tests/php/ORM/DatabaseTest.php +++ b/tests/php/ORM/DatabaseTest.php @@ -193,7 +193,7 @@ public function testFieldTypes() $obj->MyInt = 5; $obj->MyFloat = 6.0; - // Note: in non-PDO SQLite, whole numbers of a decimal field will be returned as integers rather than floats + // Note: in SQLite, whole numbers of a decimal field will be returned as integers rather than floats $obj->MyDecimal = 7.1; $obj->MyBoolean = true; $obj->write();