Remove testListTwoParamsTwoChannels's assertions from testListTwoParams

This commit is contained in:
Valentin Lorentz 2023-04-08 18:59:52 +02:00
parent 67f08fb211
commit 6559bb34c0

View File

@ -332,12 +332,6 @@ class ListTestCase(_BasedListTestCase):
self.sendLine(3, "LIST #chan1 <1")
self.assertEqual(self._parseChanList(3), set())
self.sendLine(3, "LIST #chan1,#chan2 >0")
self.assertEqual(self._parseChanList(3), {"#chan1", "#chan2"})
self.sendLine(3, "LIST #chan1,#chan2 <1")
self.assertEqual(self._parseChanList(3), set())
@cases.mark_isupport("ELIST")
@cases.mark_specifications("Modern")
def testListTwoParamsTwoChannels(self):