diff --git a/tests/frontends/mpd/protocol/status_test.py b/tests/frontends/mpd/protocol/status_test.py index 24f24ab2..bd75efb5 100644 --- a/tests/frontends/mpd/protocol/status_test.py +++ b/tests/frontends/mpd/protocol/status_test.py @@ -21,7 +21,6 @@ class StatusHandlerTest(protocol.BaseTestCase): self.assertInResponse('Title: ') self.assertInResponse('Album: ') self.assertInResponse('Track: 0') - self.assertInResponse('Date: ') self.assertInResponse('Pos: 0') self.assertInResponse('Id: 0') self.assertInResponse('OK') diff --git a/tests/frontends/mpd/translator_test.py b/tests/frontends/mpd/translator_test.py index 860e01e9..96d5f316 100644 --- a/tests/frontends/mpd/translator_test.py +++ b/tests/frontends/mpd/translator_test.py @@ -36,8 +36,7 @@ class TrackMpdFormatTest(unittest.TestCase): self.assertIn(('Title', ''), result) self.assertIn(('Album', ''), result) self.assertIn(('Track', 0), result) - self.assertIn(('Date', ''), result) - self.assertEqual(len(result), 7) + self.assertEqual(len(result), 6) def test_track_to_mpd_format_with_position(self): result = translator.track_to_mpd_format(Track(), position=1)