Skip to content

Commit

Permalink
Switch to using ruff for linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
mindflayer committed May 12, 2024
1 parent 1fe312a commit dabd241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/main/test_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def test_post_file_object(self):
Entry.single_register(Entry.POST, url, status=201)
with open("tests/fluidicon.png", "rb") as file_obj:
files = {"content": file_obj}
r = requests.post(url, files=files, data={})
r = requests.post(url, files=files, data={})
self.assertEqual(r.status_code, 201)

@mocketize
Expand Down

0 comments on commit dabd241

Please sign in to comment.