Skip to content

Commit

Permalink
fix sanity check error
Browse files Browse the repository at this point in the history
  • Loading branch information
aida-shumburo committed Sep 26, 2024
1 parent d0733fe commit 6cc07cc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/unit/modules/network/sonic/sonic_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ 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 6cc07cc

Please sign in to comment.