Skip to content

Commit fdf8167

Browse files
committed
fix test windows
1 parent ecc8b31 commit fdf8167

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

vlib/v/gen/native/tests/string.vv

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,14 @@ fn test_for_i_in_len() {
3636
}
3737

3838
fn test_for_c_in_string() {
39-
$if !windows {
39+
$if windows {
40+
println('0')
41+
println('97')
42+
println('1')
43+
println('98')
44+
println('2')
45+
println('99')
46+
} $else {
4047
s := 'abc'
4148
for i, c in s {
4249
println(i)

0 commit comments

Comments
 (0)