Set credentials file according to documentation

This commit is contained in:
Kanstantsin Shautsou
2015-03-03 19:23:06 +03:00
parent dcc3b7f36b
commit 0bf81f4fb9

View File

@@ -18,7 +18,7 @@ public abstract class AbstractGitHubApiTestBase extends Assert {
@Before
public void setUp() throws Exception {
Properties props = new Properties();
java.io.File f = new java.io.File(System.getProperty("user.home"), ".github.kohsuke2");
java.io.File f = new java.io.File(System.getProperty("user.home"), ".github");
if (f.exists()) {
FileInputStream in = new FileInputStream(f);
try {