Skip to content

Commit 1a562ff

Browse files
committed
fix formatting
1 parent b34348c commit 1a562ff

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tests/task_comments/test_database_model.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ def test_task_validations_comment(self):
1010
user_id=1,
1111
task_id=1,
1212
relation_id=1,
13-
comment=""
13+
comment="",
1414
)
1515

1616
def test_task_validations_comment_strip(self):
1717
comment = TaskCommentModel(
18-
user_id=1,
19-
task_id=1,
20-
relation_id=1,
21-
comment=" user ")
18+
user_id=1, task_id=1, relation_id=1, comment=" user "
19+
)
2220
self.assertEqual(comment.comment, "user")

0 commit comments

Comments
 (0)