Skip to content

Commit

Permalink
aruco: change test result order for OpenCV 4.10.0
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed Jun 5, 2024
1 parent cc99315 commit fedd6b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aruco_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func TestDetectMarkers(t *testing.T) {
defer detector.Close()

_, markerIds, _ := detector.DetectMarkers(img)
expected := []int{203, 124, 23, 40, 98, 62}
expected := []int{40, 98, 62, 23, 124, 203}
if !reflect.DeepEqual(markerIds, expected) {
t.Error(fmt.Sprintf("Marker id expected %v got %v", expected, markerIds))
}
Expand Down

0 comments on commit fedd6b4

Please sign in to comment.