From a37a52633be4e62d3ea463e8df0b2ea2861ab81d Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Sun, 29 May 2016 04:03:54 -0400 Subject: [PATCH] replace deprecated assertNotEquals() with assertNotEqual() --- test/test_library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_library.py b/test/test_library.py index af285048a..60ea868fa 100644 --- a/test/test_library.py +++ b/test/test_library.py @@ -1148,7 +1148,7 @@ class FilesizeTest(unittest.TestCase, TestHelper): def test_filesize(self): item = self.add_item_fixture() - self.assertNotEquals(item.filesize, 0) + self.assertNotEqual(item.filesize, 0) def test_nonexistent_file(self): item = beets.library.Item()