Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
kbkpbot committed Jun 12, 2024
1 parent e1ee226 commit bcf4c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vlib/builtin/string_test.v
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ fn test_ends_with() {
fn test_between() {
s := 'hello [man] how you doing'
assert s.find_between('[', ']') == 'man'
assert s.find_between('[','A') == ''
assert s.find_between('',']') == ''
assert s.find_between('[', 'A') == ''
assert s.find_between('A', ']') == ''
}

fn test_compare() {
Expand Down

0 comments on commit bcf4c6f

Please sign in to comment.