diff --git a/test/g1_test.dart b/test/g1_test.dart
index 501b4cce80ad6e6de9b8b9f1acc6087c56e72fa8..3ca790a1851f96c57bfbf9e2a7eba04b62cb30c6 100644
--- a/test/g1_test.dart
+++ b/test/g1_test.dart
@@ -307,22 +307,22 @@ void main() {
 
     test('Extraction from a list separated by semicolons', () {
       const String listText =
-          'EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG; ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:BJH; 78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8:4VT';
+          'EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG; ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:9bG; 78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8:4VT';
       final List<Contact> result = parseMultipleKeys(listText);
       expect(result, <Contact>[
         Contact(pubKey: 'EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG'),
-        Contact(pubKey: 'ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:BJH'),
+        Contact(pubKey: 'ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:9bG'),
         Contact(pubKey: '78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8:4VT')
       ]);
     });
 
     test('Extraction from a list separated by spaces', () {
       const String listText =
-          'EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG      ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:BJH       78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8:4VT';
+          'EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG      ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:9bG       78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8:4VT';
       final List<Contact> result = parseMultipleKeys(listText);
       expect(result, <Contact>[
         Contact(pubKey: 'EdWkzNABz7dPancFqW6JVLqv1wpGaQSxgWmMf1pmY7KG'),
-        Contact(pubKey: 'ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:BJH'),
+        Contact(pubKey: 'ARErWXr3bhKYh8FqX9axMXxxRPXMuoZW4s73P1zBHUTY:9bG'),
         Contact(pubKey: '78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8:4VT')
       ]);
     });
diff --git a/test/ui_test.dart b/test/ui_test.dart
index a5f8adaabfb5e4b44ef7aca90a6cde3ea100199d..7e647b347337241542cc00426c09da06570aadc6 100644
--- a/test/ui_test.dart
+++ b/test/ui_test.dart
@@ -125,7 +125,7 @@ void main() {
       final Contact contact =
           Contact(pubKey: otherTestPubKey, name: 'John Doe');
       final String result = humanizeContact(publicAddress, contact, true);
-      expect(result, 'John Doe (🔑 7XtC…3Hy6)');
+      expect(result, 'John Doe (🗝 7XtC…3Hy6)');
     });
 
     test(
@@ -134,7 +134,7 @@ void main() {
       const String publicAddress = otherTestPubKey;
       final Contact contact = Contact(pubKey: testPubKey);
       final String result = humanizeContact(publicAddress, contact, true);
-      expect(result, '🔑 7wnD…efsu');
+      expect(result, '🗝 7wnD…efsu');
     });
   });
 
@@ -171,13 +171,13 @@ void main() {
         () {
       final Contact contact = Contact(pubKey: testPubKey);
       final String result = contact.title;
-      expect(result, '🔑 7wnD…efsu');
+      expect(result, '🗝 7wnD…efsu');
     });
 
     test('Should return subtitle when nick or name is provided', () {
       final Contact contact = Contact(pubKey: testPubKey, nick: 'JD');
       final String? result = contact.subtitle;
-      expect(result, '🔑 7wnD…efsu');
+      expect(result, '🗝 7wnD…efsu');
     });
 
     test('Should return null subtitle when neither nick nor name is provided',