diff --git a/tests/unit/modules/network/sonic/sonic_module.py b/tests/unit/modules/network/sonic/sonic_module.py index c1b581bea..7dc562fef 100644 --- a/tests/unit/modules/network/sonic/sonic_module.py +++ b/tests/unit/modules/network/sonic/sonic_module.py @@ -154,7 +154,6 @@ def validate_config_requests(self, requests_sorted=False): # Sort by 'path' (primary) followed by 'method' (secondary) self.config_requests_valid.sort(key=lambda request: (request['path'], request['method'])) self.config_requests_sent.sort(key=lambda request: (request['path'], request['method'])) - #raise Exception(self.config_requests_sent) self.assertEqual(len(self.config_requests_valid), len(self.config_requests_sent)) for valid_request, sent_request in zip(self.config_requests_valid, self.config_requests_sent):