summaryrefslogtreecommitdiff
path: root/tests/test_utils.py
diff options
context:
space:
mode:
authorKevin Yap <me@kevinyap.ca>2014-05-31 23:32:47 -0700
committerKevin Yap <me@kevinyap.ca>2014-05-31 23:32:47 -0700
commit9b2648ae260fad9b076558aed478fdc5ed5e047c (patch)
tree09a45da6b3b8459e1e8c17aa3d29bf9f52bc1584 /tests/test_utils.py
parente4dca8aaa86b58b12a482f7607283f60a7786952 (diff)
downloadclick-9b2648ae260fad9b076558aed478fdc5ed5e047c.tar.gz
Changed occurrences of "on Python" to "in Python"
Diffstat (limited to 'tests/test_utils.py')
-rw-r--r--tests/test_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py
index 70a4a8e..f30b1ff 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.py
@@ -12,8 +12,8 @@ def test_echo(runner):
bytes = out.getvalue()
assert bytes == b'\xe2\x98\x83\nDD\n42ax'
- # If we are on python 2 we expect that writing bytes into a string io
- # does not do anything crazy. On Python 3
+ # If we are in Python 2, we expect that writing bytes into a string io
+ # does not do anything crazy. In Python 3
if sys.version_info[0] == 2:
import StringIO
sys.stdout = x = StringIO.StringIO()