Browse Source

CheckoutCommandTest: Fix name of created temp file

Change-Id: I29048f83aee3848679bbc6ded09dd3dd4a2ea35b
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
stable-4.11
David Pursehouse 7 years ago
parent
commit
eba04da7be
  1. 2
      org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CheckoutCommandTest.java

2
org.eclipse.jgit.test/tst/org/eclipse/jgit/api/CheckoutCommandTest.java

@ -824,7 +824,7 @@ public class CheckoutCommandTest extends RepositoryTestCase {
}
private File writeTempFile(String body) throws IOException {
File f = File.createTempFile("AddCommandTest_", "");
File f = File.createTempFile("CheckoutCommandTest_", "");
JGitTestUtil.write(f, body);
return f;
}

Loading…
Cancel
Save