Skip to content

Commit

Permalink
test: make variable names longer when testing serializing variables
Browse files Browse the repository at this point in the history
  • Loading branch information
hollandjg committed Nov 20, 2023
1 parent 7a1084e commit bf83dcc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/test_variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@


@given(
st.one_of(variable_strategy(), variablecollection_strategy()),
st.one_of(
variable_strategy(
name_max_length=256, units_max_length=256, variable_label_max_length=256
),
variablecollection_strategy(
name_max_length=256, units_max_length=256, variable_label_max_length=256
),
),
serializer_dump_load_strategy(),
)
def test_variable_serialize_deserialize(o, dump_load):
Expand Down

0 comments on commit bf83dcc

Please sign in to comment.