Skip to content

Commit 6a1e6f4

Browse files
committed
Fix failing test
1 parent 6498b56 commit 6a1e6f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ecto/adapters/exqlite/connection_test.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2208,8 +2208,8 @@ defmodule Ecto.Adapters.Exqlite.ConnectionTest do
22082208
category_2 INTEGER CONSTRAINT posts_category_2_fkey REFERENCES categories(id), \
22092209
category_3 INTEGER NOT NULL CONSTRAINT posts_category_3_fkey REFERENCES categories(id) ON DELETE CASCADE, \
22102210
category_4 INTEGER CONSTRAINT posts_category_4_fkey REFERENCES categories(id) ON DELETE SET NULL, \
2211-
category_5 INTEGER CONSTRAINT posts_category_5_fkey REFERENCES categories(id) ON DELETE SET NULL, \
2212-
category_6 INTEGER CONSTRAINT posts_category_6_fkey REFERENCES categories(id) ON DELETE SET NULL\
2211+
category_5 INTEGER CONSTRAINT posts_category_5_fkey REFERENCES foo.categories(id) ON DELETE SET NULL, \
2212+
category_6 INTEGER CONSTRAINT posts_category_6_fkey REFERENCES categories(id,there) ON DELETE SET NULL\
22132213
)\
22142214
"""
22152215
]

0 commit comments

Comments
 (0)