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

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

View file

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