Merge branch '1.0.x'

This commit is contained in:
David Lord 2019-07-01 10:54:31 -07:00
commit b05a685a03
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
6 changed files with 59 additions and 28 deletions

View file

@ -13,7 +13,7 @@ def test_get_close_db(app):
with pytest.raises(sqlite3.ProgrammingError) as e:
db.execute("SELECT 1")
assert "closed" in str(e)
assert "closed" in str(e.value)
def test_init_db_command(runner, monkeypatch):