Skip to content

Commit

Permalink
Try to fix Appveyor CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Aug 12, 2017
1 parent 988fdb9 commit 8edf026
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/test_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ class Test_is_list_or_tuple(object):
@pytest.mark.parametrize(["value", "expected"], [
[[], True],
[[1], True],
[["a"] * 200000, True],
[["a"] * 20000, True],
[(), True],
[(1,), True],
[("a",) * 200000, True],
[("a",) * 20000, True],
[None, False],
[nan, False],
Expand All @@ -70,9 +70,9 @@ class Test_is_empty_sequence(object):
[range(0), True],
[[1], False],
[["a"] * 200000, False],
[["a"] * 20000, False],
[(1,), False],
[("a",) * 200000, False],
[("a",) * 20000, False],
["aaa", False],
[range(0, 10), False],
Expand All @@ -91,10 +91,10 @@ class Test_is_not_empty_sequence(object):

@pytest.mark.parametrize(["value", "expected"], [
[[1], True],
[["a"] * 200000, True],
[["a"] * 20000, True],
[(1,), True],
[("a",) * 200000, True],
["a" * 200000, True],
[("a",) * 20000, True],
["a" * 20000, True],
[range(0, 10), True],
[(), False],
Expand Down

0 comments on commit 8edf026

Please sign in to comment.