From 02511d1564aa963d0bc5dbd625296eb6e0c175ae Mon Sep 17 00:00:00 2001 From: Wouter van Ackooy Date: Wed, 22 May 2013 07:41:46 +0200 Subject: [PATCH] Added lost space. --- _pytest/mark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/mark.py b/_pytest/mark.py index d5981553b..5f3d880d5 100644 --- a/_pytest/mark.py +++ b/_pytest/mark.py @@ -13,7 +13,7 @@ def pytest_addoption(parser): action="store", dest="keyword", default='', metavar="EXPRESSION", help="only run tests which match the given substring expression. " "An expression is a python evaluatable expression " - "where all names are substring-matched against test names" + "where all names are substring-matched against test names " "and their parent classes. Example: -k 'test_method or test " "other' matches all test functions and classes whose name " "contains 'test_method' or 'test_other'. "