Update issue tracker settings for projects after Jira to GitHub migration.
Closes #166
This commit is contained in:
@@ -34,7 +34,7 @@ class CommitUnitTests {
|
||||
void shouldRenderCommitMessage() {
|
||||
|
||||
assertThat(
|
||||
new Commit(new Ticket("1234", "Hello", null, Mockito.mock(TicketStatus.class)), "Summary", Optional.empty()))
|
||||
new Commit(new Ticket("1234", "Hello", Mockito.mock(TicketStatus.class)), "Summary", Optional.empty()))
|
||||
.hasToString("1234 - Summary.");
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ class CommitUnitTests {
|
||||
void shouldRenderCommitMessageWithDetail() {
|
||||
|
||||
assertThat(
|
||||
new Commit(new Ticket("1234", "Hello", null, Mockito.mock(TicketStatus.class)), "Summary",
|
||||
new Commit(new Ticket("1234", "Hello", Mockito.mock(TicketStatus.class)), "Summary",
|
||||
Optional.of("detail")))
|
||||
.hasToString("1234 - Summary.\n" + "\n" + "detail");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user