mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
tests: fix warnings when doing ./v -W -progress -check-syntax test-fixed
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
import encoding.utf8 { validate_str }
|
||||
import encoding.utf8
|
||||
|
||||
fn test_validate_str() {
|
||||
assert validate_str('añçá') == true
|
||||
assert validate_str('\x61\xC3\xB1\xC3\xA7\xC3\xA1') == true
|
||||
assert validate_str('\xC0\xC1') == false
|
||||
assert validate_str('\xF5\xFF') == false
|
||||
assert validate_str('\xE0\xEF') == false
|
||||
assert utf8.validate_str('añçá') == true
|
||||
assert utf8.validate_str('\x61\xC3\xB1\xC3\xA7\xC3\xA1') == true
|
||||
assert utf8.validate_str('\xC0\xC1') == false
|
||||
assert utf8.validate_str('\xF5\xFF') == false
|
||||
assert utf8.validate_str('\xE0\xEF') == false
|
||||
}
|
||||
|
Reference in New Issue
Block a user