Skip to content

Commit ed6baaf

Browse files
committed
Fix indentation error in attachment_test
1 parent d5ca101 commit ed6baaf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/attachment_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ def test_AttachmentInitAnonDisplay(self):
9898
self.assertEqual(attachment.fileurl, 'test.com/test.pdf')
9999
self.languageMapVerificationHelper(attachment.display)
100100

101-
102101
def test_AttachmentInitAnonDescription(self):
103102
attachment = Attachment(usage_type='test', display=None, description={"en-US":"test"}, content_type='test', length=1, sha2='test', fileurl='test.com/test.pdf')
104103
self.assertEqual(attachment.usage_type, 'test')
@@ -201,7 +200,7 @@ def test_setDescriptionExceptionBadMap(self):
201200
with self.assertRaises(ValueError):
202201
attachment.description = ({"bad map"})
203202

204-
def test_FromJSONEmptyObject(self):
203+
def test_FromJSONEmptyObject(self):
205204
attachment = Attachment.from_json('{}')
206205
self.assertIsNone(attachment.usage_type)
207206
self.assertIsNone(attachment.display)

0 commit comments

Comments
 (0)