diff test/org/tmatesoft/hg/test/TestOutgoing.java @ 536:2813a26b8999

Tests: refactor various utility methods to a single location
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Tue, 05 Feb 2013 16:36:58 +0100
parents 41a778e3fd31
children 629a7370554c
line wrap: on
line diff
--- a/test/org/tmatesoft/hg/test/TestOutgoing.java	Tue Feb 05 15:54:37 2013 +0100
+++ b/test/org/tmatesoft/hg/test/TestOutgoing.java	Tue Feb 05 16:36:58 2013 +0100
@@ -55,7 +55,7 @@
 		int x = 0;
 		HgLookup lookup = new HgLookup();
 		for (HgRemoteRepository hgRemote : Configuration.get().allRemote()) {
-			File dest = TestIncoming.createEmptyDir("test-outgoing-" + x++);
+			File dest = RepoUtils.createEmptyDir("test-outgoing-" + x++);
 			ExecHelper eh0 = new ExecHelper(new OutputParser.Stub(false), null);
 			eh0.run("hg", "clone", hgRemote.getLocation(), dest.toString());
 			eh0.cwd(dest);