refactor backend for modifyCommand / add sourceExtension for plugins

This commit is contained in:
Eduard Heimbuch
2019-10-30 12:59:54 +01:00
parent 48154cce0f
commit 4f17bc6b1c
7 changed files with 121 additions and 10 deletions

View File

@@ -208,7 +208,6 @@ public class GitLogCommandTest extends AbstractGitCommandTestBase
GitLogCommand command = createCommand();
Changeset c = command.getChangeset("435df2f061add3589cb3", request);
Assertions.assertThat(c.getBranches().isEmpty()).isFalse();
Assertions.assertThat(c.getBranches().contains("master")).isTrue();
Assertions.assertThat(c.getBranches().size()).isEqualTo(1);
}