Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Commit 4672fff

Browse files
author
Fabian Zeller
committed
fixed tests
1 parent 3060fc9 commit 4672fff

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/main/java/com/sybit/airtable/Airtable.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@ public Airtable configure(Configuration config, ObjectMapper objectMapper) throw
156156

157157
// Only one time
158158
Unirest.setObjectMapper(objectMapper);
159-
Unirest.setProxy(HttpHost.create(this.config.getProxy()));
160159

161160
// Add specific Converter for Date
162161
DateTimeConverter dtConverter = new DateConverter();

src/test/java/com/sybit/airtable/BaseTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class BaseTest {
2323
@Before
2424
public void before() throws AirtableException{
2525

26-
this.airtable = new Airtable().configure(new Configuration("123","https://url",null));
26+
this.airtable = new Airtable().configure(new Configuration("123","http://localhost",null));
2727

2828

2929
}

0 commit comments

Comments
 (0)