From 0b817d24aa9406880e53e0f7c59be4438b6be697 Mon Sep 17 00:00:00 2001 From: Will Roden Date: Thu, 14 Sep 2023 08:27:18 -0500 Subject: [PATCH] revert accidental test change --- path_test.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/path_test.go b/path_test.go index 0422a0b3..c0073cec 100644 --- a/path_test.go +++ b/path_test.go @@ -100,15 +100,10 @@ store: expected: float64(19.95), }, { - name: `$.store.'bicycle*unicycle.price`, + name: `$.store.'bicycle*unicycle'.price`, path: builder().Root().Child("store").Child(`bicycle*unicycle`).Child("price").Build(), expected: float64(20.25), }, - //{ - // name: `$.store.'bicycle*unicycle.price`, - // path: builder().Root().Child("store").Child(`bicycle*unicycle`).Child("price").Build(), - // expected: float64(20.25), - //}, } t.Run("PathString", func(t *testing.T) { for _, test := range tests {