Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Enable 'Build has no changes' assertion in FreestyleJobTest #1572

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/test/java/core/FreestyleJobTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ public void should_visit_build_with_permalink() {
b.open();
assertThat("Permalink link is current URL", driver.getCurrentUrl(), is(expectedUrl));
assertThat("Build number is correct", b.getNumber(), is(1));
// TODO JENKINS-73168
//assertThat("Build has no changes", driver, hasContent("No changes"));
assertThat("Build has no changes", driver, hasContent("No changes"));
assertThat("Build is success", b.getResult(), is(Build.Result.SUCCESS.name()));
}

Expand Down
Loading