> @@ -294,9 +298,9 @@ public void testUpdateDatabagItem() throws Exception {
> public void testListSearchIndexes() throws Exception {
> Set<String> indexes = api.listSearchIndexes();
> assertNotNull(indexes);
> - assert indexes.contains("node") : indexes;
> - assert indexes.contains("client") : indexes;
> - assert indexes.contains("role") : indexes;
> + assertTrue(indexes.contains("node"));
> + assertTrue(indexes.contains("client"));
> + assertTrue(indexes.contains("role"));
Add messages?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-chef/pull/10/files#r6040175