Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Revert "[JENKINS-38457] Temporarily suppressing part of test which sh…
…ows the regression."

This reverts commit 4798a81.
  • Loading branch information
jglick committed Sep 22, 2016
1 parent 4798a81 commit 0ca8da7
Showing 1 changed file with 1 addition and 5 deletions.
@@ -1,13 +1,12 @@
package org.jenkinsci.plugins.workflow.cps.steps;

import com.google.common.collect.ImmutableSortedSet;
import hudson.AbortException;
import hudson.model.Result;
import hudson.FilePath;
import java.util.ArrayList;
import java.util.Arrays;
import static java.util.Arrays.*;
import java.util.List;
import java.util.TreeSet;
import org.apache.commons.io.IOUtils;
import org.jenkinsci.plugins.workflow.SingleJobTestBase;
import org.jenkinsci.plugins.workflow.actions.ThreadNameAction;
Expand Down Expand Up @@ -407,10 +406,7 @@ private void shouldHaveParallelStepsInTheOrder(String... expected) {
actual.add(a.getThreadName());
}

/* TODO JENKINS-38457 broken ordering in FlowGraphTable:
assertEquals(Arrays.asList(expected),actual);
*/
assertEquals(ImmutableSortedSet.copyOf(expected), new TreeSet<>(actual));
}

/**
Expand Down

0 comments on commit 0ca8da7

Please sign in to comment.