diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-19 17:01:36 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-19 17:01:36 +0000 |
| commit | bf7f4d5381203d5c27b2811d62c5b1781533aa2b (patch) | |
| tree | 26903bbf535d83abd7242370d8b6932eb80e3389 /grasp-audit/src/lib.rs | |
| parent | fa065ad128882755f2a988d6203b59a2ab5e38ff (diff) | |
fix some clippy fmt warnings
Diffstat (limited to 'grasp-audit/src/lib.rs')
| -rw-r--r-- | grasp-audit/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grasp-audit/src/lib.rs b/grasp-audit/src/lib.rs index 6eac73c..dd9ac32 100644 --- a/grasp-audit/src/lib.rs +++ b/grasp-audit/src/lib.rs | |||
| @@ -29,15 +29,15 @@ | |||
| 29 | //! ``` | 29 | //! ``` |
| 30 | 30 | ||
| 31 | pub mod audit; | 31 | pub mod audit; |
| 32 | pub mod fixtures; | ||
| 33 | pub mod client; | 32 | pub mod client; |
| 33 | pub mod fixtures; | ||
| 34 | pub mod isolation; | 34 | pub mod isolation; |
| 35 | pub mod result; | 35 | pub mod result; |
| 36 | pub mod specs; | 36 | pub mod specs; |
| 37 | 37 | ||
| 38 | pub use audit::{AuditConfig, AuditMode}; | 38 | pub use audit::{AuditConfig, AuditMode}; |
| 39 | pub use fixtures::{ContextMode, FixtureKind, TestContext}; | ||
| 40 | pub use client::AuditClient; | 39 | pub use client::AuditClient; |
| 40 | pub use fixtures::{ContextMode, FixtureKind, TestContext}; | ||
| 41 | pub use result::{AuditResult, TestResult}; | 41 | pub use result::{AuditResult, TestResult}; |
| 42 | 42 | ||
| 43 | // Re-export commonly used types | 43 | // Re-export commonly used types |