mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-10 23:15:04 +00:00
This commit changes TokenAuthIntegTests so all occurrences of assertThat(x.size(), equalTo(0)); become assertThat(x, empty()); This means that the assertion failure message will include the contents of the list (`x`) instead of just its size, which facilitates easier failure diagnosis. Relates: #56903 Backport of: #60496