diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2026-01-08 10:57:51 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2026-01-08 10:57:51 +0000 |
| commit | 075307804bf66bba10f5bc55cb40e2e6a98a65ee (patch) | |
| tree | f5a3eb2738372582e28a9a55a8f9481f0af9594b /src/purgatory/sync | |
| parent | f75e1c59aacf5ce668fd327e4e3d827511661c2a (diff) | |
chore: upgrade nostr-* packages to rev 4767ad13
- Update nostr-relay-builder, nostr-sdk, nostr-lmdb to latest revision
- Update grasp-audit nostr-sdk dependency
- Fix clippy warnings:
- Replace .clone() with std::slice::from_ref() in src/git/sync.rs
- Change &PathBuf to &Path in tests/common/git_server.rs
- Replace vec![] with array literal in src/purgatory/sync/functions.rs
- Update PR_TEST_COMMIT_HASH in grasp-audit due to event generation changes
All 249 tests passing, no breaking changes required.
Diffstat (limited to 'src/purgatory/sync')
| -rw-r--r-- | src/purgatory/sync/functions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/purgatory/sync/functions.rs b/src/purgatory/sync/functions.rs index 370990e..0139ac5 100644 --- a/src/purgatory/sync/functions.rs +++ b/src/purgatory/sync/functions.rs | |||
| @@ -930,7 +930,7 @@ mod tests { | |||
| 930 | .expect("Should return a second URL"); | 930 | .expect("Should return a second URL"); |
| 931 | 931 | ||
| 932 | // Both URLs should be available (one from announcement, one from PR) | 932 | // Both URLs should be available (one from announcement, one from PR) |
| 933 | let both_urls = vec![first_url, second_url]; | 933 | let both_urls = [first_url, second_url]; |
| 934 | assert!( | 934 | assert!( |
| 935 | both_urls.iter().any(|u| u.contains("github.com")), | 935 | both_urls.iter().any(|u| u.contains("github.com")), |
| 936 | "Should include announcement URL" | 936 | "Should include announcement URL" |