This commit is contained in:
AZ
2017-01-15 20:45:46 +01:00
parent 327c3bbf72
commit a27168dee0
22 changed files with 217 additions and 95 deletions
+2 -2
View File
@@ -65,12 +65,12 @@ public class IotaAPITest {
@Before
public void createApiClientInstance() {
iotaClient = new IotaAPI();
iotaClient = new IotaAPI.Builder().build();
}
@Test
public void shouldCreateIotaApiProxyInstanceWithDefaultValues() {
IotaAPI proxy = new IotaAPI();
IotaAPI proxy = new IotaAPI.Builder().build();
assertThat(proxy, IsNull.notNullValue());
}