DOC: Remove unnecessary docstrings

This commit is contained in:
Martin Thoma 2020-07-26 15:28:50 +02:00
parent 4e854ee496
commit 75a9b74650
No known key found for this signature in database
GPG key ID: CDBDEC5C1C911F05
2 changed files with 0 additions and 13 deletions

View file

@ -116,8 +116,6 @@ class TestJSON:
"test_value", [0, -1, 1, 23, 3.14, "s", "longer string", True, False, None]
)
def test_jsonify_basic_types(self, test_value, app, client):
"""Test jsonify with basic types."""
url = "/jsonify_basic_types"
app.add_url_rule(url, url, lambda x=test_value: flask.jsonify(x))
rv = client.get(url)
@ -125,7 +123,6 @@ class TestJSON:
assert flask.json.loads(rv.data) == test_value
def test_jsonify_dicts(self, app, client):
"""Test jsonify with dicts and kwargs unpacking."""
d = {
"a": 0,
"b": 23,