File tree 2 files changed +1
-4
lines changed
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -41,13 +41,13 @@ class TeardownException(Exception): pass
41
41
test_simple_query ,
42
42
test_concurrent_access ,
43
43
test_nested_call ,
44
- test_insert_on_conflict ,
45
44
test_trigger ,
46
45
test_costs ,
47
46
test_buffers ,
48
47
test_timing ,
49
48
test_formats ,
50
49
test_timing_buffers_conflicts ,
50
+ test_insert_on_conflict ,
51
51
]
52
52
53
53
def setup (con ):
Original file line number Diff line number Diff line change @@ -132,7 +132,6 @@ def test_simple_query(config):
132
132
qs = query_state (config , acon , query )
133
133
assert len (qs ) == 1 and qs [0 ][0 ] == acon .get_backend_pid () and qs [0 ][1 ] == 0 \
134
134
and qs [0 ][2 ] == query and re .match (expected , qs [0 ][3 ]) and qs [0 ][4 ] == None
135
- assert len (notices ) == 0
136
135
137
136
n_close ((acon ,))
138
137
@@ -232,8 +231,6 @@ def test_insert_on_conflict(config):
232
231
assert len (notices ) == 0
233
232
234
233
util_curs .execute (drop_field_uniqueness )
235
- util_curs .execute ("ANALYZE foo" )
236
- util_curs .execute ("ANALYZE bar" )
237
234
238
235
util_conn .close ()
239
236
n_close ((acon ,))
You can’t perform that action at this time.
0 commit comments