diff test/org/tmatesoft/hg/test/TestCommit.java @ 613:f41dd9a3b8af v1.1m4

Remove few Experimental annotations as the API they've marked graduates
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 10 May 2013 17:31:27 +0200
parents dca70c0b1f74
children 65c01508f002
line wrap: on
line diff
--- a/test/org/tmatesoft/hg/test/TestCommit.java	Fri May 10 14:29:35 2013 +0200
+++ b/test/org/tmatesoft/hg/test/TestCommit.java	Fri May 10 17:31:27 2013 +0200
@@ -115,7 +115,7 @@
 	
 	@Test
 	public void testCommitIntoBranch() throws Exception {
-		File repoLoc = RepoUtils.cloneRepoToTempLocation("log-1", "test-add-remove-commit", false);
+		File repoLoc = RepoUtils.cloneRepoToTempLocation("log-1", "test-commit2branch", false);
 		HgRepository hgRepo = new HgLookup().detect(repoLoc);
 		HgDataFile dfD = hgRepo.getFileNode("d");
 		assertTrue("[sanity]", dfD.exists());
@@ -160,7 +160,6 @@
 		cf.forget(hgRepo.getFileNode("d"));
 		Nodeid commitRev = cf.commit("Commit with add/remove cmd");
 		contentProvider.done();
-		// Note, working directory still points to original revision, CommitFacility doesn't update dirstate
 		//
 		List<HgChangeset> commits = new HgLogCommand(hgRepo).changeset(commitRev).execute();
 		HgChangeset cmt = commits.get(0);
@@ -179,7 +178,7 @@
 	 */
 	@Test
 	public void testSequentialCommits() throws Exception {
-		File repoLoc = RepoUtils.cloneRepoToTempLocation("log-1", "test-add-remove-commit", false);
+		File repoLoc = RepoUtils.cloneRepoToTempLocation("log-1", "test-sequential-commits", false);
 		HgRepository hgRepo = new HgLookup().detect(repoLoc);
 		HgDataFile dfD = hgRepo.getFileNode("d");
 		assertTrue("[sanity]", dfD.exists());