diff test/org/tmatesoft/hg/test/TestHistory.java @ 74:6f1b88693d48

Complete refactoring to org.tmatesoft
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Mon, 24 Jan 2011 03:14:45 +0100
parents 993f6f8e1314
children 7255c971dd66
line wrap: on
line diff
--- a/test/org/tmatesoft/hg/test/TestHistory.java	Sun Jan 23 04:06:18 2011 +0100
+++ b/test/org/tmatesoft/hg/test/TestHistory.java	Mon Jan 24 03:14:45 2011 +0100
@@ -22,10 +22,10 @@
 
 import org.tmatesoft.hg.core.Cset;
 import org.tmatesoft.hg.core.LogCommand;
+import org.tmatesoft.hg.repo.HgRepository;
+import org.tmatesoft.hg.repo.Lookup;
 import org.tmatesoft.hg.test.LogOutputParser.Record;
 
-import com.tmate.hgkit.fs.RepositoryLookup;
-import com.tmate.hgkit.ll.HgRepository;
 
 /**
  *
@@ -39,7 +39,7 @@
 	private LogOutputParser changelogParser;
 	
 	public static void main(String[] args) throws Exception {
-		TestHistory th = new TestHistory(new RepositoryLookup().detectFromWorkingDir());
+		TestHistory th = new TestHistory(new Lookup().detectFromWorkingDir());
 		th.testCompleteLog();
 	}