From f6d7adf693973bbf92b6d0c7192728e6d31a21af Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Wed, 27 Jan 2016 13:29:52 +0100 Subject: [PATCH] Remove misleading comment. --- src/tests/chain.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/chain.rs b/src/tests/chain.rs index 8ba5e3671..894303a4c 100644 --- a/src/tests/chain.rs +++ b/src/tests/chain.rs @@ -41,7 +41,7 @@ fn do_json_test(json_data: &[u8]) -> Vec { } client.flush_queue(); let imported_ok = client.import_verified_blocks(&IoChannel::disconnected()) > 0; - assert_eq!(imported_ok, is_valid); // may yet be invalid for the later stages, so can't do a hard check. + assert_eq!(imported_ok, is_valid); } fail_unless(client.chain_info().best_block_hash == H256::from_json(&test["lastblockhash"])); }