Skip to content
Snippets Groups Projects
Commit f23b6c3d authored by Dmitry Ivanov's avatar Dmitry Ivanov
Browse files

test(pgproto): account for lower case in tab completion tests

parent 5e27c60b
No related branches found
No related tags found
1 merge request!1315Improve pgproto's tab completion tests
......@@ -37,15 +37,7 @@ def test_tab_completion(postgres: Postgres):
)
# create a table
postgres.instance.sql(
"""
CREATE TABLE T (
S TEXT NOT NULL,
PRIMARY KEY (S)
)
USING MEMTX DISTRIBUTED BY (S);
"""
)
postgres.instance.sql(""" create table "T" ("s" int primary key) """)
# connect using psql
psql = pexpect.spawn(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment