Fix unit test

This commit is contained in:
René Pfeuffer
2019-05-16 13:06:08 +02:00
parent 8e11bdec6e
commit 510ea51e76

View File

@@ -332,7 +332,7 @@ public class RepositoryRootResourceTest extends RepositoryTestBase {
.hasSize(1) .hasSize(1)
.allSatisfy(p -> { .allSatisfy(p -> {
assertThat(p.getName()).isEqualTo("trillian"); assertThat(p.getName()).isEqualTo("trillian");
assertThat(p.getVerbs()).containsExactly("*"); assertThat(p.getRole()).isEqualTo("OWNER");
}); });
} }