Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/generic_config_updater/gu_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def rollback(duthost, cp=DEFAULT_CHECKPOINT_NAME):

Args:
duthost: Device Under Test (DUT)
rb: rollback filename
cp: rollback filename
"""
cmds = 'config rollback {} {}'.format(YANG_IGNORED_OPTIONS, cp)

Expand All @@ -237,7 +237,7 @@ def rollback_or_reload(duthost, cp=DEFAULT_CHECKPOINT_NAME):
"""
output = rollback(duthost, cp)

if output['rc'] or "Config rolled back successfull" not in output['stdout']:
if output['rc'] or "Config rolled back successfully" not in output['stdout']:
config_reload(duthost)
pytest.fail("config rollback failed. Restored by config_reload")

Expand Down