diff --git a/tests/queries/0_stateless/01070_window_view_watch_events.py b/tests/queries/0_stateless/01070_window_view_watch_events.py index 46886dc5987..2a43f8d9ec2 100755 --- a/tests/queries/0_stateless/01070_window_view_watch_events.py +++ b/tests/queries/0_stateless/01070_window_view_watch_events.py @@ -56,9 +56,9 @@ with client(name='client1>', log=log) as client1, client(name='client2>', log=lo if match.groups()[1]: client1.send(client1.command) client1.expect(prompt) - client1.send('DROP TABLE 01070_window_view_watch_events.wv NO DELAY') + client1.send('DROP TABLE 01070_window_view_watch_events.wv NO DELAY;') client1.expect(prompt) - client1.send('DROP TABLE 01070_window_view_watch_events.mt') + client1.send('DROP TABLE 01070_window_view_watch_events.mt;') client1.expect(prompt) - client1.send('DROP DATABASE IF EXISTS 01070_window_view_watch_events') + client1.send('DROP DATABASE IF EXISTS 01070_window_view_watch_events;') client1.expect(prompt)