From 074049936c7edc28fd26ce70f9a8b27a0fb84772 Mon Sep 17 00:00:00 2001 From: Syed Nihal Date: Mon, 31 Jul 2023 16:02:32 +0530 Subject: [PATCH] Migration to go testing framework. Fixes issue 106 Migrating from "github.com/bmizerany/assert" (which is not maintained now) to "github.com/stretchr/testify/assert" Fix for https://github.com/fluent/fluent-logger-golang/issues/106 --- fluent/fluent_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluent/fluent_test.go b/fluent/fluent_test.go index 00a6086..0851893 100644 --- a/fluent/fluent_test.go +++ b/fluent/fluent_test.go @@ -13,7 +13,7 @@ import ( "testing" "time" - "github.com/bmizerany/assert" + "github.com/stretchr/testify/assert" "github.com/tinylib/msgp/msgp" )