diff --git a/runtime/gdev/tests/integration_tests.rs b/runtime/gdev/tests/integration_tests.rs
index 56f14f33ce4a0322e268a2db1fba817b82d1aeaf..3f2baa469ab905ca3e0dc2e26880e5fd4fd973d7 100644
--- a/runtime/gdev/tests/integration_tests.rs
+++ b/runtime/gdev/tests/integration_tests.rs
@@ -1507,7 +1507,7 @@ fn test_change_owner_key_validator_keys_set() {
         let bob = AccountKeyring::Bob.to_account_id();
         let ferdie = AccountKeyring::Ferdie.to_account_id();
         let payload = (b"icok", genesis_hash, 2u32, bob.clone()).encode();
-        let signature = AccountKeyring::Bob.sign(&payload);
+        let signature = AccountKeyring::Ferdie.sign(&payload);
 
         // Bob is not an online validator, but his identity/owner_key is already associated.
         // He should not be able to change its owner_key.
@@ -1536,7 +1536,7 @@ fn test_change_owner_key_validator_online() {
         let alice = AccountKeyring::Alice.to_account_id();
         let ferdie = AccountKeyring::Ferdie.to_account_id();
         let payload = (b"icok", genesis_hash, 1u32, alice.clone()).encode();
-        let signature = AccountKeyring::Alice.sign(&payload);
+        let signature = AccountKeyring::Ferdie.sign(&payload);
 
         // Alice is an online validator
         assert!(pallet_authority_members::OnlineAuthorities::<Runtime>::get().contains(&1));