Skip to content

Commit

Permalink
Fix SpatialHeatmapFacetsTest
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmiley committed Nov 13, 2024
1 parent 0fba181 commit 6370577
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,11 @@ public void testClassicFacets() throws Exception { // AKA SimpleFacets
.findRecursive("facet_counts", "facet_heatmaps", "course", "gridLevel"));
assertTrue(
((NamedList<Object>)
response.getResponse().findRecursive("facet_counts", "facet_heatmaps", "course"))
.get("counts_" + courseFormat) != null);
response
.getResponse()
.findRecursive("facet_counts", "facet_heatmaps", "course"))
.indexOf("counts_" + courseFormat, 0)
>= 0);
}

// ------ Index data
Expand Down

0 comments on commit 6370577

Please sign in to comment.