diff test/org/tmatesoft/hg/test/TestByteChannel.java @ 431:12f668401613

FIXMEs: awkward API refactored, what need to be internal got hidden; public aspects got captured in slim interfaces
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 29 Mar 2012 20:54:04 +0200
parents b015f3918120
children 2813a26b8999
line wrap: on
line diff
--- a/test/org/tmatesoft/hg/test/TestByteChannel.java	Thu Mar 29 18:48:23 2012 +0200
+++ b/test/org/tmatesoft/hg/test/TestByteChannel.java	Thu Mar 29 20:54:04 2012 +0200
@@ -98,7 +98,7 @@
 	public void testWorkingCopyFileAccess() throws Exception {
 		final File repoDir = TestIncoming.initEmptyTempRepo("testWorkingCopyFileAccess");
 		final Map<String, ?> props = Collections.singletonMap(Internals.CFG_PROPERTY_REVLOG_STREAM_CACHE, false);
-		repo = new HgLookup(new BasicSessionContext(props, null, null)).detect(repoDir);
+		repo = new HgLookup(new BasicSessionContext(props, null)).detect(repoDir);
 		File f1 = new File(repoDir, "file1");
 		final String c1 = "First", c2 = "Second", c3 = "Third";
 		ByteArrayChannel ch;