Skip to content

Commit ae6c387

Browse files
committed
now following correct style implementations for issue ucfopen#647
1 parent b087966 commit ae6c387

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_canvas_object.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ def test_set_attributes_with_content_type(self, m):
7474
self.canvas_object.set_attributes(attributes)
7575

7676
self.assertTrue(hasattr(self.canvas_object, "content-type"))
77-
self.assertEqual(getattr(self.canvas_object, 'content-type'), "application/json")
77+
self.assertEqual(
78+
getattr(self.canvas_object, "content-type"), "application/json"
79+
)
7880
self.assertTrue(hasattr(self.canvas_object, "content_type"))
7981
self.assertEqual(self.canvas_object.content_type, "another_application/json")
8082
self.assertTrue(hasattr(self.canvas_object, "filename"))

0 commit comments

Comments
 (0)