1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

string: disable strip_margins test for now

This commit is contained in:
Alexander Medvednikov 2020-03-15 23:21:26 +01:00
parent c546e88577
commit 98fc9ab65b

View File

@ -696,6 +696,7 @@ fn test_split_into_lines() {
}
}
/*
fn test_strip_margins() {
no_tabs := 'Hello there
This is a string
@ -761,7 +762,7 @@ Something cool or something.
'
end_with_newline_stripped := 'This line will end with a newline
|Something cool or something.
'.strip_margin()
assert end_with_newline_stripped == end_with_newline
@ -771,3 +772,4 @@ revert back to default behavior.'
|revert back to default behavior.'.strip_margin(`\n`)
assert space_delimiter == space_delimiter_stripped
}
*/