Skip to content

Commit

Permalink
Use implicit unicode literals
Browse files Browse the repository at this point in the history
  • Loading branch information
sbraz committed Mar 21, 2016
1 parent 76da2a0 commit be5082d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import os
import unittest

Expand Down Expand Up @@ -65,7 +66,7 @@ def setUp(self):
def test_parse_file_with_unicode_tags(self):
self.assertEqual(
self.mi.tracks[0].title,
u"Dès Noël où un zéphyr haï me vêt de glaçons "
u"würmiens je dîne d’exquis rôtis de bœuf au kir à "
u"l’aÿ d’âge mûr & cætera !"
"Dès Noël où un zéphyr haï me vêt de glaçons "
"würmiens je dîne d’exquis rôtis de bœuf au kir à "
"l’aÿ d’âge mûr & cætera !"
)

0 comments on commit be5082d

Please sign in to comment.