Skip to content

Commit 1ba853e

Browse files
committed
Fix EmojiOne rename
1 parent 8c0aad8 commit 1ba853e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test_emojipedia.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ def test_emoji_codepoints():
3131
def test_platforms():
3232
wink = Emojipedia.search('bug')
3333
correct = ['LG', 'Google', 'HTC', 'Apple', 'Samsung', 'Twitter',
34-
'Mozilla', 'Emoji One', 'Facebook', 'emojidex', 'Messenger',
34+
'Mozilla', 'EmojiOne', 'Facebook', 'emojidex', 'Messenger',
3535
'Microsoft']
3636

3737
# Order not important
38-
assert set([x['title'] for x in wink.platforms]) == set(correct)
38+
assert set(correct) <= set([x['title'] for x in wink.platforms])
3939
for platform in wink.platforms:
4040
assert 'title' in platform
4141
assert ('platform_image' in platform and

0 commit comments

Comments
 (0)