Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Fix increment in test - 1.7.x #7727

Merged
merged 1 commit into from
Aug 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/nodeos_under_min_avail_ram.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ def setName(self, num):
allDone=False
if not allDone:
time.sleep(5)
if ++count>5:
count+=1
if count>5:
Utils.cmdError("All Nodes should have died")
errorExit("Failure - All Nodes should have died")

Expand Down