File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed
src/test/java/com/arangodb Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1+ v4.2.1 (2017-06-20)
2+ ---------------------------
3+ * fixed deserializing of internal field _id
4+
15v4.2.0 (2017-06-14)
26---------------------------
37* added ArangoDBVersion.getLicense()
Original file line number Diff line number Diff line change 44
55 <groupId >com.arangodb</groupId >
66 <artifactId >arangodb-java-driver</artifactId >
7- <version >4.2.1-SNAPSHOT </version >
7+ <version >4.2.1</version >
88 <inceptionYear >2016</inceptionYear >
99 <packaging >jar</packaging >
1010
2828 <hamcrest-all .version>1.3</hamcrest-all .version>
2929 <junit .version>4.12</junit .version>
3030 <httpclient .version>4.5.1</httpclient .version>
31- <arangodb .velocypack.version>1.0.8 </arangodb .velocypack.version>
31+ <arangodb .velocypack.version>1.0.9 </arangodb .velocypack.version>
3232 </properties >
3333
3434 <developers >
Original file line number Diff line number Diff line change @@ -91,11 +91,14 @@ public void getVersion() {
9191
9292 @ Test
9393 public void createDatabase () {
94- final Boolean result = arangoDB .createDatabase (BaseTest .TEST_DB );
95- assertThat (result , is (true ));
9694 try {
97- arangoDB .db (BaseTest .TEST_DB ).drop ();
98- } catch (final ArangoDBException e ) {
95+ final Boolean result = arangoDB .createDatabase (BaseTest .TEST_DB );
96+ assertThat (result , is (true ));
97+ } finally {
98+ try {
99+ arangoDB .db (BaseTest .TEST_DB ).drop ();
100+ } catch (final ArangoDBException e ) {
101+ }
99102 }
100103 }
101104
You can’t perform that action at this time.
0 commit comments