Skip to content

Commit

Permalink
Fixup arg-->request
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockmendel committed Feb 27, 2019
1 parent 800463c commit 36f49e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dateutil/test/test_parser.py
Expand Up @@ -29,9 +29,9 @@


@pytest.fixture(params=[True, False])
def fuzzy(arg):
def fuzzy(request):
"""Fixture to pass fuzzy=True or fuzzy=False to parse"""
return arg.param
return request.param


# Parser test cases using no keyword arguments. Format: (parsable_text, expected_datetime, assertion_message)
Expand Down

0 comments on commit 36f49e5

Please sign in to comment.