diff --git a/tests/test_sqlalchemy_schema.py b/tests/test_sqlalchemy_schema.py
index d4d57a4..a78098f 100644
--- a/tests/test_sqlalchemy_schema.py
+++ b/tests/test_sqlalchemy_schema.py
@@ -125,8 +125,8 @@ def sqla_auto_model_schema_with_fks(models, request):
 @pytest.mark.parametrize(
     "schema",
     (
-        pytest.lazy_fixture("sqla_schema_with_relationships"),
-        pytest.lazy_fixture("sqla_auto_model_schema_with_relationships"),
+        pytest.lazy_fixtures("sqla_schema_with_relationships"),
+        pytest.lazy_fixtures("sqla_auto_model_schema_with_relationships"),
     ),
 )
 def test_dump_with_relationships(teacher, schema):
@@ -141,8 +141,8 @@ def test_dump_with_relationships(teacher, schema):
 @pytest.mark.parametrize(
     "schema",
     (
-        pytest.lazy_fixture("sqla_schema_with_fks"),
-        pytest.lazy_fixture("sqla_auto_model_schema_with_fks"),
+        pytest.lazy_fixtures("sqla_schema_with_fks"),
+        pytest.lazy_fixtures("sqla_auto_model_schema_with_fks"),
     ),
 )
 def test_dump_with_foreign_keys(teacher, schema):
@@ -163,10 +163,10 @@ def test_table_schema_dump(teacher, sqla_auto_table_schema):
 @pytest.mark.parametrize(
     "schema",
     (
-        pytest.lazy_fixture("sqla_schema_with_relationships"),
-        pytest.lazy_fixture("sqla_schema_with_fks"),
-        pytest.lazy_fixture("sqla_auto_model_schema"),
-        pytest.lazy_fixture("sqla_auto_table_schema"),
+        pytest.lazy_fixtures("sqla_schema_with_relationships"),
+        pytest.lazy_fixtures("sqla_schema_with_fks"),
+        pytest.lazy_fixtures("sqla_auto_model_schema"),
+        pytest.lazy_fixtures("sqla_auto_table_schema"),
     ),
 )
 def test_load(schema):
@@ -217,10 +217,10 @@ class TestLoadInstancePerSchemaInstance:
     @pytest.mark.parametrize(
         "Schema",
         (
-            pytest.lazy_fixture("schema_no_load_instance"),
-            pytest.lazy_fixture("schema_with_load_instance"),
-            pytest.lazy_fixture("auto_schema_no_load_instance"),
-            pytest.lazy_fixture("auto_schema_with_load_instance"),
+            pytest.lazy_fixtures("schema_no_load_instance"),
+            pytest.lazy_fixtures("schema_with_load_instance"),
+            pytest.lazy_fixtures("auto_schema_no_load_instance"),
+            pytest.lazy_fixtures("auto_schema_with_load_instance"),
         ),
     )
     def test_toggle_load_instance_per_schema(self, models, Schema):
@@ -246,10 +246,10 @@ class TestLoadInstancePerSchemaInstance:
 @pytest.mark.parametrize(
     "schema",
     (
-        pytest.lazy_fixture("sqla_schema_with_relationships"),
-        pytest.lazy_fixture("sqla_schema_with_fks"),
-        pytest.lazy_fixture("sqla_auto_model_schema"),
-        pytest.lazy_fixture("sqla_auto_table_schema"),
+        pytest.lazy_fixtures("sqla_schema_with_relationships"),
+        pytest.lazy_fixtures("sqla_schema_with_fks"),
+        pytest.lazy_fixtures("sqla_auto_model_schema"),
+        pytest.lazy_fixtures("sqla_auto_table_schema"),
     ),
 )
 def test_load_validation_errors(schema):
@@ -373,8 +373,8 @@ class TestAliasing:
     @pytest.mark.parametrize(
         "schema",
         (
-            pytest.lazy_fixture("aliased_schema"),
-            pytest.lazy_fixture("aliased_auto_schema"),
+            pytest.lazy_fixtures("aliased_schema"),
+            pytest.lazy_fixtures("aliased_auto_schema"),
         ),
     )
     def test_passing_column_name(self, schema, teacher):
@@ -417,8 +417,8 @@ class TestModelInstanceDeserialization:
     @pytest.mark.parametrize(
         "SchemaClass",
         (
-            pytest.lazy_fixture("sqla_schema_class"),
-            pytest.lazy_fixture("sqla_auto_schema_class"),
+            pytest.lazy_fixtures("sqla_schema_class"),
+            pytest.lazy_fixtures("sqla_auto_schema_class"),
         ),
     )
     def test_load(self, teacher, SchemaClass, models):
