Skip to content

Commit 1d601c4

Browse files
committed
Revert "Fixed Test"
This reverts commit b1c1a7b.
1 parent 273994e commit 1d601c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_inputcontactmessagecontent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ class TestInputContactMessageContent(object):
3434
phone_number = 'phone number'
3535
first_name = 'first name'
3636
last_name = 'last name'
37-
vcard = 'My vCard text'
37+
vCard = 'My vCard text'
3838

3939
def test_expected_values(self, input_contact_message_content):
4040
assert input_contact_message_content.first_name == self.first_name
4141
assert input_contact_message_content.phone_number == self.phone_number
4242
assert input_contact_message_content.last_name == self.last_name
43-
assert input_contact_message_content.vcard == self.vcard
43+
assert input_contact_message_content.vCard == self.vCard
4444

4545
def test_to_dict(self, input_contact_message_content):
4646
input_contact_message_content_dict = input_contact_message_content.to_dict()

0 commit comments

Comments
 (0)