changeset 313:dd6f4af39b54

remove machine-specific settings
author Dmitry Neverov <dmitry.neverov@jetbrains.com>
date Thu, 15 Sep 2011 10:11:34 +0400
parents 8deb526363f5
children a609bf3bc8e2
files mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/DagFeaturesTest.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/DagFeaturesTest.java	Thu Sep 15 10:06:59 2011 +0400
+++ b/mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/DagFeaturesTest.java	Thu Sep 15 10:11:34 2011 +0400
@@ -51,7 +51,7 @@
 
   //TW-17882
   public void should_detect_changes_from_named_branches() throws Exception {
-    VcsRootImpl root = new VcsRootBuilder().repository(myRepository).hgPath("/home/nd/sandbox/3rdparty/mercurial/hg").build();
+    VcsRootImpl root = new VcsRootBuilder().repository(myRepository).build();
 
     List<ModificationData> changes = myHg.collectChanges(root, "8:b6e2d176fe8e", "12:1e620196c4b6", CheckoutRules.DEFAULT);
     assertEquals(4, changes.size());
@@ -69,7 +69,7 @@
 
   //TW-17882
   public void should_report_changes_only_from_merged_named_branches() throws Exception {
-    VcsRootImpl root = new VcsRootBuilder().repository(myRepository).hgPath("/home/nd/sandbox/3rdparty/mercurial/hg").build();
+    VcsRootImpl root = new VcsRootBuilder().repository(myRepository).build();
     List<ModificationData> changes = myHg.collectChanges(root, "1e620196c4b6", "505c5b9d01e6", CheckoutRules.DEFAULT);
     assertEquals(2, changes.size());
   }