[PyOV] Fix typo in filename generator (#13948)

This commit is contained in:
Jan Iwaszkiewicz 2022-11-11 10:11:13 +01:00 committed by GitHub
parent 8e9a6d3457
commit b44eb83551
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,6 +83,6 @@ def test_deprecation_decorator():
def create_filename_for_test(test_name):
python_version = str(sys.version_info.major) + "." + str(sys.version_info.minor)
python_version = str(sys.version_info.major) + "_" + str(sys.version_info.minor)
filename = "./" + test_name.replace("test_", "") + "_" + python_version
return (filename + ".xml", filename + ".bin")