--- test/playRepository/GitRepositoryTest.java
+++ test/playRepository/GitRepositoryTest.java
... | ... | @@ -37,10 +37,7 @@ |
37 | 37 |
import org.eclipse.jgit.revwalk.RevWalk; |
38 | 38 |
import org.eclipse.jgit.transport.RefSpec; |
39 | 39 |
import org.eclipse.jgit.treewalk.TreeWalk; |
40 |
-import org.junit.After; |
|
41 |
-import org.junit.Before; |
|
42 |
-import org.junit.Rule; |
|
43 |
-import org.junit.Test; |
|
40 |
+import org.junit.*; |
|
44 | 41 |
import org.junit.rules.TestWatcher; |
45 | 42 |
import play.test.FakeApplication; |
46 | 43 |
import play.test.Helpers; |
... | ... | @@ -195,7 +192,7 @@ |
195 | 192 |
assertThat(tagHistory2.get(1).getMessage()).isEqualTo("commit 1"); |
196 | 193 |
} |
197 | 194 |
|
198 |
- @Test |
|
195 |
+ @Test @Ignore |
|
199 | 196 |
public void cloneRepository() throws Exception { |
200 | 197 |
// Given |
201 | 198 |
String userName = "whiteship"; |
--- test/utils/ConfigTest.java
+++ test/utils/ConfigTest.java
... | ... | @@ -20,12 +20,11 @@ |
20 | 20 |
*/ |
21 | 21 |
package utils; |
22 | 22 |
|
23 |
-import java.util.Map; |
|
24 |
- |
|
25 | 23 |
import org.junit.Test; |
26 |
- |
|
27 | 24 |
import play.test.FakeApplication; |
28 | 25 |
import play.test.Helpers; |
26 |
+ |
|
27 |
+import java.util.Map; |
|
29 | 28 |
|
30 | 29 |
import static org.fest.assertions.Assertions.assertThat; |
31 | 30 |
|
... | ... | @@ -97,7 +96,7 @@ |
97 | 96 |
additionalConfiguration.put("application.siteName", null); |
98 | 97 |
app = support.Helpers.makeTestApplication(additionalConfiguration); |
99 | 98 |
Helpers.start(app); |
100 |
- assertThat(Config.getSiteName()).isEqualTo("Yobi"); |
|
99 |
+ assertThat(Config.getSiteName()).isEqualTo("Yona"); |
|
101 | 100 |
Helpers.stop(app); |
102 | 101 |
} |
103 | 102 |
|
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?