Skip to content

Commit 28ac469

Browse files
authored
Merge pull request #5367 from apollovy/master
Fix typo about interpreters count in doc/en/example/parametrize.html
2 parents 6e68532 + 5999782 commit 28ac469

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/en/example/multipython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import pytest
1111

12-
pythonlist = ["python2.7", "python3.4", "python3.5"]
12+
pythonlist = ["python3.5", "python3.6", "python3.7"]
1313

1414

1515
@pytest.fixture(params=pythonlist)

doc/en/example/parametrize.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ is to be run with different sets of arguments for its three arguments:
429429

430430
.. literalinclude:: multipython.py
431431

432-
Running it results in some skips if we don't have all the python interpreters installed and otherwise runs all combinations (5 interpreters times 5 interpreters times 3 objects to serialize/deserialize):
432+
Running it results in some skips if we don't have all the python interpreters installed and otherwise runs all combinations (3 interpreters times 3 interpreters times 3 objects to serialize/deserialize):
433433

434434
.. code-block:: pytest
435435

0 commit comments

Comments
 (0)