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

Commit

Permalink
Fix py tests after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
alsala authored and cronicc committed Sep 28, 2021
1 parent 8a12135 commit 5cee47d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qa/rpc-tests/sc_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def run_test(self):
mark_logs("\nNode 1 try creating a SC with epochLength that is over the max limit", self.nodes, DEBUG_MODE)

try:
self.nodes[1].sc_create(4033, "ada", Decimal("1.0"), vk, "aa" * SC_FIELD_SIZE)
self.nodes[1].dep_sc_create(4033, "ada", Decimal("1.0"), vk, "aa" * SC_FIELD_SIZE)
assert(True)
except JSONRPCException, e:
errorString = e.error['message']
Expand Down
2 changes: 1 addition & 1 deletion qa/rpc-tests/sc_create_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def run_test(self):

mark_logs("\nNode 1 create SC with a null epoch length in input", self.nodes, DEBUG_MODE)
try:
self.nodes[1].create_sidechain(cmdInput)
self.nodes[1].sc_create(cmdInput)
assert_true(False);
except JSONRPCException, e:
errorString = e.error['message']
Expand Down

0 comments on commit 5cee47d

Please sign in to comment.