From f7adc71c4453f68dc40b74788ebf9c1d0f33c6d4 Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Mon, 14 Oct 2019 23:33:21 +0500 Subject: [PATCH] BOM-924 Fixing TypeError, the JSON object must be str, not 'bytes'. --- openedx/tests/xblock_integration/test_crowdsource_hinter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/tests/xblock_integration/test_crowdsource_hinter.py b/openedx/tests/xblock_integration/test_crowdsource_hinter.py index f62acc8c0f..5fa5bcef1b 100644 --- a/openedx/tests/xblock_integration/test_crowdsource_hinter.py +++ b/openedx/tests/xblock_integration/test_crowdsource_hinter.py @@ -3,9 +3,9 @@ Test scenarios for the crowdsource hinter xblock. """ from __future__ import absolute_import -import json import unittest +import simplejson as json from django.conf import settings from django.urls import reverse from six import text_type