Fixed tab indentation

This commit is contained in:
Fabrice Salvaire 2016-10-19 21:22:43 +02:00
parent a256bca398
commit 45d2e33499

View file

@ -1,4 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
try: try:
import unittest2 as unittest import unittest2 as unittest
except ImportError: except ImportError:
@ -292,10 +292,10 @@ class BudgetTestCase(TestCase):
self.assertTrue(models.Project.query.get("demo") is not None) self.assertTrue(models.Project.query.get("demo") is not None)
def test_authentication(self): def test_authentication(self):
# try to authenticate without credentials should redirect # try to authenticate without credentials should redirect
# to the authentication page # to the authentication page
resp = self.app.post("/authenticate") resp = self.app.post("/authenticate")
self.assertIn("Authentication", resp.data) self.assertIn("Authentication", resp.data)
# raclette that the login / logout process works # raclette that the login / logout process works
self.create_project("raclette") self.create_project("raclette")