diff --git a/tests/test_schema.py b/tests/test_schema.py index 7912305..f15a170 100644 --- a/tests/test_schema.py +++ b/tests/test_schema.py @@ -127,6 +127,9 @@ def test_instruments_schema(values, error_state): ({"regime": "ThisIsASuperLongInstrumentNameThatIsInvalid!!!!!!!"}, ValueError) ]) def test_instruments_schema(values, error_state): + """ + In the schema, there is a validation that makes sure that the length of the regime is less than 30 characters. + """ schema_tester(Regimes, values, error_state)