From f78e3a221b5547e56ff78d102efd07a12da942ea Mon Sep 17 00:00:00 2001 From: Chris Dodge Date: Mon, 22 Jul 2013 21:30:51 -0400 Subject: [PATCH] fix fat finger string formatting --- lms/djangoapps/courseware/tests/test_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/courseware/tests/test_views.py b/lms/djangoapps/courseware/tests/test_views.py index 875b62eefb..45196d6a40 100644 --- a/lms/djangoapps/courseware/tests/test_views.py +++ b/lms/djangoapps/courseware/tests/test_views.py @@ -53,7 +53,7 @@ class TestJumpTo(TestCase): def test_jumpto_id_invalid_location(self): location = Location('i4x', 'edX', 'toy', 'NoSuchPlace', None) - jumpto_url = '{0}/{1}/jump_to_id/{2)'.format('/courses', self.course_name, location.name) + jumpto_url = '{0}/{1}/jump_to_id/{2}'.format('/courses', self.course_name, location.name) response = self.client.get(jumpto_url) self.assertEqual(response.status_code, 404)