removed unnecessary imports from tests

This commit is contained in:
Fabian Joswig 2021-10-15 14:13:06 +01:00
parent bb9790acd7
commit e46746e4ca
4 changed files with 12 additions and 22 deletions

View file

@ -4,6 +4,7 @@ import pytest
np.random.seed(0)
def test_root_linear():
def root_function(x, d):
@ -16,4 +17,3 @@ def test_root_linear():
assert np.isclose(my_root.value, value)
difference = my_obs - my_root
assert all(np.isclose(0.0, difference.deltas['t']))