We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deb102b commit 16e8f73Copy full SHA for 16e8f73
src/test/java/com/arangodb/ArangoCollectionTest.java
@@ -1693,11 +1693,12 @@ public void getRevision() {
1693
}
1694
1695
@Test
1696
- public void keyWithPunctuationCharacter() {
1697
- final String key = "myKey+";
+ public void keyWithSpecialCharacter() {
+ final String key = "myKey_-:.@()+,=;$!*'%";
1698
db.collection(COLLECTION_NAME).insertDocument(new BaseDocument(key));
1699
final BaseDocument doc = db.collection(COLLECTION_NAME).getDocument(key, BaseDocument.class);
1700
assertThat(doc, is(notNullValue()));
1701
assertThat(doc.getKey(), is(key));
1702
1703
+
1704
0 commit comments