Skip to content

Commit

Permalink
Correct version check to (3, 6)
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky committed May 7, 2020
1 parent 0aba991 commit 624f241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sniffio/_tests/test_sniffio.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async def this_is_asyncio():
current_async_library()


@pytest.mark.skipif(sys.version_info < (3.6), reason='Curio requires 3.6+')
@pytest.mark.skipif(sys.version_info < (3, 6), reason='Curio requires 3.6+')
def test_curio():
import curio

Expand Down

0 comments on commit 624f241

Please sign in to comment.