From d5cbe123dfb05e140507e572fddfb2c25ccf36e4 Mon Sep 17 00:00:00 2001 From: Nicolas ROCHE Date: Thu, 20 Feb 2020 14:46:16 +0100 Subject: [PATCH] python3: remove no longer needed call to byteify (#40012) --- tests_passerelle/test_deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests_passerelle/test_deploy.py b/tests_passerelle/test_deploy.py index 821e704..0d7f115 100644 --- a/tests_passerelle/test_deploy.py +++ b/tests_passerelle/test_deploy.py @@ -56,4 +56,4 @@ def test_import_template(db, tenant_base): connection.set_tenant(tenant) call_command('import_template', '--basepath=%s' % os.path.dirname(__file__), 'data_passerelle_export_site') content = open('%s/data_passerelle_export_site.json' % os.path.dirname(__file__)).read() - assert export_site() == byteify(json.loads(content)) + assert export_site() == json.loads(content)