From 597965a5a993bf443c7ebc7fd168de2da041259f Mon Sep 17 00:00:00 2001 From: David Kane Date: Mon, 16 Nov 2020 00:55:49 +0000 Subject: [PATCH] revert change to foreign key definition in test --- tests/test_create.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/test_create.py b/tests/test_create.py index 0c992ff..1fe6fc0 100644 --- a/tests/test_create.py +++ b/tests/test_create.py @@ -355,10 +355,7 @@ def test_add_foreign_key(fresh_db): assert isinstance(t, Table) and t.name == "books" assert [ ForeignKey( - table="books", - column=("author_id",), - other_table="authors", - other_column=("id",), + table="books", column="author_id", other_table="authors", other_column="id" ) ] == fresh_db["books"].foreign_keys