Skip to content

Commit

Permalink
[JENKINS-16620] Any should not be able to get changes after resetting…
Browse files Browse the repository at this point in the history
… a baseline
  • Loading branch information
wolfgarnet committed Feb 5, 2013
1 parent b79b000 commit 9c9f55c
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -14,6 +14,7 @@
import org.junit.Rule;
import org.junit.Test;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

/**
Expand Down Expand Up @@ -62,7 +63,7 @@ public void jenkins16620Any() throws Exception {

PollingResult result = project.poll( jenkins.createTaskListener() );

assertTrue( result.hasChanges() );
assertFalse( result.hasChanges() );
}

}

0 comments on commit 9c9f55c

Please sign in to comment.