diff test/org/tmatesoft/hg/test/TestCheckout.java @ 608:e1b29756f901

Clean, organize and resolve some TODOs and FIXMEs: minor refactorings and comments
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Tue, 07 May 2013 21:27:51 +0200
parents bd5926e24aa3
children fedc54356091
line wrap: on
line diff
--- a/test/org/tmatesoft/hg/test/TestCheckout.java	Tue May 07 16:52:46 2013 +0200
+++ b/test/org/tmatesoft/hg/test/TestCheckout.java	Tue May 07 21:27:51 2013 +0200
@@ -124,7 +124,7 @@
 		repo = new HgLookup().detect(testRepoLoc);
 		new HgCheckoutCommand(repo).clean(true).changeset(0).execute();
 		
-		FileWalker fw = new FileWalker(repo.getSessionContext(), testRepoLoc, new Path.SimpleSource());
+		FileWalker fw = new FileWalker(repo, testRepoLoc, new Path.SimpleSource(), null);
 		int execFound, linkFound, regularFound;
 		execFound = linkFound = regularFound = 0;
 		while(fw.hasNext()) {