3
0

Fix broken expr test due to function export

This commit is contained in:
Tomaž Jerman
2022-11-23 16:13:03 +01:00
committed by Jože Fortun
parent 107d7a70ce
commit 863ee99515

View File

@@ -388,7 +388,7 @@ func Test_has(t *testing.T) {
err error
)
loc, err = has(tc.arr, tc.val...)
loc, err = Has(tc.arr, tc.val...)
req.NoError(err)
req.Equal(tc.expect, loc)
})