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
changefeedccl: fix reversed args for containment check in test logic
Fix a testing bug introduced in #131545 where the `Contains` check
arguments were reversed. The error string being _searched_ should
precede the string being _searched for_. The examples from the API docs:
```
// require.Contains(t, "Hello World", "World")
// require.Contains(t, ["Hello", "World"], "World")
// require.Contains(t, {"Hello": "World"}, "Hello")
```
Release note: None
0 commit comments