diff --git a/tests/app/test_cloudfoundry_config.py b/tests/app/test_cloudfoundry_config.py index 72b2f2865..8f90df90d 100644 --- a/tests/app/test_cloudfoundry_config.py +++ b/tests/app/test_cloudfoundry_config.py @@ -213,7 +213,7 @@ def test_sms_inbound_config(): def test_performance_platform_config(): extract_cloudfoundry_config() - assert os.environ['PERFORMANCE_PLATFORM_ENDPOINTS'] == json.dumps({ + assert json.loads(os.environ['PERFORMANCE_PLATFORM_ENDPOINTS']) == { 'foo': 'my_token', 'bar': 'other_token' - }) + }