(t testing.TB, expected []database.User, found []database.GetUsersRow, msg string)
| 7992 | } |
| 7993 | |
| 7994 | func requireUsersMatch(t testing.TB, expected []database.User, found []database.GetUsersRow, msg string) { |
| 7995 | t.Helper() |
| 7996 | require.ElementsMatch(t, expected, database.ConvertUserRows(found), msg) |
| 7997 | } |
| 7998 | |
| 7999 | // TestGetRunningPrebuiltWorkspaces ensures the correct behavior of the |
| 8000 | // GetRunningPrebuiltWorkspaces query. |
no test coverage detected