From 74a65896687059ab057e8c5c11cb18512ac92422 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sun, 18 Nov 2012 16:11:18 +0100 Subject: [PATCH] tests: Fix typo in class name --- tests/models_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/models_test.py b/tests/models_test.py index d5d58ace..6c1520cb 100644 --- a/tests/models_test.py +++ b/tests/models_test.py @@ -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))