Skip to content

Commit a104ccd

Browse files
committed
Fix warning in tests
1 parent 1382d96 commit a104ccd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_views.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ def test_use_kwargs_schema(self, app, client):
2121
class ArgSchema(Schema):
2222
name = fields.Str()
2323

24+
class Meta:
25+
strict = True
26+
2427
@app.route('/')
2528
@use_kwargs(ArgSchema)
2629
def view(**kwargs):

0 commit comments

Comments
 (0)