2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 05:27:55 +00:00

[#1074] minor changes

This commit is contained in:
Razvan Becheriu 2020-02-05 22:59:09 +02:00
parent a67b77a7cc
commit c7949485a7
3 changed files with 13 additions and 13 deletions

View File

@ -341,8 +341,8 @@ TEST(CqlOpenTest, OpenDatabase) {
// Schema needs to be created for the test to work.
createCqlSchema();
// Check that lease manager open the database opens correctly and tidy up.
// If it fails, print the error message.
// Check that lease manager opens the database correctly and tidy up. If it
// fails, print the error message.
try {
LeaseMgrFactory::create(validCqlConnectionString());
EXPECT_NO_THROW((void)LeaseMgrFactory::instance());
@ -354,7 +354,7 @@ TEST(CqlOpenTest, OpenDatabase) {
<< "*** before the CQL tests will run correctly.\n";
}
// Check that lease manager open the database opens correctly with a longer
// Check that lease manager opens the database correctly with a longer
// timeout. If it fails, print the error message.
try {
// CQL specifies the timeout values in ms, not seconds. Therefore

View File

@ -117,8 +117,8 @@ TEST(MySqlOpenTest, OpenDatabase) {
// Schema needs to be created for the test to work.
createMySQLSchema(true);
// Check that lease manager open the database opens correctly and tidy up.
// If it fails, print the error message.
// Check that lease manager opens the database correctly and tidy up. If it
// fails, print the error message.
try {
LeaseMgrFactory::create(validMySQLConnectionString());
EXPECT_NO_THROW((void)LeaseMgrFactory::instance());
@ -130,7 +130,7 @@ TEST(MySqlOpenTest, OpenDatabase) {
<< "*** before the MySQL tests will run correctly.\n";
}
// Check that lease manager open the database opens correctly with a longer
// Check that lease manager opens the database correctly with a longer
// timeout. If it fails, print the error message.
try {
string connection_string = validMySQLConnectionString() + string(" ") +
@ -210,8 +210,8 @@ TEST(MySqlOpenTest, OpenDatabaseMultiThreading) {
// Schema needs to be created for the test to work.
createMySQLSchema(true);
// Check that lease manager open the database opens correctly and tidy up.
// If it fails, print the error message.
// Check that lease manager opens the database correctly and tidy up. If it
// fails, print the error message.
try {
LeaseMgrFactory::create(validMySQLConnectionString());
EXPECT_NO_THROW((void)LeaseMgrFactory::instance());

View File

@ -117,8 +117,8 @@ TEST(PgSqlOpenTest, OpenDatabase) {
// Schema needs to be created for the test to work.
createPgSQLSchema();
// Check that lease manager open the database opens correctly and tidy up.
// If it fails, print the error message.
// Check that lease manager opens the database correctly and tidy up. If it
// fails, print the error message.
try {
LeaseMgrFactory::create(validPgSQLConnectionString());
EXPECT_NO_THROW((void)LeaseMgrFactory::instance());
@ -130,7 +130,7 @@ TEST(PgSqlOpenTest, OpenDatabase) {
<< "*** before the PostgreSQL tests will run correctly.\n";
}
// Check that lease manager open the database opens correctly with a longer
// Check that lease manager opens the database correctly with a longer
// timeout. If it fails, print the error message.
try {
string connection_string = validPgSQLConnectionString() + string(" ") +
@ -207,8 +207,8 @@ TEST(PgSqlOpenTest, OpenDatabaseMultiThreading) {
// Schema needs to be created for the test to work.
createPgSQLSchema();
// Check that lease manager open the database opens correctly and tidy up.
// If it fails, print the error message.
// Check that lease manager opens the database correctly and tidy up. If it
// fails, print the error message.
try {
LeaseMgrFactory::create(validPgSQLConnectionString());
EXPECT_NO_THROW((void)LeaseMgrFactory::instance());