@@ -29,7 +29,7 @@ fn make_test_attestation(issuer: &str, subject: &str) -> TestAttestation {
2929/// Tests the full KERI lifecycle: inception -> rotation -> rotation -> resolution
3030#[ test]
3131fn full_keri_lifecycle ( ) {
32- let ( _dir, repo) = auths_infra_git :: testing :: init_test_repo ( ) ;
32+ let ( _dir, repo) = auths_test_utils :: git :: init_test_repo ( ) ;
3333
3434 // === Phase 1: Inception ===
3535 let init: InceptionResult = create_keri_identity ( & repo, None ) . unwrap ( ) ;
@@ -97,7 +97,7 @@ fn full_keri_lifecycle() {
9797/// Tests device attestation anchoring via IXN events
9898#[ test]
9999fn device_enrollment_with_anchoring ( ) {
100- let ( _dir, repo) = auths_infra_git :: testing :: init_test_repo ( ) ;
100+ let ( _dir, repo) = auths_test_utils :: git :: init_test_repo ( ) ;
101101
102102 // Create identity
103103 let init = create_keri_identity ( & repo, None ) . unwrap ( ) ;
@@ -130,7 +130,7 @@ fn device_enrollment_with_anchoring() {
130130/// Tests that multiple attestations can be anchored
131131#[ test]
132132fn multiple_device_attestations ( ) {
133- let ( _dir, repo) = auths_infra_git :: testing :: init_test_repo ( ) ;
133+ let ( _dir, repo) = auths_test_utils :: git :: init_test_repo ( ) ;
134134
135135 let init = create_keri_identity ( & repo, None ) . unwrap ( ) ;
136136 let identity_did = format ! ( "did:keri:{}" , init. prefix) ;
@@ -172,7 +172,7 @@ fn multiple_device_attestations() {
172172/// Tests that rotation invalidates without proper commitment
173173#[ test]
174174fn rotation_requires_commitment ( ) {
175- let ( _dir, repo) = auths_infra_git :: testing :: init_test_repo ( ) ;
175+ let ( _dir, repo) = auths_test_utils :: git :: init_test_repo ( ) ;
176176
177177 let init = create_keri_identity ( & repo, None ) . unwrap ( ) ;
178178
@@ -186,7 +186,7 @@ fn rotation_requires_commitment() {
186186/// Tests KEL validation detects sequence tampering
187187#[ test]
188188fn kel_validation_rejects_sequence_tampering ( ) {
189- let ( _dir, repo) = auths_infra_git :: testing :: init_test_repo ( ) ;
189+ let ( _dir, repo) = auths_test_utils :: git :: init_test_repo ( ) ;
190190
191191 let init = create_keri_identity ( & repo, None ) . unwrap ( ) ;
192192 let _rot = rotate_keys ( & repo, & init. prefix , & init. next_keypair_pkcs8 , None ) . unwrap ( ) ;
@@ -208,7 +208,7 @@ fn kel_validation_rejects_sequence_tampering() {
208208/// Tests that unanchored attestations are not found
209209#[ test]
210210fn unanchored_attestation_not_found ( ) {
211- let ( _dir, repo) = auths_infra_git :: testing :: init_test_repo ( ) ;
211+ let ( _dir, repo) = auths_test_utils :: git :: init_test_repo ( ) ;
212212
213213 let init = create_keri_identity ( & repo, None ) . unwrap ( ) ;
214214 let identity_did = format ! ( "did:keri:{}" , init. prefix) ;
@@ -224,7 +224,7 @@ fn unanchored_attestation_not_found() {
224224/// Tests that key state is correct after operations
225225#[ test]
226226fn key_state_reflects_operations ( ) {
227- let ( _dir, repo) = auths_infra_git :: testing :: init_test_repo ( ) ;
227+ let ( _dir, repo) = auths_test_utils :: git :: init_test_repo ( ) ;
228228
229229 let init = create_keri_identity ( & repo, None ) . unwrap ( ) ;
230230
@@ -244,7 +244,7 @@ fn key_state_reflects_operations() {
244244/// Tests that did:keri parsing works correctly
245245#[ test]
246246fn did_keri_parsing ( ) {
247- let ( _dir, repo) = auths_infra_git :: testing :: init_test_repo ( ) ;
247+ let ( _dir, repo) = auths_test_utils :: git :: init_test_repo ( ) ;
248248
249249 let init = create_keri_identity ( & repo, None ) . unwrap ( ) ;
250250 let did = format ! ( "did:keri:{}" , init. prefix) ;
@@ -261,7 +261,7 @@ fn did_keri_parsing() {
261261/// Tests anchor verification by digest
262262#[ test]
263263fn verify_anchor_by_digest_works ( ) {
264- let ( _dir, repo) = auths_infra_git :: testing :: init_test_repo ( ) ;
264+ let ( _dir, repo) = auths_test_utils :: git :: init_test_repo ( ) ;
265265
266266 let init = create_keri_identity ( & repo, None ) . unwrap ( ) ;
267267 let identity_did = format ! ( "did:keri:{}" , init. prefix) ;
0 commit comments