File versionFile = new File(git.getRepository().getWorkTree(), "version.txt");
FileUtils.writeStringToFile(versionFile, hfOneLabel);
git.add().addFilepattern(".").call();
git.commit().setMessage("commiting version 1").call();
flow.hotfixFinish(hfOneLabel).call();
//we should be on develop branch
assertEquals(flow.getDevelopBranchName(), git.getRepository().getBranch());
FileUtils.writeStringToFile(versionFile, "develop");
git.add().addFilepattern(".").call();