diff --git a/test/server_test.py b/test/server_test.py index 0204532775..c191ad4c24 100644 --- a/test/server_test.py +++ b/test/server_test.py @@ -115,7 +115,7 @@ def test_api_404(self): def test_root_redirect(self): response = self.fetch("/", follow_redirects=False) self.assertEqual(response.code, 302) - self.assertEqual(response.headers['Location'], 'static/visualiser/index.html') # assert that doesnt beging with leading slash ! + self.assertEqual(response.headers['Location'], 'static/visualiser/index.html') # assert that doesnt begin with leading slash ! def test_api_preflight_cors_headers(self): response = self.fetch('/api/graph', method='OPTIONS', headers={'Origin': 'foo'})