From 1471a933ecf68bfca5baa99dad5fa77ba5847e10 Mon Sep 17 00:00:00 2001 From: tidwall Date: Fri, 1 Nov 2019 05:15:43 -0700 Subject: [PATCH] Rename test --- gjson_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gjson_test.go b/gjson_test.go index 62d88a3..e7b4cfa 100644 --- a/gjson_test.go +++ b/gjson_test.go @@ -1991,7 +1991,7 @@ func TestSingleModifier(t *testing.T) { assert(t, Get(data, "\\@key").String() == "value") } -func TestModifierInSubSelector(t *testing.T) { +func TestModifiersInMultipaths(t *testing.T) { AddModifier("case", func(json, arg string) string { if arg == "upper" { return strings.ToUpper(json)