From 92f63a1c1d483c1a1636efb20cadb1c2932b33ff Mon Sep 17 00:00:00 2001 From: dataforger Date: Tue, 24 May 2016 15:06:34 -0400 Subject: [PATCH] fix docstring (#1818) change string to docstring --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 1270c760..5a871e32 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -23,7 +23,7 @@ from flask.cli import AppGroup, FlaskGroup, NoAppException, ScriptInfo, \ def test_cli_name(test_apps): - "Make sure the CLI object's name is the app's name and not the app itself" + """Make sure the CLI object's name is the app's name and not the app itself""" from cliapp.app import testapp assert testapp.cli.name == testapp.name