Store rev properly like a good boy

This commit is contained in:
lewis
2025-12-28 02:24:09 +02:00
parent f6d7d65ef8
commit 8cb82abc82
19 changed files with 242 additions and 73 deletions
+2 -2
View File
@@ -357,10 +357,10 @@ async fn test_get_recommended_did_credentials_success() {
assert!(also_known_as[0].as_str().unwrap().starts_with("at://"));
assert!(body["verificationMethods"]["atproto"].is_string());
assert_eq!(
body["services"]["atprotoPds"]["type"],
body["services"]["atproto_pds"]["type"],
"AtprotoPersonalDataServer"
);
assert!(body["services"]["atprotoPds"]["endpoint"].is_string());
assert!(body["services"]["atproto_pds"]["endpoint"].is_string());
}
#[tokio::test]
-1
View File
@@ -10,7 +10,6 @@ use serde_json::json;
use sha2::{Digest, Sha256};
use sqlx::PgPool;
use std::collections::BTreeMap;
use std::str::FromStr;
use wiremock::matchers::{method, path};
use wiremock::{Mock, MockServer, ResponseTemplate};