diff --git a/src/test/java/io/jenkins/plugins/pipelinegraphview/utils/PipelineStepApiTest.java b/src/test/java/io/jenkins/plugins/pipelinegraphview/utils/PipelineStepApiTest.java index 0bd78bc94..6cf6cd7f6 100644 --- a/src/test/java/io/jenkins/plugins/pipelinegraphview/utils/PipelineStepApiTest.java +++ b/src/test/java/io/jenkins/plugins/pipelinegraphview/utils/PipelineStepApiTest.java @@ -546,9 +546,9 @@ public void gh362_stepsBeforeStepBlockGetValidStatus() throws Exception { Map> checks = new LinkedHashMap<>(); // Give large ranges - we are testing that the values are feasible, not that they are precise. - checks.put("Hello World", Arrays.asList(100L, 0L, 0L, 5000L, 500L, 500L)); - checks.put("1", Arrays.asList(100L, 0L, 10L, 5000L, 1500L, 1500L)); - checks.put("Goodbye World", Arrays.asList(0L, 0L, 0L, 5000L, 500L, 500L)); + checks.put("Hello World", Arrays.asList(100L, 0L, 0L, 10000L, 1000L, 1000L)); + checks.put("1", Arrays.asList(100L, 0L, 10L, 10000L, 3000L, 3000L)); + checks.put("Goodbye World", Arrays.asList(0L, 0L, 0L, 10000L, 1000L, 1000L)); for (AbstractPipelineNode n : finishedSteps) { assertThat(checks, hasEntry(is(n.getName()), notNullValue())); TestUtils.assertTimesInRange(n, checks.get(n.getName()));