From b477082c3049057f6ed1476cf1774495c411a2b9 Mon Sep 17 00:00:00 2001 From: Natalie Date: Sun, 12 Apr 2026 23:18:47 -0700 Subject: [PATCH] =?UTF-8?q?fix(@ml/auto-commit-service):=20=F0=9F=90=9B=20?= =?UTF-8?q?update=20stashed=20check=20to=20skipped=5Fdirty?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- tests/test_git_operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_git_operations.py b/tests/test_git_operations.py index faa4937..0435b0f 100644 --- a/tests/test_git_operations.py +++ b/tests/test_git_operations.py @@ -194,7 +194,7 @@ class TestPreCycleSync: assert result["fetched"] is True assert result["pulled"] is True assert result["behind_count"] == 1 - assert result["stashed"] is False + assert result["skipped_dirty"] is False assert result["error"] is None # Verify the file arrived assert (temp_git_repo / "other.txt").exists()