Skip to content

fix: merge conflict + 0.0.1a10 release#31

Merged
patrick-chinchill merged 1 commit into
mainfrom
fix/merge-conflict-and-release
Apr 7, 2026
Merged

fix: merge conflict + 0.0.1a10 release#31
patrick-chinchill merged 1 commit into
mainfrom
fix/merge-conflict-and-release

Conversation

@patrick-chinchill

Copy link
Copy Markdown
Collaborator

529/529 test fidelity. 3,427 tests. Fidelity enforcement script.

529/529 TS test fidelity (100%). 3,427 tests passing.
verify_test_fidelity.py enforces 1:1 name correspondence.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@patrick-chinchill patrick-chinchill merged commit 4856442 into main Apr 7, 2026

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request resolves merge conflicts in the MockAdapter's open_modal method. A review comment suggests removing default values for trigger_id and modal to maintain consistency with the actual adapter signatures and ensure mandatory arguments are correctly tested.

Comment on lines 172 to 173
trigger_id: str = "",
modal: Any = None,

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The open_modal method in MockAdapter should match the signature of the actual adapters (such as SlackAdapter) to maintain test fidelity. The real implementation requires trigger_id and modal, so the mock should not provide default values for them. Providing defaults here could hide bugs where the calling code fails to provide these mandatory arguments.

Suggested change
trigger_id: str = "",
modal: Any = None,
trigger_id: str,
modal: Any,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant