fix(url_tree): fix test url [skip ci] (#3940)

pull/3989/head
Brian 2023-03-24 20:26:00 +08:00 committed by GitHub
parent bd892e6a63
commit 663814c9ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -8,16 +8,16 @@ import (
func testTree() (*url_tree.Node, error) {
text := `folder1:
name1:url1
url2
name1:https://url1
http://url2
folder2:
url3
url4
url5
http://url3
http://url4
http://url5
folder3:
url6
url7
url8`
http://url6
http://url7
http://url8`
return url_tree.BuildTree(text, false)
}