File tree Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change 46
46
class PdfTests (unittest .TestCase ):
47
47
48
48
def setUp (self ):
49
- with open ('test/setup .json' ) as json_file :
49
+ with open ('../../Settings/servercreds .json' ) as json_file :
50
50
data = json .load (json_file )
51
51
52
52
self .pdf_api_client = asposepdfcloud .api_client .ApiClient (
53
- app_key = str (data ['app_key ' ]),
54
- app_sid = str (data ['app_sid ' ]),
55
- host = str (data ['product_uri ' ]))
53
+ app_key = str (data ['AppKey ' ]),
54
+ app_sid = str (data ['AppSID ' ]),
55
+ host = str (data ['ProductUri ' ]))
56
56
57
57
self .pdf_api = PdfApi (self .pdf_api_client )
58
58
59
- self .output_path = str (data ['output_location ' ])
59
+ self .output_path = str (data ['OutputLocation ' ])
60
60
61
61
self .temp_folder = 'TempPdfCloud'
62
62
self .test_data_path = 'test_data/'
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments