Do not check error_code with empty content length

This matches test_bucket_create_bad_contentlength_negative.
This commit is contained in:
Andrew Gaul 2015-01-06 13:53:26 -08:00
parent 4a67f6c0f3
commit c280ade220

View file

@ -722,7 +722,6 @@ def test_bucket_create_bad_contentlength_empty():
eq(e.status, 400) eq(e.status, 400)
eq(e.reason, 'Bad Request') eq(e.reason, 'Bad Request')
eq(e.error_code, None)
@attr(resource='bucket') @attr(resource='bucket')