summaryrefslogtreecommitdiff
path: root/ironic/tests/unit/common/test_images.py
diff options
context:
space:
mode:
Diffstat (limited to 'ironic/tests/unit/common/test_images.py')
-rw-r--r--ironic/tests/unit/common/test_images.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ironic/tests/unit/common/test_images.py b/ironic/tests/unit/common/test_images.py
index dd782c687..5530feb38 100644
--- a/ironic/tests/unit/common/test_images.py
+++ b/ironic/tests/unit/common/test_images.py
@@ -318,7 +318,8 @@ class IronicImagesTestCase(base.TestCase):
autospec=True)
def test_is_source_a_path_content_length(self, validate_mock):
mock_response = mock.Mock()
- mock_response.headers = {'Content-Length': 1}
+ mock_response.headers = {'Content-Length': 1,
+ 'Content-Type': 'text/plain'}
validate_mock.return_value = mock_response
self.assertFalse(images.is_source_a_path('context', 'http://foo/bar/'))
validate_mock.assert_called_once_with(mock.ANY, 'http://foo/bar/')