diff --git a/foolbox/tests/conftest.py b/foolbox/tests/conftest.py index 323ad839..e517c788 100644 --- a/foolbox/tests/conftest.py +++ b/foolbox/tests/conftest.py @@ -117,7 +117,7 @@ def mean_brightness_net(images): # bn_model is also needed as a function, so we create the fixture separately @pytest.fixture(name='bn_model') -def bn_model_fixutre(): +def bn_model_fixture(): cm_model = contextmanager(bn_model) with cm_model() as model: yield model @@ -192,7 +192,7 @@ def gl_bn_model(): # gl_bn_model is also needed as a function, so we create the fixture separately @pytest.fixture(name='gl_bn_model') -def gl_bn_model_fixutre(): +def gl_bn_model_fixture(): cm_model = contextmanager(gl_bn_model) with cm_model() as model: yield model @@ -441,7 +441,7 @@ def backward(x): # binarized_bn_model is also needed as a function, so we create the # fixture separately @pytest.fixture(name='bn_model') -def binarized_bn_model_fixutre(): +def binarized_bn_model_fixture(): cm_model = contextmanager(binarized_bn_model) with cm_model() as model: yield model @@ -507,7 +507,7 @@ def backward(x): # binarized2_bn_model is also needed as a function, so we create the # fixture separately @pytest.fixture(name='binarized2_bn_model') -def binarized2_bn_model_fixutre(): +def binarized2_bn_model_fixture(): cm_model = contextmanager(binarized2_bn_model) with cm_model() as model: yield model