From 0cb28b3f79b3705393a2a6d1aa8377f29f309df8 Mon Sep 17 00:00:00 2001 From: Xeronith Date: Mon, 1 May 2023 10:54:20 +0330 Subject: [PATCH] test(project): :test_tube: resolve default storage issue --- test/init_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/init_test.go b/test/init_test.go index 7e57210..465be32 100644 --- a/test/init_test.go +++ b/test/init_test.go @@ -30,7 +30,7 @@ func TestMain(main *testing.M) { logger.SetLevel(logging.LEVEL_SUPPRESS_SYS_COMP) // configuration configuration := settings.NewTestConfiguration() - configuration.GetMySQLConfiguration().SetDatabase("greatape") + configuration.GetPostgreSQLConfiguration().SetDatabase("greatape") // factories operationsFactory := operations.NewFactory() handlersFactory := handlers.NewFactory()