fix(test): update error code for empty input case

This commit is contained in:
Jan K9f 2025-03-04 15:46:38 +01:00
commit be5e272af5
Signed by: jank
GPG key ID: 22BEAC760B3333D6

View file

@ -20,7 +20,7 @@ func PrintString(str string) (err error) {
if str == "" { if str == "" {
return CustomError{ return CustomError{
Message: "Input is empty", Message: "Input is empty",
Code: "some code", Code: "Code 5",
} }
} }