You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require.Contains(t, err.Message, "Query array parameter 'testQueryParam' has too many items")
1002
+
require.Contains(t, err.Reason, "The query parameter (which is an array) 'testQueryParam' has a maximum item length of 10, however the request provided 25 items")
1003
+
require.Contains(t, err.HowToFix, "Reduce the number of items in the array to 10 or less")
require.Contains(t, err.Message, "Query array parameter 'testQueryParam' does not have enough items")
1028
+
require.Contains(t, err.Reason, "The query parameter (which is an array) 'testQueryParam' has a minimum items length of 10, however the request provided 5 items")
1029
+
require.Contains(t, err.HowToFix, "Increase the number of items in the array to 10 or more")
0 commit comments