Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Glatzel committed Nov 2, 2024
1 parent 0c97457 commit efa0ac7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arithmetic/test_datum_compense_loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def data_figures():
if os.getenv("CI"):
return [0]
else: # pragma: nocover
return range(6)
return range(6)


@pytest.fixture(params=data_figures(), scope="module")
Expand All @@ -19,7 +19,7 @@ def sample_coords(request):


def test_python(benchmark, sample_coords):
def foo(x1, y1, h1):
def foo(x1, y1, h1):
q = h1 / 6378_137
factor = q / (1 + q)
x1 = x1 - factor * (x1 - 500000)
Expand Down

0 comments on commit efa0ac7

Please sign in to comment.