Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions srv/src/test/java/my/bookshop/GenreHierarchyTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ void testFilterExpandLevels() throws Exception {
@Test
@WithMockUser(username = "admin")
void testStartTwoLevelsOrderByDescHANA() throws Exception {
assumeThat(env.getActiveProfiles()).contains("hybrid");
assumeThat(env.getActiveProfiles()).contains("cloud");
client.perform(get(genresURI
+ "?$select=DrillState,ID,name,DistanceFromRoot"
+ "&$apply=orderby(name desc)/"
Expand All @@ -234,6 +234,6 @@ void testStartTwoLevelsOrderByDescHANA() throws Exception {
}

private boolean isOnHana() {
return env.acceptsProfiles(Profiles.of("hybrid"));
return env.acceptsProfiles(Profiles.of("cloud"));
}
}
}
Loading