tests: Fix typo in class name

This commit is contained in:
Stein Magnus Jodal 2012-11-18 16:11:18 +01:00
parent 59919b279c
commit 74a6589668

View File

@ -7,7 +7,7 @@ from mopidy.models import Artist, Album, TlTrack, Track, Playlist
from tests import unittest
class GenericCopyTets(unittest.TestCase):
class GenericCopyTest(unittest.TestCase):
def compare(self, orig, other):
self.assertEqual(orig, other)
self.assertNotEqual(id(orig), id(other))