diff --git a/alfresco-health-processor-platform/src/test/java/eu/xenit/alfresco/healthprocessor/webscripts/console/model/CycleProgressViewTest.java b/alfresco-health-processor-platform/src/test/java/eu/xenit/alfresco/healthprocessor/webscripts/console/model/CycleProgressViewTest.java index 98225d7..4a4cc9d 100644 --- a/alfresco-health-processor-platform/src/test/java/eu/xenit/alfresco/healthprocessor/webscripts/console/model/CycleProgressViewTest.java +++ b/alfresco-health-processor-platform/src/test/java/eu/xenit/alfresco/healthprocessor/webscripts/console/model/CycleProgressViewTest.java @@ -91,7 +91,7 @@ public Optional getEstimatedCompletion() { CycleProgressView indexingProgressView = new CycleProgressView(mockIndexingProgress); - assertThat(indexingProgressView.getProgress(), is(equalTo("10,00%"))); + assertThat(indexingProgressView.getProgress().replaceAll(",", "."), is(equalTo("10.00%"))); } @Test