From 9a6073271406ce6802f12179b4ce70e53b26bbbf Mon Sep 17 00:00:00 2001 From: Jonathan Gray Date: Thu, 24 Oct 2024 10:19:01 +0100 Subject: [PATCH] Update default schema test --- flowmachine/tests/test_table.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flowmachine/tests/test_table.py b/flowmachine/tests/test_table.py index f2e7a865cc..8f8396e7bc 100644 --- a/flowmachine/tests/test_table.py +++ b/flowmachine/tests/test_table.py @@ -46,8 +46,9 @@ def test_table_preflight(args): def test_public_schema_checked(): - """Test that where no schema is provided, public schema is checked.""" - t = Table("gambia_admin2", columns=["geom"]).preflight() + """Test that where no schema is provided, user schema is checked.""" + t = Table("gambia_admin2", columns=["geom"]) + assert "flowmachine" == t.schema def test_children():