Skip to content

Commit

Permalink
[DATALAD RUNCMD] Do interactive fixing of some ambigous typos
Browse files Browse the repository at this point in the history
=== Do not change lines below ===
{
 "chain": [],
 "cmd": "codespell -w -i 3 -C 2",
 "exit": 0,
 "extra_inputs": [],
 "inputs": [],
 "outputs": [],
 "pwd": "."
}
^^^ Do not change lines above ^^^
  • Loading branch information
yarikoptic committed Nov 2, 2023
1 parent 9c3c07b commit d12eb8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ tests to ensure that the built `prefect-client` is functional.

In general, these builds, smoke tests, and publish steps should be transparent.
It these automated steps fail, use the `client/build_client.sh` script to run
the build and smoke test locally and interate on a fix. The failures will likely
the build and smoke test locally and iterate on a fix. The failures will likely
be from:

- including a new dependency that is not installed in `prefect-client`
Expand Down
4 changes: 2 additions & 2 deletions tests/server/orchestration/test_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -1570,7 +1570,7 @@ async def cleanup(self, initial_state, validated_state, context):
before_transition_hook.assert_called_once()
if proposed_state_type is not None:
after_transition_hook.assert_not_called()
cleanup_hook.assert_called_once(), "Cleanup should be called when trasition is aborted"
cleanup_hook.assert_called_once(), "Cleanup should be called when transition is aborted"
else:
after_transition_hook.assert_called_once(), "Rule expected no transition"
cleanup_hook.assert_not_called()
Expand Down Expand Up @@ -1635,7 +1635,7 @@ async def cleanup(self, initial_state, validated_state, context):
before_transition_hook.assert_called_once()
if proposed_state_type is not None:
after_transition_hook.assert_not_called()
cleanup_hook.assert_called_once(), "Cleanup should be called when trasition is aborted"
cleanup_hook.assert_called_once(), "Cleanup should be called when transition is aborted"
else:
after_transition_hook.assert_called_once(), "Rule expected no transition"
cleanup_hook.assert_not_called()
Expand Down

0 comments on commit d12eb8d

Please sign in to comment.