mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-09-24 19:04:12 +02:00
remove print statement
This commit is contained in:
parent
8576ca873d
commit
2f9889d795
1 changed files with 0 additions and 1 deletions
|
|
@ -411,7 +411,6 @@ def test_add_foreign_key_error_if_already_exists(fresh_db):
|
||||||
fresh_db["books"].insert({"title": "Hedgehogs of the world", "author_id": 1})
|
fresh_db["books"].insert({"title": "Hedgehogs of the world", "author_id": 1})
|
||||||
fresh_db["authors"].insert({"id": 1, "name": "Sally"}, pk="id")
|
fresh_db["authors"].insert({"id": 1, "name": "Sally"}, pk="id")
|
||||||
fresh_db["books"].add_foreign_key("author_id", "authors", "id")
|
fresh_db["books"].add_foreign_key("author_id", "authors", "id")
|
||||||
print(fresh_db["books"].foreign_keys)
|
|
||||||
with pytest.raises(AlterError) as ex:
|
with pytest.raises(AlterError) as ex:
|
||||||
fresh_db["books"].add_foreign_key("author_id", "authors", "id")
|
fresh_db["books"].add_foreign_key("author_id", "authors", "id")
|
||||||
assert "Foreign key already exists for author_id => authors.id" == ex.value.args[0]
|
assert "Foreign key already exists for author_id => authors.id" == ex.value.args[0]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue