From 571a0fb320030086199b48a2dcedccfb6a4dc2bb Mon Sep 17 00:00:00 2001 From: eternnoir Date: Wed, 19 Aug 2015 18:13:40 +0800 Subject: [PATCH] Fix test case error. --- tests/test_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_types.py b/tests/test_types.py index 9686b75..cb4d1ca 100644 --- a/tests/test_types.py +++ b/tests/test_types.py @@ -110,5 +110,5 @@ def test_json_contact(): def test_json_voice(): json_string = r'{"duration": 0,"mime_type": "audio/ogg","file_id": "AwcccccccDH1JaB7w_gyFjYQxVAg","file_size": 10481}' voice = types.Voice.de_json(json_string) - assert voice.duration == 0; + assert voice.duration == 0 assert voice.file_size == 10481