From 869fd91e5c652c48a32d284eedc989a79c7afaea Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Thu, 12 Feb 2026 11:23:51 +0000 Subject: fix: update doctest to use valid FixtureKind::RepoState variant --- grasp-audit/src/fixtures.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grasp-audit/src/fixtures.rs b/grasp-audit/src/fixtures.rs index bbc7740..e1a5320 100644 --- a/grasp-audit/src/fixtures.rs +++ b/grasp-audit/src/fixtures.rs @@ -517,8 +517,8 @@ impl<'a> TestContext<'a> { /// ```no_run /// # use grasp_audit::*; /// # async fn example(ctx: &TestContext<'_>) -> anyhow::Result<()> { - /// // This ensures ValidRepo exists first, then creates MaintainerState - /// let state = ctx.ensure_fixture(FixtureKind::MaintainerState).await?; + /// // This ensures ValidRepo exists first, then creates RepoState + /// let state = ctx.ensure_fixture(FixtureKind::RepoState).await?; /// # Ok(()) /// # } /// ``` -- cgit v1.2.3