@@ -27,8 +27,8 @@ def test_standard(tmpdir):
27
27
if buf ['geometry' ]['type' ] == 'Polygon' :
28
28
e_x , e_y = e_pair
29
29
a_x , a_y = a_pair
30
- assert round (e_x , 7 ) == round (a_x , 7 )
31
- assert round (e_y , 7 ) == round (a_y , 7 )
30
+ assert round (e_x , 3 ) == round (a_x , 3 )
31
+ assert round (e_y , 3 ) == round (a_y , 3 )
32
32
33
33
34
34
def test_distance_field (tmpdir ):
@@ -50,8 +50,8 @@ def test_distance_field(tmpdir):
50
50
if buf ['geometry' ]['type' ] == 'Polygon' :
51
51
e_x , e_y = e_pair
52
52
a_x , a_y = a_pair
53
- assert round (e_x , 7 ) == round (a_x , 7 )
54
- assert round (e_y , 7 ) == round (a_y , 7 )
53
+ assert round (e_x , 3 ) == round (a_x , 3 )
54
+ assert round (e_y , 3 ) == round (a_y , 3 )
55
55
56
56
57
57
def test_buf_crs (tmpdir ):
@@ -78,8 +78,8 @@ def test_buf_crs(tmpdir):
78
78
if buf ['geometry' ]['type' ] == 'Polygon' :
79
79
e_x , e_y = e_pair
80
80
a_x , a_y = a_pair
81
- assert round (e_x , 7 ) == round (a_x , 7 )
82
- assert round (e_y , 7 ) == round (a_y , 7 )
81
+ assert round (e_x , 3 ) == round (a_x , 3 )
82
+ assert round (e_y , 3 ) == round (a_y , 3 )
83
83
84
84
85
85
def test_buf_dst_crs (tmpdir ):
@@ -107,5 +107,5 @@ def test_buf_dst_crs(tmpdir):
107
107
if buf ['geometry' ]['type' ] == 'Polygon' :
108
108
e_x , e_y = e_pair
109
109
a_x , a_y = a_pair
110
- assert round (e_x , 7 ) == round (a_x , 7 )
111
- assert round (e_y , 7 ) == round (a_y , 7 )
110
+ assert round (e_x , 3 ) == round (a_x , 3 )
111
+ assert round (e_y , 3 ) == round (a_y , 3 )
0 commit comments