File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -214,10 +214,9 @@ def test_downloads_backup_plain(page: Page):
214
214
response = page .request .get (download_info .value .url )
215
215
assert response .status == 200
216
216
assert "CREATE SCHEMA test1" in response .text ()
217
- assert "COPY test1.fruites (name) FROM stdin" in response .text ()
218
- assert "Apple" in response .text ()
219
- assert "Orange" in response .text ()
220
- assert "Banana" in response .text ()
221
- assert "Rasberry" in response .text ()
217
+ assert "INSERT INTO test1.fruites (name) VALUES ('Apple');" in response .text ()
218
+ assert "INSERT INTO test1.fruites (name) VALUES ('Orange');" in response .text ()
219
+ assert "INSERT INTO test1.fruites (name) VALUES ('Banana');" in response .text ()
220
+ assert "INSERT INTO test1.fruites (name) VALUES ('Rasberry');" in response .text ()
222
221
223
222
You can’t perform that action at this time.
0 commit comments