Fix unit tests

The python float number formatting causes unit tests failed
This commit is contained in:
Khanh Ngo 2020-02-13 16:22:07 +07:00
parent d497fdee8e
commit 52eb62a911
No known key found for this signature in database
GPG key ID: D5FAA6A16150E49E

View file

@ -50,8 +50,9 @@ def fetch_remote(remote_url,
timeout=timeout,
data=data,
params=params)
logging.debug('Querying remote server "{0}" ({1}) finished with code {2} (took {3:.3f}s)'.format(
remote_url, method, r.status_code, r.elapsed.total_seconds()))
logging.debug(
'Querying remote server "{0}" ({1}) finished with code {2} (took {3}s)'
.format(remote_url, method, r.status_code, r.elapsed.total_seconds()))
try:
if r.status_code not in (200, 201, 204, 400, 409, 422):
r.raise_for_status()