@@ -111,7 +111,7 @@ def test_distortion_radial_k1_get_set_parameters():
111111 assert list (parameters ) == DEFAULT_PARAMETERS_K1 , \
112112 "The distortion parameters have not been correctly initialized with the default values"
113113
114- # Parametes are given as a reference: editing 'parameters' should update the object
114+ # Parameters are given as a reference: editing 'parameters' should update the object
115115 for idx , _ in enumerate (parameters ):
116116 parameters [idx ] = NON_DEFAULT_PARAMETERS_K1 [idx ]
117117
@@ -254,7 +254,7 @@ def test_distortion_radial_k3_get_set_parameters():
254254 assert list (parameters ) == DEFAULT_PARAMETERS_K3 , \
255255 "The distortion parameters have not been correctly initialized with the default values"
256256
257- # Parametes are given as a reference: editing 'parameters' should update the object
257+ # Parameters are given as a reference: editing 'parameters' should update the object
258258 for idx , _ in enumerate (parameters ):
259259 parameters [idx ] = NON_DEFAULT_PARAMETERS_K3 [idx ]
260260
@@ -397,7 +397,7 @@ def test_distortion_radial_k3pt_get_set_parameters():
397397 assert list (parameters ) == DEFAULT_PARAMETERS_K3 , \
398398 "The distortion parameters have not been correctly initialized with the default values"
399399
400- # Parametes are given as a reference: editing 'parameters' should update the object
400+ # Parameters are given as a reference: editing 'parameters' should update the object
401401 for idx , _ in enumerate (parameters ):
402402 parameters [idx ] = NON_DEFAULT_PARAMETERS_K3 [idx ]
403403
@@ -501,7 +501,7 @@ def test_distortion_radial_compare():
501501 assert k11 == k12 , "K1 distortion parameters are identical"
502502 k11 .setParameters (NON_DEFAULT_PARAMETERS_K1 )
503503 assert not k11 == k12 , \
504- "K1 distortion paramters of the first object have been updated, " \
504+ "K1 distortion parameters of the first object have been updated, " \
505505 "they should not be equal"
506506
507507 k31 = av .DistortionRadialK3 ()
0 commit comments