diff test/org/tmatesoft/hg/test/TestPhases.java @ 477:9c9d09111aee

Tests for file flags(exec, link, regular)
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 12 Jul 2012 18:07:51 +0200
parents 09f2d38ecf26
children ba36f66c32b4
line wrap: on
line diff
--- a/test/org/tmatesoft/hg/test/TestPhases.java	Thu Jul 12 18:07:12 2012 +0200
+++ b/test/org/tmatesoft/hg/test/TestPhases.java	Thu Jul 12 18:07:51 2012 +0200
@@ -48,7 +48,8 @@
 		PhasesHelper ph = new PhasesHelper(repo, null);
 		initAndCheck(ph, expected);
 		final long end = System.nanoTime();
-		System.out.printf("Without ParentWalker (simulates log command for single file): %d ms\n", (end - start)/1000);
+		// μ == \u03bc
+		System.out.printf("Without ParentWalker (simulates log command for single file): %,d μs\n", (end - start)/1000);
 	}
 	
 	@Test
@@ -62,7 +63,7 @@
 		PhasesHelper ph = new PhasesHelper(repo, pw);
 		initAndCheck(ph, expected);
 		final long end = System.nanoTime();
-		System.out.printf("With ParentWalker(simulates log command for whole repo): %d ms (pw init: %,d ns)\n", (end - start1)/1000, start2 - start1);
+		System.out.printf("With ParentWalker(simulates log command for whole repo): %,d μs (pw init: %,d ns)\n", (end - start1)/1000, start2 - start1);
 	}
 
 	private HgPhase[] initAndCheck(PhasesHelper ph, HgPhase[] expected) {