Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix core_dump_and_config_check in conftest (sonic-net#13619)
What is the motivation for this PR? Currently compare_running_config would return True if the first key / value is equal, which is incorrect. Sample: pre_running_config = { "key_a": "value_a", "key_b": "value_b" } cur_running_config = { "key_a": "value_a", "key_b": "another_value" } After compare "key_a" and find that they are equal, it will return True directly rather than continue to compare "key_b" How did you do it? Remove the incorrect return How did you verify/test it? Run tests
- Loading branch information