Skip to content

Commit 9d7b1e5

Browse files
committed
fix added TODO of places to construct various test item
1 parent 4a2d0b4 commit 9d7b1e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/web3id.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -342,14 +342,14 @@ mod tests {
342342

343343
// Identity provider
344344
let ip_description = Description {description: "dummy description".to_string(), name: "dummy name".to_string(), url: "http://dummy.com".to_string()};
345-
let ip_verify_key = None;
346-
let ip_cdi_key = None;
345+
let ip_verify_key = None; // TODO ROB - not sure how i build this
346+
let ip_cdi_key = None; // TODO ROB - not sure how i build this
347347
let ip_info_stubbed = IpInfo { ip_identity: issuer, ip_description: ip_description, ip_verify_key: ip_verify_key, ip_cdi_verify_key: ip_cdi_key};
348348
let identity_providers = vec![ip_info_stubbed];
349349

350350
// the anonymity revokers for testing
351351
let ar_identity = ArIdentity(1u32);
352-
let ar_public_key = PublicKey { .. }; // some constructed public key here?
352+
let ar_public_key = PublicKey { .. }; // TODO ROB - not sure how i build this
353353
let ar_description = Description {description: "ar description".to_string(), name: "ar dummy name".to_string(), url: "http://dummy.com".to_string()};
354354
let anonymity_revoker = ArInfo {ar_identity: ar_identity, ar_description: ar_description, ar_public_key: ar_public_key };
355355
let anonymity_revokers = vec![anonymity_revoker];

0 commit comments

Comments
 (0)