Skip to content

Commit

Permalink
Merge pull request #567 from AntelopeIO/GH-561-test-fail-main
Browse files Browse the repository at this point in the history
[3.2 -> main] Fix Test: Specify a large time limit for cleos get table
  • Loading branch information
heifner authored Dec 12, 2022
2 parents 4c7c07c + 1996d5b commit 16214bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestHarness/Node.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def getEosAccount(self, name, exitOnError=False, returnType=ReturnType.json):

def getTable(self, contract, scope, table, exitOnError=False):
cmdDesc = "get table"
cmd="%s %s %s %s" % (cmdDesc, contract, scope, table)
cmd="%s --time-limit 99999 %s %s %s" % (cmdDesc, contract, scope, table)
msg="contract=%s, scope=%s, table=%s" % (contract, scope, table);
return self.processCleosCmd(cmd, cmdDesc, exitOnError=exitOnError, exitMsg=msg)

Expand Down

0 comments on commit 16214bb

Please sign in to comment.