Repository: accumulo Updated Branches: refs/heads/master 16dff26b8 -> 90b661991
ACCUMULO-2418 add fail message back Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/b9bc5e25 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/b9bc5e25 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/b9bc5e25 Branch: refs/heads/master Commit: b9bc5e259dc990bd1e03e0decc8aa6510a91b290 Parents: eab028a Author: Eric Newton <eric.new...@gmail.com> Authored: Thu Feb 27 12:31:43 2014 -0500 Committer: Eric Newton <eric.new...@gmail.com> Committed: Thu Feb 27 12:31:43 2014 -0500 ---------------------------------------------------------------------- .../test/java/org/apache/accumulo/test/NoMutationRecoveryIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/b9bc5e25/test/src/test/java/org/apache/accumulo/test/NoMutationRecoveryIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/NoMutationRecoveryIT.java b/test/src/test/java/org/apache/accumulo/test/NoMutationRecoveryIT.java index 65036ab..ab17740 100644 --- a/test/src/test/java/org/apache/accumulo/test/NoMutationRecoveryIT.java +++ b/test/src/test/java/org/apache/accumulo/test/NoMutationRecoveryIT.java @@ -69,7 +69,7 @@ public class NoMutationRecoveryIT extends ConfigurableMacIT { update(conn, TABLE, new Text("row"), new Text("cf"), new Text("cq"), new Value("value".getBytes())); Entry<Key, Value> logRef = getLogRef(conn, MetadataTable.NAME); conn.tableOperations().flush(TABLE, null, null, true); - assertEquals(0, FunctionalTestUtils.count(getLogRefs(conn, MetadataTable.NAME))); + assertEquals("should not have any refs", 0, FunctionalTestUtils.count(getLogRefs(conn, MetadataTable.NAME))); conn.securityOperations().grantTablePermission(conn.whoami(), MetadataTable.NAME, TablePermission.WRITE); update(conn, MetadataTable.NAME, logRef); assertTrue(equals(logRef, getLogRef(conn, MetadataTable.NAME)));