count used channel times

This commit is contained in:
YiChin2018
2019-07-24 20:18:15 +08:00
parent 857ea23420
commit 2d566a420d
4 changed files with 13 additions and 12 deletions
+1 -1
View File
@@ -182,7 +182,7 @@ class UniRearrangeMuxChannelTest(unittest.TestCase):
def test_count_channel(self):
self.assertEqual(count_channel(to_channel_table(7, 3, 2)), count_channel_without_re(to_channel_table(7, 3, 2)))
self.assertEqual(count_channel(to_channel_table(0, 1, 2)), count_channel_without_re(to_channel_table(0, 1, 2)))
self.assertEqual(count_channel(to_channel_table(0, 10, 2)), count_channel_without_re(to_channel_table(0, 10, 2)))
if __name__ == '__main__':