diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-06 15:50:01 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-06 15:50:01 +0530 |
commit | ad073ba1ceb309881ff5cef0a80cf32baa825d03 (patch) | |
tree | d50537eb7663a4a9a3b99ea7906698657bc391f0 /app | |
parent | 812220acbfd41aea0382fcd9a37a989a4b091d66 (diff) | |
parent | aaa585e3c27b9b2789d54a93a7a9b3cd04e2cce8 (diff) |
Merge branch 'master' of github.com:navanchauhan/SaaS-in-a-Flask
Diffstat (limited to 'app')
-rw-r--r-- | app/apis.py | 2 | ||||
-rw-r--r-- | app/tests/test_models.py | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/apis.py b/app/apis.py index b81882e..69bf222 100644 --- a/app/apis.py +++ b/app/apis.py @@ -14,7 +14,7 @@ async def API_Version(): async def API_User_Details(email: str): user = models.User.query.filter_by(email=email).first() try: - assert user != None + assert user is not None except AssertionError: raise HTTPException(status_code=404, detail="User Not Found") return {"first_name": user.first_name, "last_name": user.last_name} diff --git a/app/tests/test_models.py b/app/tests/test_models.py index c84df92..0beb3b9 100644 --- a/app/tests/test_models.py +++ b/app/tests/test_models.py @@ -4,6 +4,6 @@ from app.models import User def test_usermodel(app, client): user = User(first_name="John", email="test@example.com", password="pass") assert user.full_name == "John None" - assert user.get_role() == None - assert user.get_team() == None - assert user.is_paid() == None + assert user.get_role() is None + assert user.get_team() is None + assert user.is_paid() is None |