summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-03-13 21:40:56 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-03-13 21:40:56 -0400
commit8c1e01886853471d8dadd473f491f310937b01d0 (patch)
treef41bf6a8699495575640d0d8fda37d45d0e4d056 /tests/conftest.py
parent8b0505c5ccdc7516572afe1426d82666f97232af (diff)
downloadcmd2-git-8c1e01886853471d8dadd473f491f310937b01d0.tar.gz
Mostly fix a bunch of spelling mistakes.
A few other miscellaneous minor tweaks for whitespace and such.
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 8bc11497..6f3131e7 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1,9 +1,10 @@
# coding=utf-8
-#
-# Cmd2 unit/functional testing
-#
-# Copyright 2016 Federico Ceratto <federico.ceratto@gmail.com>
-# Released under MIT license, see LICENSE file
+"""
+Cmd2 unit/functional testing
+
+Copyright 2016 Federico Ceratto <federico.ceratto@gmail.com>
+Released under MIT license, see LICENSE file
+"""
import sys
from pytest import fixture
@@ -83,7 +84,7 @@ timing: False # Report execution times
class StdOut(object):
- """ Toy class for replacing self.stdout in cmd2.Cmd instances fror unit testing. """
+ """ Toy class for replacing self.stdout in cmd2.Cmd instances for unit testing. """
def __init__(self):
self.buffer = ''