diff options
| author | 0livd <0livd@users.noreply.github.com> | 2017-03-12 22:47:54 +0100 |
|---|---|---|
| committer | 0livd <0livd@users.noreply.github.com> | 2017-03-12 22:47:54 +0100 |
| commit | 10a16a3b5cf13ca6ca2a1f060901b2bc943098ca (patch) | |
| tree | 6c1d185ae147320a765ab7c6710dc6b54a31f6ba | |
| parent | 108970eb503f503b764408b0f93fde87d67a776d (diff) | |
| download | ihatemoney-mirror-10a16a3b5cf13ca6ca2a1f060901b2bc943098ca.zip ihatemoney-mirror-10a16a3b5cf13ca6ca2a1f060901b2bc943098ca.tar.gz ihatemoney-mirror-10a16a3b5cf13ca6ca2a1f060901b2bc943098ca.tar.bz2 | |
Fix broken authentication test
| -rw-r--r-- | budget/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/budget/tests.py b/budget/tests.py index 8905a6e..b890f8a 100644 --- a/budget/tests.py +++ b/budget/tests.py @@ -302,7 +302,7 @@ class BudgetTestCase(TestCase): # try to see the project while not being authenticated should redirect # to the authentication page - resp = self.app.post("/raclette", follow_redirects=True) + resp = self.app.get("/raclette", follow_redirects=True) self.assertIn("Authentication", resp.data) # try to connect with wrong credentials should not work |
