mpd: Change name of output from 'None' to 'Default'

This commit is contained in:
Stein Magnus Jodal 2012-12-18 23:18:51 +01:00
parent 6008a53027
commit 12942631bf
2 changed files with 2 additions and 2 deletions

View File

@ -39,6 +39,6 @@ def outputs(context):
"""
return [
('outputid', 0),
('outputname', None),
('outputname', 'Default'),
('outputenabled', 1),
]

View File

@ -15,6 +15,6 @@ class AudioOutputHandlerTest(protocol.BaseTestCase):
def test_outputs(self):
self.sendRequest('outputs')
self.assertInResponse('outputid: 0')
self.assertInResponse('outputname: None')
self.assertInResponse('outputname: Default')
self.assertInResponse('outputenabled: 1')
self.assertInResponse('OK')