We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51188c7 commit 204a037Copy full SHA for 204a037
src/test/java/io/jenkins/plugins/pipelinegraphview/utils/PipelineStepApiTest.java
@@ -546,9 +546,9 @@ public void gh362_stepsBeforeStepBlockGetValidStatus() throws Exception {
546
547
Map<String, List<Long>> checks = new LinkedHashMap<>();
548
// Give large ranges - we are testing that the values are feasible, not that they are precise.
549
- checks.put("Hello World", Arrays.asList(100L, 0L, 0L, 5000L, 500L, 500L));
550
- checks.put("1", Arrays.asList(100L, 0L, 10L, 5000L, 1500L, 1500L));
551
- 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));
552
for (AbstractPipelineNode n : finishedSteps) {
553
assertThat(checks, hasEntry(is(n.getName()), notNullValue()));
554
TestUtils.assertTimesInRange(n, checks.get(n.getName()));
0 commit comments