Skip to content

Commit 94eb1bf

Browse files
authored
fix: test by adding inheritance in Child class from Parent (#706)
1 parent 0d55db8 commit 94eb1bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_attrs_factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ class Parent:
155155
int_field: int
156156

157157
@define
158-
class Child:
158+
class Child(Parent):
159159
str_field: str
160160

161161
class ChildFactory(AttrsFactory[Child]):

0 commit comments

Comments
 (0)