core: test that we are using 4.0.x version now

Signed-off-by: Ron Evans <ron@hybridgroup.com>
This commit is contained in:
Ron Evans
2018-11-13 18:22:54 +01:00
parent faaba7aa14
commit c54b1384e1

View File

@@ -8,7 +8,7 @@ import (
func TestVersions(t *testing.T) {
ocvv := OpenCVVersion()
if !strings.Contains(ocvv, "3.4") {
if !strings.Contains(ocvv, "4.0") {
t.Error("Wrong version of OpenCV:", ocvv)
}