From 8d7a30d772a4f75c9d93314d173751cad96c12b2 Mon Sep 17 00:00:00 2001 From: librelois <c@elo.tf> Date: Sun, 18 Jul 2021 18:11:03 +0200 Subject: [PATCH] fix tests --- pallets/certification/src/tests.rs | 2 +- pallets/identity/src/tests.rs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pallets/certification/src/tests.rs b/pallets/certification/src/tests.rs index 3cc28928f..08fa4783b 100644 --- a/pallets/certification/src/tests.rs +++ b/pallets/certification/src/tests.rs @@ -17,7 +17,7 @@ use crate::mock::*; use crate::Error; use frame_support::assert_ok; -use frame_system::{EventRecord, Phase}; +//use frame_system::{EventRecord, Phase}; use maplit::{btreemap, btreeset}; use sp_std::collections::btree_map::BTreeMap; diff --git a/pallets/identity/src/tests.rs b/pallets/identity/src/tests.rs index b40d194ed..92e93246b 100644 --- a/pallets/identity/src/tests.rs +++ b/pallets/identity/src/tests.rs @@ -64,7 +64,7 @@ fn test_two_identities() { // Add right Right1 for Did(0) // Should succes and trigger the correct event - assert_ok!(Identity::add_right(Origin::root(), 0, Right::Right1)); + assert_ok!(Identity::add_right(Origin::root(), 1, Right::Right1)); let events = System::events(); assert_eq!(events.len(), 1); assert_eq!( @@ -78,7 +78,7 @@ fn test_two_identities() { // Add right Right2 for Did(0) // Should fail because Did(0) already have this right assert_err!( - Identity::add_right(Origin::root(), 0, Right::Right2), + Identity::add_right(Origin::root(), 1, Right::Right2), Error::<Test>::RightAlreadyAdded ); @@ -86,7 +86,7 @@ fn test_two_identities() { // Delete right Right1 for Did(1) // Should succes and trigger the correct event - assert_ok!(Identity::del_right(Origin::root(), 1, Right::Right1)); + assert_ok!(Identity::del_right(Origin::root(), 2, Right::Right1)); let events = System::events(); assert_eq!(events.len(), 2); assert_eq!( @@ -99,7 +99,7 @@ fn test_two_identities() { ); // The Did(1) identity has no more rights, the inactivity period must start to run - let idty2 = Identity::identity(1); + let idty2 = Identity::identity(2); assert!(idty2.rights.is_empty()); assert_eq!(idty2.removable_on, 7); }); -- GitLab