Skip to content

Commit

Permalink
fix delimiter of permitted IPs and example properties [#4]
Browse files Browse the repository at this point in the history
  • Loading branch information
dnl-blkv committed Sep 5, 2017
1 parent bf3b4eb commit d143a01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/config.example.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# For all test
API_CONFIG_PATH=bunq-test.conf
API_KEY=<API KEY>
PERMITTED_IPS=<IP ADDRESS>
PERMITTED_IPS=<IP ADDRESS>,<ANOTHER IP ADDRESS>
#For UserTest
USER_ID=xxxx
#For AttachmentPublicTest
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/bunq/sdk/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class Config {
/**
* Delimiter between the IP addresses in the PERMITTED_IPS field.
*/
private static final String DELIMITER_IPS = ", ";
private static final String DELIMITER_IPS = ",";

/**
* Constant for a length of an empty array.
Expand Down

0 comments on commit d143a01

Please sign in to comment.