From 8c6cd799031d1b8bd475d66c17885c00086f33be Mon Sep 17 00:00:00 2001 From: Benjamin Kolb Date: Tue, 20 Nov 2018 12:09:19 +0100 Subject: [PATCH] remove comments from test --- runtime/src/ctype.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/runtime/src/ctype.rs b/runtime/src/ctype.rs index 61a842f7b..e2625afbd 100644 --- a/runtime/src/ctype.rs +++ b/runtime/src/ctype.rs @@ -115,10 +115,6 @@ mod tests { fn it_works_for_default_value() { with_externalities(&mut new_test_ext(), || { assert_err!(CType::add(Origin::signed(H256::from(1)), H256::from(2), Ed25519Signature::from(H512::from(3))), "bad signature"); - - // assert_eq!(CType::add(origin, hash: T::Hash, signature: T::Signature), 24); - // assert_ok!(Example::accumulate_foo(Origin::signed(1), 1)); - // assert_eq!(Example::foo(), 25); }); } }