diff options
author | James Moger <james.moger@gitblit.com> | 2011-07-25 16:47:22 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-07-25 16:47:22 -0400 |
commit | 671c19d3695a165687d621690fdb52ac453070b9 (patch) | |
tree | 779096d2ba629a9a2d56d6e6665513dfb6a4c4a1 /tests | |
parent | caad17c342b380a0bca558bed2448a39e09f4660 (diff) | |
download | gitblit-671c19d3695a165687d621690fdb52ac453070b9.tar.gz gitblit-671c19d3695a165687d621690fdb52ac453070b9.zip |
Cleanup imports and formatting.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/com/gitblit/tests/FileUtilsTest.java | 4 | ||||
-rw-r--r-- | tests/com/gitblit/tests/JGitUtilsTest.java | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/com/gitblit/tests/FileUtilsTest.java b/tests/com/gitblit/tests/FileUtilsTest.java index 4e416cb7..63d0f330 100644 --- a/tests/com/gitblit/tests/FileUtilsTest.java +++ b/tests/com/gitblit/tests/FileUtilsTest.java @@ -17,10 +17,10 @@ package com.gitblit.tests; import java.io.File;
-import com.gitblit.utils.FileUtils;
-
import junit.framework.TestCase;
+import com.gitblit.utils.FileUtils;
+
public class FileUtilsTest extends TestCase {
public void testReadContent() throws Exception {
diff --git a/tests/com/gitblit/tests/JGitUtilsTest.java b/tests/com/gitblit/tests/JGitUtilsTest.java index 44d72542..0d7aa635 100644 --- a/tests/com/gitblit/tests/JGitUtilsTest.java +++ b/tests/com/gitblit/tests/JGitUtilsTest.java @@ -199,7 +199,7 @@ public class JGitUtilsTest extends TestCase { }
public void testCreateOrphanedBranch() throws Exception {
- Repository repository = JGitUtils.createRepository(GitBlitSuite.REPOSITORIES, "orphantest");
+ Repository repository = JGitUtils.createRepository(GitBlitSuite.REPOSITORIES, "orphantest");
assertTrue(JGitUtils.createOrphanBranch(repository,
"x" + Long.toHexString(System.currentTimeMillis()).toUpperCase()));
FileUtils.delete(repository.getDirectory(), FileUtils.RECURSIVE);
|