Skip to content

Commit 8e433fd

Browse files
author
--replace-all
committed
Add missing print in python installation test
1 parent aa21757 commit 8e433fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/python_opencv_test/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
def check_build_info():
1313
success = True
1414

15-
print("OpenCV Version:")
15+
print("OpenCV Version: {}".format(cv2.__version__))
1616
if (cv2.getVersionMajor() != CURRENT_OPENCV_BUILD_VERSION[0]) and (
1717
cv2.getVersionMinor() != CURRENT_OPENCV_BUILD_VERSION[1]) and (
1818
cv2.getVersionRevision() != CURRENT_OPENCV_BUILD_VERSION[2]):

0 commit comments

Comments
 (0)