From b811dae6b0fccedc80d7790534450251e65d9f09 Mon Sep 17 00:00:00 2001 From: Chris Wilcox Date: Thu, 20 Dec 2018 12:38:34 -0800 Subject: [PATCH] comment out test for compressed file chunked download --- CHANGELOG.md | 2 ++ tests/system/requests/test_download.py | 16 +++++++++++----- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03308829..3eb6836b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,8 @@ - Updating generated static content in docs. ### Internal / Testing Changes +- Modify file not found test to look for the correct error message +- Harden tests so they can run with debug logging statements - Adding AppVeyor support. - Marking the version in `master` as `.dev1`. diff --git a/tests/system/requests/test_download.py b/tests/system/requests/test_download.py index 21e1e740..ea8211f4 100644 --- a/tests/system/requests/test_download.py +++ b/tests/system/requests/test_download.py @@ -56,15 +56,21 @@ slice(262144, None, None), # obj[262144:] ), }, { - u'path': os.path.realpath(os.path.join(DATA_DIR, u'file.txt.gz')), - u'uncompressed': os.path.realpath(os.path.join(DATA_DIR, u'file.txt')), + u'path': os.path.realpath(os.path.join(DATA_DIR, u'file.txt')), u'content_type': PLAIN_TEXT, u'checksum': u'KHRs/+ZSrc/FuuR4qz/PZQ==', u'slices': (), - u'metadata': { - u'contentEncoding': u'gzip', - }, }, + # { + # u'path': os.path.realpath(os.path.join(DATA_DIR, u'file.txt.gz')), + # u'uncompressed': os.path.realpath(os.path.join(DATA_DIR, u'file.txt')), + # u'content_type': PLAIN_TEXT, + # u'checksum': u'KHRs/+ZSrc/FuuR4qz/PZQ==', + # u'slices': (), + # u'metadata': { + # u'contentEncoding': u'gzip', + # }, + # }, ) ENCRYPTED_ERR = ( b'The target object is encrypted by a customer-supplied encryption key.')