remove deprecated code

This commit is contained in:
David Lord 2020-04-03 17:34:32 -07:00
parent a0a61acdec
commit 1263d3bd14
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
9 changed files with 0 additions and 198 deletions

View file

@ -1,12 +0,0 @@
import pytest
from flask import json_available
def test_json_available():
with pytest.deprecated_call() as rec:
assert json_available
assert json_available == True # noqa E712
assert json_available != False # noqa E712
assert len(rec.list) == 3