Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
prasannavl committed Sep 6, 2024
1 parent 082ece2 commit e235542
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/functional/feature_community_governance.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import time


token_undepr_exlusive_msg = "Token undeprecation must not have any other changes"
token_undepr_exclusive_msg = "Token undeprecation must not have any other changes"
token_depr_exclusive_err_msg = "Token deprecation must not have any other changes"


Expand Down Expand Up @@ -816,7 +816,7 @@ def foundation_deprecate_token(self):
# Foundation undeprecate and set other values
assert_raises_rpc_error(
-32600,
token_undepr_exlusive_msg,
token_undepr_exclusive_msg,
self.nodes[0].updatetoken,
1,
{
Expand All @@ -826,7 +826,7 @@ def foundation_deprecate_token(self):
)
assert_raises_rpc_error(
-32600,
token_undepr_exlusive_msg,
token_undepr_exclusive_msg,
self.nodes[0].updatetoken,
1,
{
Expand All @@ -836,7 +836,7 @@ def foundation_deprecate_token(self):
)
assert_raises_rpc_error(
-32600,
token_undepr_exlusive_msg,
token_undepr_exclusive_msg,
self.nodes[0].updatetoken,
1,
{
Expand All @@ -846,7 +846,7 @@ def foundation_deprecate_token(self):
)
assert_raises_rpc_error(
-32600,
token_undepr_exlusive_msg,
token_undepr_exclusive_msg,
self.nodes[0].updatetoken,
1,
{
Expand Down Expand Up @@ -932,7 +932,7 @@ def governance_deprecate_token(self):
# Governance undeprecate and set other values
assert_raises_rpc_error(
-32600,
token_undepr_exlusive_msg,
token_undepr_exclusive_msg,
self.nodes[1].updatetoken,
1,
{
Expand All @@ -942,7 +942,7 @@ def governance_deprecate_token(self):
)
assert_raises_rpc_error(
-32600,
token_undepr_exlusive_msg,
token_undepr_exclusive_msg,
self.nodes[1].updatetoken,
1,
{
Expand All @@ -952,7 +952,7 @@ def governance_deprecate_token(self):
)
assert_raises_rpc_error(
-32600,
token_undepr_exlusive_msg,
token_undepr_exclusive_msg,
self.nodes[1].updatetoken,
1,
{
Expand All @@ -962,7 +962,7 @@ def governance_deprecate_token(self):
)
assert_raises_rpc_error(
-32600,
token_undepr_exlusive_msg,
token_undepr_exclusive_msg,
self.nodes[1].updatetoken,
1,
{
Expand Down

0 comments on commit e235542

Please sign in to comment.