Skip to content

Commit 0f7e836

Browse files
committed
Test description
1 parent 3363e01 commit 0f7e836

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/test_spam_check.py

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ def test_has_values_but_not_enabled(self):
2929
self.assertEqual(spam_check.get(), expected)
3030

3131
def test_spam_change_properties(self):
32+
"""Tests changing the properties of the spam check class"""
33+
3234
expected = {'enable': False, 'threshold': 10, 'post_to_url': 'https://www.testing.com'}
3335
spam_check = SpamCheck(enable=True, threshold=5, post_to_url='https://www.test.com')
3436
spam_check.enable = False

0 commit comments

Comments
 (0)