Skip to content

Commit 96c91f6

Browse files
authored
Small refactor. (#172)
1 parent d7a3866 commit 96c91f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/main/test_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def test_post_file_object(self):
320320
Entry.single_register(Entry.POST, url, status=201)
321321
file_obj = open("tests/fluidicon.png", "rb")
322322
files = {"content": file_obj}
323-
r = requests.post(url, files=files, data={}, verify=False)
323+
r = requests.post(url, files=files, data={})
324324
self.assertEqual(r.status_code, 201)
325325

326326
@mocketize

0 commit comments

Comments
 (0)