aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/testutils
diff options
context:
space:
mode:
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