Skip to content

Commit

Permalink
fixed func name typo in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
diegohce committed Oct 3, 2024
1 parent 076bf44 commit 42e9139
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions objdetect_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ func TestFaceDetectorYN(t *testing.T) {
}
fd.SetInputSize(sz)

t1 := fd.GetMNSThreshold()
t1 := fd.GetNMSThreshold()
fd.SetNMSThreshold(t1)

t2 := fd.GetScoreThreshold()
Expand Down Expand Up @@ -272,7 +272,7 @@ func TestFaceDetectorYNWithParams(t *testing.T) {
}
fd.SetInputSize(sz)

t1 := fd.GetMNSThreshold()
t1 := fd.GetNMSThreshold()
fd.SetNMSThreshold(t1)

t2 := fd.GetScoreThreshold()
Expand Down Expand Up @@ -315,7 +315,7 @@ func TestFaceDetectorYNFromBytes(t *testing.T) {
}
fd.SetInputSize(sz)

t1 := fd.GetMNSThreshold()
t1 := fd.GetNMSThreshold()
fd.SetNMSThreshold(t1)

t2 := fd.GetScoreThreshold()
Expand Down Expand Up @@ -357,7 +357,7 @@ func TestFaceDetectorYNFromBytesWithParams(t *testing.T) {
}
fd.SetInputSize(sz)

t1 := fd.GetMNSThreshold()
t1 := fd.GetNMSThreshold()
fd.SetNMSThreshold(t1)

t2 := fd.GetScoreThreshold()
Expand Down

0 comments on commit 42e9139

Please sign in to comment.