diff --git a/ast/raw_test.go b/ast/raw_test.go index 1abe1f515..d862b830f 100644 --- a/ast/raw_test.go +++ b/ast/raw_test.go @@ -22,7 +22,7 @@ func TestCast(t *testing.T) { } func TestSpace(t *testing.T) { - v, err := NewSearcher(`[ true , 1 , 1.1 , false , null , "a" , [ 2 ], { "a" : 2 }, 2 ]`).GetValueByPath() + v, err := NewSearcher(`[ true , 1 , 1.1 , false , null , "a" , [ 2 ] , { "a" : 2 } , 2 ]`).GetValueByPath() require.NoError(t, err) vv, e := v.Index(0).Interface()