From 9d49708f05c3caae388d1477ca0b747098913444 Mon Sep 17 00:00:00 2001 From: Gil Raphaelli Date: Tue, 12 Dec 2023 11:06:46 -0500 Subject: [PATCH] [chore] clean up IsDouble error test (#29749) **Description:** minor update to a test, noticed while adding an unrelated converter --- pkg/ottl/ottlfuncs/func_is_double_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ottl/ottlfuncs/func_is_double_test.go b/pkg/ottl/ottlfuncs/func_is_double_test.go index b4268024b03e..f0e3e7409fc1 100644 --- a/pkg/ottl/ottlfuncs/func_is_double_test.go +++ b/pkg/ottl/ottlfuncs/func_is_double_test.go @@ -71,7 +71,7 @@ func Test_IsDouble(t *testing.T) { // nolint:errorlint func Test_IsDouble_Error(t *testing.T) { - exprFunc := isString[any](&ottl.StandardStringGetter[any]{ + exprFunc := isDouble[any](&ottl.StandardFloatGetter[any]{ Getter: func(context.Context, any) (any, error) { return nil, ottl.TypeError("") },