Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion atest/robot/standard_libraries/string/encode_decode.robot
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ Decode Non-ASCII Bytes To String Using Incompatible Encoding
Decode Non-ASCII Bytes To String Using Incompatible Encoding And Error Handler
Check Test Case ${TESTNAME}

Decoding String Fails
Decoding String Does Not Fail
Check Test Case ${TESTNAME}
7 changes: 4 additions & 3 deletions atest/testdata/standard_libraries/string/encode_decode.robot
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,10 @@ Decode Non-ASCII Bytes To String Using Incompatible Encoding And Error Handler
${string} = Decode Bytes To String ${UTF-8} ASCII replace
Should Be Equal ${string} Hyv\ufffd\ufffd

Decoding String Fails
[Documentation] FAIL TypeError: Cannot decode strings.
Decode Bytes To String hello ASCII
Decoding String Does Not Fail
${string} = Decode Bytes To String hello ASCII
Should Be Equal ${string} hello


*** Keywords ***
Create Byte String Variables
Expand Down
Loading