@@ -180,6 +180,9 @@ public void insertDocumentAsJson() {
180180
181181@ Test 
182182public  void  insertDocumentSilent () {
183+ if  (arangoDB .getRole () != ServerRole .SINGLE ) {
184+ return ;
185+ }
183186final  DocumentCreateEntity <BaseDocument > meta  = db .collection (COLLECTION_NAME )
184187.insertDocument (new  BaseDocument (), new  DocumentCreateOptions ().silent (true ));
185188assertThat (meta , is (notNullValue ()));
@@ -190,6 +193,9 @@ public void insertDocumentSilent() {
190193
191194@ Test 
192195public  void  insertDocumentSilentDontTouchInstance () {
196+ if  (arangoDB .getRole () != ServerRole .SINGLE ) {
197+ return ;
198+ }
193199final  BaseDocument  doc  = new  BaseDocument ();
194200final  String  key  = "testkey" ;
195201doc .setKey (key );
@@ -656,6 +662,9 @@ public void updateDocumentIgnoreRevsFalse() {
656662
657663@ Test 
658664public  void  updateDocumentSilent () {
665+ if  (arangoDB .getRole () != ServerRole .SINGLE ) {
666+ return ;
667+ }
659668final  DocumentCreateEntity <BaseDocument > createResult  = db .collection (COLLECTION_NAME )
660669.insertDocument (new  BaseDocument ());
661670final  DocumentUpdateEntity <BaseDocument > meta  = db .collection (COLLECTION_NAME )
@@ -807,6 +816,9 @@ public void replaceDocumentReturnOld() {
807816
808817@ Test 
809818public  void  replaceDocumentSilent () {
819+ if  (arangoDB .getRole () != ServerRole .SINGLE ) {
820+ return ;
821+ }
810822final  DocumentCreateEntity <BaseDocument > createResult  = db .collection (COLLECTION_NAME )
811823.insertDocument (new  BaseDocument ());
812824final  DocumentUpdateEntity <BaseDocument > meta  = db .collection (COLLECTION_NAME )
@@ -819,6 +831,9 @@ public void replaceDocumentSilent() {
819831
820832@ Test 
821833public  void  replaceDocumentSilentDontTouchInstance () {
834+ if  (arangoDB .getRole () != ServerRole .SINGLE ) {
835+ return ;
836+ }
822837final  BaseDocument  doc  = new  BaseDocument ();
823838final  DocumentCreateEntity <BaseDocument > createResult  = db .collection (COLLECTION_NAME ).insertDocument (doc );
824839final  String  revision  = doc .getRevision ();
@@ -882,6 +897,9 @@ public void deleteDocumentIfMatchFail() {
882897
883898@ Test 
884899public  void  deleteDocumentSilent () {
900+ if  (arangoDB .getRole () != ServerRole .SINGLE ) {
901+ return ;
902+ }
885903final  DocumentCreateEntity <BaseDocument > createResult  = db .collection (COLLECTION_NAME )
886904.insertDocument (new  BaseDocument ());
887905final  DocumentDeleteEntity <BaseDocument > meta  = db .collection (COLLECTION_NAME )
0 commit comments