File tree 3 files changed +13
-6
lines changed
src/test/java/com/arangodb
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
+
1
5
v4.2.0 (2017-06-14)
2
6
---------------------------
3
7
* added ArangoDBVersion.getLicense()
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >com.arangodb</groupId >
6
6
<artifactId >arangodb-java-driver</artifactId >
7
- <version >4.2.1-SNAPSHOT </version >
7
+ <version >4.2.1</version >
8
8
<inceptionYear >2016</inceptionYear >
9
9
<packaging >jar</packaging >
10
10
28
28
<hamcrest-all .version>1.3</hamcrest-all .version>
29
29
<junit .version>4.12</junit .version>
30
30
<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>
32
32
</properties >
33
33
34
34
<developers >
Original file line number Diff line number Diff line change @@ -91,11 +91,14 @@ public void getVersion() {
91
91
92
92
@ Test
93
93
public void createDatabase () {
94
- final Boolean result = arangoDB .createDatabase (BaseTest .TEST_DB );
95
- assertThat (result , is (true ));
96
94
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
+ }
99
102
}
100
103
}
101
104
You can’t perform that action at this time.
0 commit comments