Skip to content

Commit 24fd247

Browse files
fix test
1 parent 6508668 commit 24fd247

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/ecto/adapters/postgres_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3092,7 +3092,7 @@ defmodule Ecto.Adapters.PostgresTest do
30923092
assert SQL.ddl_logs(result) == [{:info, ~s(table "foo" exists, skipping), []}]
30933093

30943094
result = make_result("WARNING")
3095-
assert SQL.ddl_logs(result) == [{:warn, ~s(table "foo" exists, skipping), []}]
3095+
assert SQL.ddl_logs(result) == [{:warning, ~s(table "foo" exists, skipping), []}]
30963096

30973097
result = make_result("ERROR")
30983098
assert SQL.ddl_logs(result) == [{:error, ~s(table "foo" exists, skipping), []}]

0 commit comments

Comments
 (0)