Skip to content

Commit cb4d09b

Browse files
committed
Removed references to wax._private.exceptions (replaced with wax.exceptions)
1 parent 2a0c8ca commit cb4d09b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/python/functional/beekeeper_wallet_tests/test_proposal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
get_list_proposal_votes_args,
1919
prepare_proposal,
2020
)
21-
from wax._private.exceptions import WaxValidationFailedError
21+
from wax.exceptions import WaxValidationFailedError
2222

2323

2424
def list_proposals_by_creator(wallet: tt.Wallet, creator_name: str) -> list:

tests/python/functional/datagen_tests/recurrent_transfer_tests/test_one_execution_of_the_recurrent_transfer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import test_tools as tt
66
from hive_local_tools import run_for
7-
from wax._private.exceptions import WaxValidationFailedError
7+
from wax.exceptions import WaxValidationFailedError
88

99

1010
@run_for("testnet")

tests/python/functional/datagen_tests/recurrent_transfer_tests/test_recurrence_time_is_less_than_24h.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import test_tools as tt
66
from hive_local_tools import run_for
7-
from wax._private.exceptions import WaxValidationFailedError
7+
from wax.exceptions import WaxValidationFailedError
88

99

1010
@run_for("testnet")

tests/python/functional/operation_tests/comment_tests/test_comment_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import test_tools as tt
77
from hive_local_tools.functional.python.operation.comment import Comment
8-
from wax._private.exceptions import WaxError, WaxValidationFailedError
8+
from wax.exceptions import WaxError, WaxValidationFailedError
99

1010
UPDATED_COMMENT_OPTIONS = {
1111
"max_accepted_payout": tt.Asset.Tbd(100),

0 commit comments

Comments
 (0)