Skip to content

Commit

Permalink
bug: fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
DeltaLaboratory committed Sep 30, 2023
1 parent d1d05dd commit fe7f7fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions search_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ import (
var search *Search

func TestSearch_SearchNode(t *testing.T) {
node, err := search.NodeByAddress("global", 0)
node, err := search.NodeByAddress("female", 0)
if err != nil {
t.Fatal(err)
}
data, err := search.SearchNode("global", HashTerm("big"), node)
data, err := search.SearchNode("female", HashTerm("big"), node)
if err != nil {
t.Fatal(err)
}
t.Log(data)
tags, err := search.TagSuggestionData("global", data)
tags, err := search.TagSuggestionData("female", data)
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit fe7f7fd

Please sign in to comment.