@@ -179,9 +179,6 @@ public void insertDocumentAsJson() {
179179
180180 @ Test
181181 public void insertDocumentSilent () {
182- if (!requireVersion (3 , 3 )) {
183- return ;
184- }
185182 final DocumentCreateEntity <BaseDocument > meta = db .collection (COLLECTION_NAME )
186183 .insertDocument (new BaseDocument (), new DocumentCreateOptions ().silent (true ));
187184 assertThat (meta , is (notNullValue ()));
@@ -192,9 +189,6 @@ public void insertDocumentSilent() {
192189
193190 @ Test
194191 public void insertDocumentSilentDontTouchInstance () {
195- if (!requireVersion (3 , 3 )) {
196- return ;
197- }
198192 final BaseDocument doc = new BaseDocument ();
199193 final String key = "testkey" ;
200194 doc .setKey (key );
@@ -636,9 +630,6 @@ public void updateDocumentIgnoreRevsFalse() {
636630
637631 @ Test
638632 public void updateDocumentSilent () {
639- if (!requireVersion (3 , 3 )) {
640- return ;
641- }
642633 final DocumentCreateEntity <BaseDocument > createResult = db .collection (COLLECTION_NAME )
643634 .insertDocument (new BaseDocument ());
644635 final DocumentUpdateEntity <BaseDocument > meta = db .collection (COLLECTION_NAME )
@@ -790,9 +781,6 @@ public void replaceDocumentReturnOld() {
790781
791782 @ Test
792783 public void replaceDocumentSilent () {
793- if (!requireVersion (3 , 3 )) {
794- return ;
795- }
796784 final DocumentCreateEntity <BaseDocument > createResult = db .collection (COLLECTION_NAME )
797785 .insertDocument (new BaseDocument ());
798786 final DocumentUpdateEntity <BaseDocument > meta = db .collection (COLLECTION_NAME )
@@ -871,9 +859,6 @@ public void deleteDocumentIfMatchFail() {
871859
872860 @ Test
873861 public void deleteDocumentSilent () {
874- if (!requireVersion (3 , 3 )) {
875- return ;
876- }
877862 final DocumentCreateEntity <BaseDocument > createResult = db .collection (COLLECTION_NAME )
878863 .insertDocument (new BaseDocument ());
879864 final DocumentDeleteEntity <BaseDocument > meta = db .collection (COLLECTION_NAME )
0 commit comments