@@ -1932,27 +1932,27 @@ def test_format_coord():
19321932 xv = 0.1
19331933 yv = 0.1
19341934 fig .canvas .draw ()
1935- assert ax .format_coord (xv , yv ) == 'x=10.5227, y=1.0417, z=0.1444'
1935+ assert ax .format_coord (xv , yv ) == 'x=10.5227, y pane =1.0417, z=0.1444'
19361936
19371937 # Modify parameters
19381938 ax .view_init (roll = 30 , vertical_axis = "y" )
19391939 fig .canvas .draw ()
1940- assert ax .format_coord (xv , yv ) == 'x=9.1875, y=0.9761, z=0.1291'
1940+ assert ax .format_coord (xv , yv ) == 'x pane =9.1875, y=0.9761, z=0.1291'
19411941
19421942 # Reset parameters
19431943 ax .view_init ()
19441944 fig .canvas .draw ()
1945- assert ax .format_coord (xv , yv ) == 'x=10.5227, y=1.0417, z=0.1444'
1945+ assert ax .format_coord (xv , yv ) == 'x=10.5227, y pane =1.0417, z=0.1444'
19461946
19471947 # Check orthographic projection
19481948 ax .set_proj_type ('ortho' )
19491949 fig .canvas .draw ()
1950- assert ax .format_coord (xv , yv ) == 'x=10.8869, y=1.0417, z=0.1528'
1950+ assert ax .format_coord (xv , yv ) == 'x=10.8869, y pane =1.0417, z=0.1528'
19511951
19521952 # Check non-default perspective projection
19531953 ax .set_proj_type ('persp' , focal_length = 0.1 )
19541954 fig .canvas .draw ()
1955- assert ax .format_coord (xv , yv ) == 'x=9.0620, y=1.0417, z=0.1110'
1955+ assert ax .format_coord (xv , yv ) == 'x=9.0620, y pane =1.0417, z=0.1110'
19561956
19571957
19581958def test_get_axis_position ():
0 commit comments