We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc60f1e commit 227615bCopy full SHA for 227615b
.github/workflows/tests.yml
@@ -82,7 +82,7 @@ jobs:
82
token: ${{ secrets.CODECOV_TOKEN }}
83
verbose: true
84
- name: Send notifications of failing tests
85
- if: failure() && github.ref == 'refs/heads/main'
+ if: failure()
86
uses: slackapi/slack-github-action@b0fa283ad8fea605de13dc3f449259339835fc52 # v2.1.0
87
with:
88
errors: true
tests/scenario_tests/test_app.py
@@ -264,7 +264,7 @@ def handle(context: BoltContext, respond):
264
265
req = BoltRequest(body=app_mention_event_body, headers={}, mode="socket_mode")
266
response = app.dispatch(req)
267
- assert response.status == 200
+ assert response.status == 418
268
assert result["called"] is True
269
270
def test_argument_logger_propagation(self):
0 commit comments