From 2b1b9cd729943dceb269e928fa6aa1f1837b6445 Mon Sep 17 00:00:00 2001 From: Mario de Frutos Date: Wed, 9 Dec 2015 13:24:16 +0100 Subject: [PATCH] In order to pass all the tests we need to make the import public --- test/helpers/import_helper.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/helpers/import_helper.py b/test/helpers/import_helper.py index 55662f9..b480852 100644 --- a/test/helpers/import_helper.py +++ b/test/helpers/import_helper.py @@ -4,13 +4,14 @@ import json import time + class ImportHelper: @classmethod def import_test_dataset(cls, username, api_key, host): requests.packages.urllib3.disable_warnings() url = "https://{0}.{1}/api/v1/imports/"\ - "?type_guessing=false&api_key={2}".format( + "?type_guessing=false&privacy=public&api_key={2}".format( username, host, api_key) dataset = { 'file': open('fixtures/geocoder_api_test_dataset.csv', 'rb')}