Skip to content

Commit

Permalink
Fix master
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin authored and Kilo59 committed Jul 4, 2020
1 parent cf5154e commit 9a4fafa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_types.py
Expand Up @@ -249,10 +249,10 @@ class ConSetModelMax(BaseModel):

def test_constrained_set_default():
class ConSetModelMax(BaseModel):
v: conset(int) = {}
v: conset(int) = set()

m = ConSetModelMax()
assert m.v == {}
assert m.v == set()


def test_constrained_set_too_long():
Expand Down

0 comments on commit 9a4fafa

Please sign in to comment.