From 5e7a4c4819ee29effb330b5d08bea005540e32ea Mon Sep 17 00:00:00 2001 From: reiniero Date: Tue, 17 Jun 2014 13:59:04 +0000 Subject: [PATCH] fcl-db: cosmetic: error message language fixes git-svn-id: trunk@27988 - --- packages/fcl-db/tests/testfieldtypes.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/fcl-db/tests/testfieldtypes.pas b/packages/fcl-db/tests/testfieldtypes.pas index 0c93c2e6af..40f7b085b7 100644 --- a/packages/fcl-db/tests/testfieldtypes.pas +++ b/packages/fcl-db/tests/testfieldtypes.pas @@ -479,7 +479,7 @@ var i : byte; begin - if SQLServerType<>ssPostgreSQL then Ignore('This test does only apply to Postgres, since others don''t support varchars without length given'); + if SQLServerType<>ssPostgreSQL then Ignore('This test only applies to Postgres, since others don''t support varchars without length given'); CreateTableWithFieldType(ftString,'VARCHAR'); TestFieldDeclaration(ftString,dsMaxStringSize+1); @@ -1225,7 +1225,7 @@ procedure TTestFieldTypes.TestClearUpdateableStatus; // Test if CanModify is correctly disabled in case of a select query without // a from-statement. begin - if not (SQLServerType in [ssMySQL]) then Ignore('This test does only apply to MySQL because the used SQL-statement is MySQL only.'); + if not (SQLServerType in [ssMySQL]) then Ignore('This test only applies to MySQL because the used SQL-statement is MySQL only.'); with TSQLDBConnector(DBConnector) do begin with (GetNDataset(false,5) as TSQLQuery) do