Skip to content

Commit

Permalink
Merge pull request #319 from jonasrauber/typo
Browse files Browse the repository at this point in the history
fixed typo
  • Loading branch information
jonasrauber authored May 21, 2019
2 parents 5ecb86a + 2bb363b commit d9ef908
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions foolbox/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit d9ef908

Please sign in to comment.