From 45d2e3349922b4f0b6c0c64063a45cb511012c21 Mon Sep 17 00:00:00 2001 From: Fabrice Salvaire Date: Wed, 19 Oct 2016 21:22:43 +0200 Subject: [PATCH] Fixed tab indentation --- budget/tests.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/budget/tests.py b/budget/tests.py index b80ea99d..668354da 100644 --- a/budget/tests.py +++ b/budget/tests.py @@ -1,4 +1,4 @@ - # -*- coding: utf-8 -*- +# -*- coding: utf-8 -*- try: import unittest2 as unittest except ImportError: @@ -292,10 +292,10 @@ class BudgetTestCase(TestCase): self.assertTrue(models.Project.query.get("demo") is not None) def test_authentication(self): - # try to authenticate without credentials should redirect - # to the authentication page - resp = self.app.post("/authenticate") - self.assertIn("Authentication", resp.data) + # try to authenticate without credentials should redirect + # to the authentication page + resp = self.app.post("/authenticate") + self.assertIn("Authentication", resp.data) # raclette that the login / logout process works self.create_project("raclette")