From 85e12114ad8f4f8022d63a02e8c01cab0c1d6ad2 Mon Sep 17 00:00:00 2001 From: Khushi Jain Date: Fri, 31 May 2024 12:25:49 +0530 Subject: [PATCH] Update bridges/otelzap/core_test.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Robert PajÄ…k --- bridges/otelzap/core_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/otelzap/core_test.go b/bridges/otelzap/core_test.go index 0c19cc0a7d6..82e6a23b8a6 100644 --- a/bridges/otelzap/core_test.go +++ b/bridges/otelzap/core_test.go @@ -66,7 +66,7 @@ func TestCore(t *testing.T) { rec.Reset() - t.Run("Test 'With` method for nested child loggers ", func(t *testing.T) { + t.Run("WithMultiple", func(t *testing.T) { testCases := [][]string{{"test1", "value1"}, {"test2", "value2"}, {"test3", "value3"}} childlogger := logger.With(zap.String(testCases[0][0], testCases[0][1])) childlogger2 := childlogger.With(zap.String(testCases[1][0], testCases[1][1]))