From 17c6ee17ef1b5d88741081bc5d3effb3d6f55a79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nurzhan=20Sak=C3=A9n?= Date: Thu, 23 May 2024 16:02:06 +0400 Subject: [PATCH] fix(pytests): remove `$` from reserved characters in error message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nurzhan Sakén --- client_cli/pytests/common/consts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_cli/pytests/common/consts.py b/client_cli/pytests/common/consts.py index 2f4d2b7dc26..030b09b3722 100644 --- a/client_cli/pytests/common/consts.py +++ b/client_cli/pytests/common/consts.py @@ -23,7 +23,7 @@ class Stderr(Enum): INVALID_VALUE_TYPE = "should be either `Store` or `Numeric`" RESERVED_CHARACTER = ( "The `@` character is reserved for `account@domain` constructs," - " `#` — for `asset#domain` and `$` — for `trigger$domain`." + "and `#` — for `asset#domain`." ) WHITESPACES = "White space not allowed" INSUFFICIENT_FUNDS = "Not enough quantity to transfer/burn"