From 83ae485892a0b59d484a23b95aac6326c83848d0 Mon Sep 17 00:00:00 2001 From: Sam Thompson Date: Mon, 24 Jun 2019 06:56:17 -0700 Subject: [PATCH] typo --- tests/core/tests/resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/tests/resources.py b/tests/core/tests/resources.py index cfa85b765..960624252 100644 --- a/tests/core/tests/resources.py +++ b/tests/core/tests/resources.py @@ -3438,7 +3438,7 @@ def test_patch_detail_filefield_fix(self): self.assertEqual(mediabit.title, "Boring Cat Picture") # Title is the same as what it was set before self.assertEqual(mediabit.image.name, "lulz/catz_new.gif") # imagefield stores new image - always_resource = ALwaysDataBlankMediaBitResource() + always_resource = AlwaysDataBlankMediaBitResource() request._raw_post_data = request._body = '{"title": "Cat is Funny Again!"}' resp = always_resource.patch_detail(request, pk=1) self.assertEqual(resp.status_code, 202)