Skip to content

Commit 9e7e23c

Browse files
Fix obvious spelling mistakes in tests and action metadata
Correct three spelling mistakes. This updates the GitHub Action output description, fixes a mocked error message in a test, and renames a test file whose name misspelled "exceptions". These changes are limited to wording and test file naming, with no intended behavior change.
1 parent bfce511 commit 9e7e23c

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/actions/poetry-install/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inputs:
1010

1111
outputs:
1212
cache-hit:
13-
description: Whether an exact cache hit occured
13+
description: Whether an exact cache hit occurred
1414
value: ${{ steps.cache.outputs.cache-hit }}
1515

1616
runs:
File renamed without changes.

tests/publishing/test_uploader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def test_uploader_properly_handles_nonstandard_errors(
156156
content = (
157157
b'{\n "errors": [ {\n '
158158
b'"status": 400,'
159-
b'"message": "I cant let you do that, dave"\n'
159+
b'"message": "I can\'t let you do that, dave"\n'
160160
b"} ]\n}"
161161
)
162162
http.post("https://foo.com", status=400, body=content)

0 commit comments

Comments
 (0)