python3: remove no longer needed call to byteify (#40012)

This commit is contained in:
Nicolas Roche 2020-02-20 14:46:16 +01:00
parent cf72237413
commit d5cbe123df
1 changed files with 1 additions and 1 deletions

View File

@ -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)