diff --git a/app/grants/tests/models/test_clr_match.py b/app/grants/tests/models/test_clr_match.py index 3fefa35381b..3c4ed5e97a0 100644 --- a/app/grants/tests/models/test_clr_match.py +++ b/app/grants/tests/models/test_clr_match.py @@ -112,4 +112,10 @@ def test_clr_match_has_payout_contribution_attribute(self): assert hasattr(clr_match, 'payout_contribution') assert clr_match.payout_contribution == None - + def test_clr_match_has_comments(self): + """Test 'comments' attribute and default value.""" + + clr_match = CLRMatchFactory() + + assert hasattr(clr_match, 'comments') + assert clr_match.comments == '' \ No newline at end of file