Remove old test for misspelled config option

See 6b9d766, which removed the option.
This commit is contained in:
Adrian Sampson 2017-01-07 17:19:02 -05:00
parent 0b5b20d799
commit e5e710033c

View file

@ -115,15 +115,6 @@ class PlayPluginTest(unittest.TestCase, TestHelper):
open_mock.assert_not_called()
def test_warning_threshold_backwards_compat(self, open_mock):
self.config['play']['warning_treshold'] = 1
self.add_item(title=u'another NiceTitle')
with control_stdin("a"):
self.run_command(u'play', u'nice')
open_mock.assert_not_called()
def test_command_failed(self, open_mock):
open_mock.side_effect = OSError(u"some reason")