diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-07 14:01:55 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-07 14:01:55 +0530 |
commit | 7852d78515f8e108ba99dce270f58d48dce9ca5f (patch) | |
tree | ebf028184e6cdda656e885a0fd6284ba547979a9 /app/tests | |
parent | 11a2e1c778cf4b2ea958b6bdd7868c8604d45df2 (diff) | |
parent | 47ac6500a959f04d5b8eeffe40499e6cefc8156c (diff) |
Merge pull request #6 from navanchauhan/deepsource-transform-10eb3717
Format code with black
Diffstat (limited to 'app/tests')
-rw-r--r-- | app/tests/__init__.py | 2 | ||||
-rw-r--r-- | app/tests/test_forms.py | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/app/tests/__init__.py b/app/tests/__init__.py index 3b0e682..3e4970f 100644 --- a/app/tests/__init__.py +++ b/app/tests/__init__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- """ PyTest Modules for Unit Testing -"""
\ No newline at end of file +""" diff --git a/app/tests/test_forms.py b/app/tests/test_forms.py index 0f772b3..ebfee8a 100644 --- a/app/tests/test_forms.py +++ b/app/tests/test_forms.py @@ -4,6 +4,8 @@ Test(s) for Forms Tests the forms and their validations """ + + def test_incorrect_forms(app, client): """ Simulate Invalid Forms @@ -19,7 +21,7 @@ def test_incorrect_forms(app, client): def test_contactus(app, client): - """Test Valid Form Submission""" + """Test Valid Form Submission""" res = client.post( "/ContactUs", data={ |