diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2023-02-01 15:39:18 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-01 15:39:18 -0500 |
| commit | 33303f08bf179431326a65f394b76f5c0ca1e71e (patch) | |
| tree | b1d2c5e517de3658dd5e3d90beda169d485d27c1 /tests/topotests/lib/pim.py | |
| parent | b54ec1733b4cbf52911a3922026bc5112e2810be (diff) | |
| parent | f932966b02478cf3a3dd443d98eea7cc95c8379a (diff) | |
Merge pull request #12713 from opensourcerouting/fix/json_naming_deprecation
*: Drop deprecated incorrect JSON fields with wrong naming
Diffstat (limited to 'tests/topotests/lib/pim.py')
| -rw-r--r-- | tests/topotests/lib/pim.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/topotests/lib/pim.py b/tests/topotests/lib/pim.py index 32dda82712..0af1ecf6a0 100644 --- a/tests/topotests/lib/pim.py +++ b/tests/topotests/lib/pim.py @@ -1827,12 +1827,12 @@ def verify_pim_state( else: pim_state_json = show_pim_state_json[grp_addr][src_address] - if pim_state_json["Installed"] == installed_fl: + if pim_state_json["installed"] == installed_fl: logger.info( "[DUT %s]: group %s is installed flag: %s", dut, grp_addr, - pim_state_json["Installed"], + pim_state_json["installed"], ) for interface, data in pim_state_json[iif].items(): if interface != oil: |
