Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Sep 18, 2024
1 parent fb24f0d commit 92eed28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions codeforlife/user/serializers/user_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_to_representation__teacher(self):
"student": None,
},
# TODO: remove in new schema.
non_model_fields=["requesting_to_join_class", "teacher", "student"],
non_model_fields={"requesting_to_join_class", "teacher", "student"},
)

def test_to_representation__student(self):
Expand All @@ -51,7 +51,7 @@ def test_to_representation__student(self):
},
},
# TODO: remove in new schema.
non_model_fields=["requesting_to_join_class", "teacher", "student"],
non_model_fields={"requesting_to_join_class", "teacher", "student"},
)

def test_to_representation__indy(self):
Expand Down

0 comments on commit 92eed28

Please sign in to comment.