diff test/org/tmatesoft/hg/test/TestBlame.java @ 628:6526d8adbc0f

Explicit HgRuntimeException to facilitate easy switch from runtime to checked exceptions
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 22 May 2013 15:52:31 +0200
parents b4948b159ab1
children 5f52074707b2
line wrap: on
line diff
--- a/test/org/tmatesoft/hg/test/TestBlame.java	Tue May 21 20:17:33 2013 +0200
+++ b/test/org/tmatesoft/hg/test/TestBlame.java	Wed May 22 15:52:31 2013 +0200
@@ -277,7 +277,7 @@
 			//
 			String[] apiResult = splitLines(bos.toString());
 			String[] expected = splitLines(gp.result());
-			Assert.assertArrayEquals(expected, apiResult);
+			Assert.assertArrayEquals("diff -r " + cs + " - r 8", expected, apiResult);
 			gp.reset();
 		}
 	}