Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
epicadk committed May 8, 2021
1 parent b34348c commit 1a562ff
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tests/task_comments/test_database_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@ def test_task_validations_comment(self):
user_id=1,
task_id=1,
relation_id=1,
comment=""
comment="",
)

def test_task_validations_comment_strip(self):
comment = TaskCommentModel(
user_id=1,
task_id=1,
relation_id=1,
comment=" user ")
user_id=1, task_id=1, relation_id=1, comment=" user "
)
self.assertEqual(comment.comment, "user")

0 comments on commit 1a562ff

Please sign in to comment.