We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f25c5d commit ecc8e0dCopy full SHA for ecc8e0d
playground/tests.py
@@ -6,4 +6,4 @@ class HelloWorldTest(TestCase):
6
def test_hello_world(self):
7
response = self.client.get(reverse("hello-world"))
8
self.assertEqual(response.status_code, 200)
9
- self.assertContains(response, "Hello World")
+ self.assertContains(response, "¡Hello World!")
playground/views.py
@@ -2,4 +2,4 @@
2
3
4
def hello_world(request):
5
- return JsonResponse({"message": "Hello World"})
+ return JsonResponse({"message": "¡Hello World!"})
0 commit comments