Update dependencies.

This commit is contained in:
2024-07-23 12:14:17 +01:00
parent 3d75e166af
commit f51cb018cf
6 changed files with 172 additions and 97 deletions
+2 -2
View File
@@ -39,7 +39,7 @@ var (
func (suite *Tests) SetupTest() {
err := os.Chdir(testCurrentPath)
if err != nil {
logger.Critical("main", map[string]interface{}{"error": err.Error(), "message": "Unable to change directory to test directory"})
logger.Critical(&libpack_logging.LogMessage{Message: "Unable to change directory to test directory", Pairs: map[string]any{"error": err}})
}
assert = assertions.New(suite.T())
params.varDebug = true
@@ -47,7 +47,7 @@ func (suite *Tests) SetupTest() {
}
func TestSuite(t *testing.T) {
logger = libpack_logging.NewLogger()
logger = libpack_logging.New()
testCurrentPath, _ = os.Getwd()
suite.Run(t, new(Tests))
}