RIC:1060: Change in PTL
[ric-plt/sdl.git] / tst / databaseconfiguration_test.cpp
index 67bb6ce..9fc1a50 100644 (file)
    limitations under the License.
 */
 
+/*
+ * This source code is part of the near-RT RIC (RAN Intelligent Controller)
+ * platform project (RICP).
+*/
+
 #include <gtest/gtest.h>
 #include "private/databaseconfiguration.hpp"
 
@@ -47,7 +52,7 @@ TEST(DatabaseConfigurationTest, CanThrowAndCatchInvalidDbType)
     }
     catch (const std::exception& e)
     {
-        EXPECT_STREQ("invalid database type: 'someBadDbType'. Allowed types are: 'redis-standalone' or 'redis-cluster'", e.what());
+        EXPECT_STREQ("invalid database type: 'someBadDbType'. Allowed types are: 'redis-standalone', 'redis-cluster', 'redis-sentinel' or 'sdl-cluster'", e.what());
     }
 }