Skip to content

Commit

Permalink
Update integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Aug 16, 2023
1 parent 0d632c4 commit 4664b54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/mypy/s3_example.py.out
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
examples/s3_example.py:19: error: Unexpected keyword argument "mfa" for "delete" of "BucketObjectsCollection" [call-arg]
examples/s3_example.py:22: error: Argument "Config" to "upload_file" of "Bucket" has incompatible type "str"; expected "TransferConfig" [arg-type]
examples/s3_example.py:22: error: Argument "Config" to "upload_file" of "Bucket" has incompatible type "str"; expected "TransferConfig | None" [arg-type]
examples/s3_example.py:23: error: Missing key "Key" for TypedDict "BucketUploadFileRequestTypeDef" [typeddict-item]
examples/s3_example.py:23: error: Extra key "key" for TypedDict "BucketUploadFileRequestTypeDef" [typeddict-unknown-key]
examples/s3_example.py:27: error: Missing key "Key" for TypedDict "CopySourceTypeDef" [typeddict-item]
Expand Down
2 changes: 1 addition & 1 deletion examples/pyright/s3_example.py.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
{
"severity": "error",
"message": "Argument of type \"Literal['test']\" cannot be assigned to parameter \"Config\" of type \"TransferConfig\" in function \"upload_file\"\n\u00a0\u00a0\"Literal['test']\" is incompatible with \"TransferConfig\"",
"message": "Argument of type \"Literal['test']\" cannot be assigned to parameter \"Config\" of type \"TransferConfig | None\" in function \"upload_file\"\n\u00a0\u00a0Type \"Literal['test']\" cannot be assigned to type \"TransferConfig | None\"\n\u00a0\u00a0\u00a0\u00a0\"Literal['test']\" is incompatible with \"TransferConfig\"\n\u00a0\u00a0\u00a0\u00a0Type cannot be assigned to type \"None\"",
"range": {
"start": {
"line": 21,
Expand Down

0 comments on commit 4664b54

Please sign in to comment.