diff options
author | Victor Uriarte <victor.m.uriarte@intel.com> | 2017-11-29 09:56:06 -0700 |
---|---|---|
committer | Victor Uriarte <victor.m.uriarte@intel.com> | 2017-11-29 14:52:15 -0700 |
commit | 43478c60394e09246ee6275f89ae434e429cc5b5 (patch) | |
tree | 07c7cf589827d53212e38f54cc84bc88d56a1b5d /tests/conftest.py | |
parent | 745df4576efca44b226bcdca33f718a5fa670eab (diff) | |
download | sqlparse-typo.tar.gz |
Fix typostypo
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 4 |
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. |