bpd: bump protocol version to 0.14.0

This commit is contained in:
Carl Suster 2019-04-05 11:20:00 +11:00
parent d05ca2c2b0
commit 6fbf3853f2
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ from beets import dbcore
from beets.mediafile import MediaFile
import six
PROTOCOL_VERSION = '0.13.0'
PROTOCOL_VERSION = '0.14.0'
BUFSIZE = 1024
HELLO = u'OK MPD %s' % PROTOCOL_VERSION

View file

@ -354,7 +354,7 @@ class BPDTestHelper(unittest.TestCase, TestHelper):
class BPDTest(BPDTestHelper):
def test_server_hello(self):
with self.run_bpd(do_hello=False) as client:
self.assertEqual(client.readline(), b'OK MPD 0.13.0\n')
self.assertEqual(client.readline(), b'OK MPD 0.14.0\n')
def test_unknown_cmd(self):
with self.run_bpd() as client: