From ae2f7c89bd7c0974c494457c2b66faa9ce1a0e85 Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Thu, 28 Mar 2024 06:34:40 +0100 Subject: [PATCH] helpers_test.go: changed some comments --- helpers_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helpers_test.go b/helpers_test.go index daa40c3..a78cc50 100644 --- a/helpers_test.go +++ b/helpers_test.go @@ -28,7 +28,7 @@ func TestEvalStringA(t *testing.T) { {"a", uint8(1)}, {"b", int8(2)}, {"subtract", FuncTemplate(subtract)}, - // enforce coverage + // force coverage {"a16", uint16(1)}, {"b16", int16(2)}, {"a32", uint32(1)}, @@ -54,7 +54,7 @@ func TestEvalString(t *testing.T) { ctx.SetValue("a", uint8(1)) ctx.SetValue("b", int8(2)) ctx.SetValue("f", 2.0) - // enforce coverage + // force coverage ctx.SetValue("a16", uint16(1)) ctx.SetValue("b16", int16(2)) ctx.SetValue("a32", uint32(1)) @@ -64,7 +64,7 @@ func TestEvalString(t *testing.T) { ctx.SetValue("f32", float32(1.0)) ctx.SetValue("f64", float64(1.0)) - // enforce coverage + // force coverage ctx.GetFuncInfo("dummy") ctx.Call("dummy", []any{})