upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/test_utils
diff options
context:
space:
mode:
Diffstat (limited to 'test_utils')
-rw-r--r--test_utils/src/lib.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/test_utils/src/lib.rs b/test_utils/src/lib.rs
index 9996008..8788211 100644
--- a/test_utils/src/lib.rs
+++ b/test_utils/src/lib.rs
@@ -164,8 +164,13 @@ pub fn generate_repo_ref_event() -> nostr::Event {
164 "ws://localhost:8056".to_string(), 164 "ws://localhost:8056".to_string(),
165 ], 165 ],
166 ), 166 ),
167 Tag::public_key(TEST_KEY_1_KEYS.public_key()), 167 Tag::Generic(
168 Tag::public_key(TEST_KEY_2_KEYS.public_key()), 168 nostr::TagKind::Custom("maintainers".to_string()),
169 vec![
170 TEST_KEY_1_KEYS.public_key().to_string(),
171 TEST_KEY_2_KEYS.public_key().to_string(),
172 ],
173 ),
169 ], 174 ],
170 ) 175 )
171 .to_event(&TEST_KEY_1_KEYS) 176 .to_event(&TEST_KEY_1_KEYS)