Skip to content

Commit

Permalink
remove commented out line
Browse files Browse the repository at this point in the history
  • Loading branch information
aida-shumburo authored Sep 26, 2024
1 parent 5713bdd commit 73afd27
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/unit/modules/network/sonic/sonic_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 73afd27

Please sign in to comment.