We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b087966 commit ae6c387Copy full SHA for ae6c387
1 file changed
tests/test_canvas_object.py
@@ -74,7 +74,9 @@ def test_set_attributes_with_content_type(self, m):
74
self.canvas_object.set_attributes(attributes)
75
76
self.assertTrue(hasattr(self.canvas_object, "content-type"))
77
- self.assertEqual(getattr(self.canvas_object, 'content-type'), "application/json")
+ self.assertEqual(
78
+ getattr(self.canvas_object, "content-type"), "application/json"
79
+ )
80
self.assertTrue(hasattr(self.canvas_object, "content_type"))
81
self.assertEqual(self.canvas_object.content_type, "another_application/json")
82
self.assertTrue(hasattr(self.canvas_object, "filename"))
0 commit comments