Skip to content

Commit

Permalink
tests/test_fuzz: fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilk committed Mar 21, 2024
1 parent a028a52 commit b2a8950
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_fuzz.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
# Python 3
from itertools import izip_longest as zip_longest
except ImportError:
# Pyhton 2
# Python 2
from itertools import zip_longest

from .tools import (
Expand Down Expand Up @@ -193,10 +193,10 @@ def _test_fuzz(target, dumb=False):
dumb=dumb,
)

def test_fuzz_nonpresistent():
def test_fuzz_nonpersistent():
_test_fuzz('target.py')

def test_fuzz_presistent():
def test_fuzz_persistent():
_test_fuzz('target_persistent.py')

def _maybe_skip_fuzz_dumb():
Expand Down

0 comments on commit b2a8950

Please sign in to comment.