aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/testutils
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2015-09-09 16:59:19 -0600
committerGuido Günther <agx@sigxcpu.org>2015-09-10 08:47:34 +0200
commitb49bb0ddb0b4883f01f1e4b01b366c61604faea1 (patch)
tree7eeb0bc98e2015298b05188c4f37ddfb6d265509 /tests/testutils
parent3e1240aa4d5c9650e1fa127dbec304f56081c3d2 (diff)
Change "it's" to "its" in comments where appropriate
Diffstat (limited to 'tests/testutils')
-rw-r--r--tests/testutils/capture.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testutils/capture.py b/tests/testutils/capture.py
index b17e807a..31621f39 100644
--- a/tests/testutils/capture.py
+++ b/tests/testutils/capture.py
@@ -22,7 +22,7 @@ class StderrCapture(StringIO):
@contextmanager
def capture_stderr():
- """Capture an output and return it's content"""
+ """Capture an output and return its content"""
c = StderrCapture()
c.save()
yield c