Skip to content

Commit

Permalink
fix curl resumable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andarut committed Dec 4, 2023
1 parent 1cd6c0f commit bf410b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/python/tests/curl/test_curl_resumable.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def test_curl_resumable_timeout(self):

def test_curl_resumable_nonexistent_url(self):
self.assertEqual(self._curl_request("nonexistent_url"), {
"exec_result": False
"exec_result": ''
})

def test_curl_resumable_connection_only_success(self):
Expand All @@ -63,5 +63,5 @@ def test_curl_resumable_connection_only_success(self):

def test_curl_resumable_connection_only_fail(self):
self.assertEqual(self._curl_request("nonexistent_url", connect_only=True), {
"exec_result": False
"exec_result": ''
})

0 comments on commit bf410b0

Please sign in to comment.