Mercurial > hg4j
changeset 389:82bec80bb1a4
Missing cons args
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 16 Feb 2012 01:09:24 +0100 |
parents | b015f3918120 |
children | 6952d9ce97f1 |
files | test/org/tmatesoft/hg/test/TestStorePath.java |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/test/org/tmatesoft/hg/test/TestStorePath.java Wed Feb 15 22:57:56 2012 +0100 +++ b/test/org/tmatesoft/hg/test/TestStorePath.java Thu Feb 16 01:09:24 2012 +0100 @@ -21,6 +21,7 @@ import org.hamcrest.CoreMatchers; import org.junit.Rule; import org.junit.Test; +import org.tmatesoft.hg.internal.BasicSessionContext; import org.tmatesoft.hg.internal.Internals; import org.tmatesoft.hg.util.PathRewrite; @@ -44,7 +45,7 @@ } public TestStorePath() { - final Internals i = new Internals(); + final Internals i = new Internals(new BasicSessionContext(null, null)); i.setStorageConfig(1, 0x7); storePathHelper = i.buildDataFilesHelper(); }