Skip to content

Commit

Permalink
Update unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsil committed Dec 19, 2023
1 parent 8143ae0 commit 703bfdc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/exclude_secrets/test_secrets_fk.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ class Gratitude(edgy.Model):
title: str = edgy.CharField(max_length=100)
description: str = edgy.TextField()
color: str = edgy.CharField(max_length=10, null=True)
tags: list[str] = edgy.JSONField(default=[])
is_visible: bool = edgy.BooleanField(default=False)
images: list[bytes] = edgy.JSONField(default=[])
created_at: datetime.datetime = edgy.DateTimeField(auto_now=True)
updated_at: datetime.datetime = edgy.DateTimeField(auto_now_add=True)

Expand Down

0 comments on commit 703bfdc

Please sign in to comment.