We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5b3956 commit 7bdb677Copy full SHA for 7bdb677
1 file changed
test/src/test/java/jenkins/management/AdministrativeMonitorsConfigurationTest.java
@@ -26,7 +26,6 @@
26
27
import static org.hamcrest.MatcherAssert.assertThat;
28
import static org.hamcrest.Matchers.is;
29
-import static org.hamcrest.Matchers.not;
30
31
import hudson.ExtensionList;
32
import hudson.util.DoubleLaunchChecker;
@@ -52,7 +51,6 @@ void setUp(JenkinsRule rule) {
52
51
void globalConfigurationRoundTripKeepsDoubleLaunchCheckerEnabled() throws Exception {
53
DoubleLaunchChecker monitor = ExtensionList.lookupSingleton(DoubleLaunchChecker.class);
54
assertThat(monitor.id, is(DoubleLaunchChecker.class.getName()));
55
- assertThat(monitor.getId(), not(monitor.id));
56
assertThat(monitor.isEnabled(), is(true));
57
58
HtmlForm form = j.createWebClient().goTo("configure").getFormByName("config");
0 commit comments