aboutsummaryrefslogtreecommitdiffstats
path: root/app_test.py
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2018-04-10 22:54:14 +0200
committerGravatar Leon Sandøy <[email protected]>2018-04-10 22:54:14 +0200
commit21a97b2babe8d6cfa48c6d2c3ac674db8f0384bc (patch)
tree2e8dbd302115602f29fc3b50967fd58a62ece903 /app_test.py
parentMerge branch 'master' of github.com:discord-python/site (diff)
oops, forgot to update the test
Diffstat (limited to 'app_test.py')
-rw-r--r--app_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/app_test.py b/app_test.py
index 5bb84945..c72c16a1 100644
--- a/app_test.py
+++ b/app_test.py
@@ -104,9 +104,9 @@ class RootEndpoint(SiteTest):
response = self.client.get(DISCORD_OAUTH_AUTHORIZED)
self.assertEqual(response.status_code, 302)
- def test_datadog_redirect(self):
- """ Check datadog path redirects """
- response = self.client.get('/datadog')
+ def test_stats_redirect(self):
+ """ Check stats path redirects """
+ response = self.client.get('/stats')
self.assertEqual(response.status_code, 302)
def test_500_easter_egg(self):