summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index d107f5a..f2eb28e 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -17,7 +17,7 @@ def filepath():
def make_filepath(filename):
# http://stackoverflow.com/questions/18011902/parameter-to-a-fixture
- # Alternate solution is to use paramtrization `inderect=True`
+ # Alternate solution is to use parametrization `indirect=True`
# http://stackoverflow.com/a/33879151
# Syntax is noisy and requires specific variable names
return os.path.join(FILES_DIR, filename)
@@ -31,7 +31,7 @@ def load_file(filepath):
def make_load_file(filename, encoding='utf-8'):
# http://stackoverflow.com/questions/18011902/parameter-to-a-fixture
- # Alternate solution is to use paramtrization `inderect=True`
+ # Alternate solution is to use parametrization `indirect=True`
# http://stackoverflow.com/a/33879151
# Syntax is noisy and requires specific variable names
# And seems to be limited to only 1 argument.