Skip to content

Commit d81b50b

Browse files
author
a-brandt
committed
removed a test
1 parent e4d05cb commit d81b50b

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/test/java/com/arangodb/ArangoDriverSimpleTest.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import static org.hamcrest.Matchers.nullValue;
2323
import static org.hamcrest.Matchers.startsWith;
2424
import static org.junit.Assert.assertThat;
25-
import static org.junit.Assert.fail;
2625

2726
import java.io.IOException;
2827
import java.util.Iterator;
@@ -155,21 +154,6 @@ public void test_any() throws ArangoException {
155154
}
156155
}
157156

158-
@Test
159-
public void test_range_no_skiplist() throws ArangoException {
160-
161-
// no suitable index known
162-
try {
163-
driver.executeSimpleRangeWithDocuments(COLLECTION_NAME, "age", 5, 30, null, 0, 0,
164-
TestComplexEntity01.class);
165-
fail("request should fail");
166-
} catch (final ArangoException e) {
167-
assertThat(e.getErrorNumber(), is(1209));
168-
assertThat(e.getCode(), is(404));
169-
}
170-
171-
}
172-
173157
@Test
174158
public void test_range() throws ArangoException {
175159

0 commit comments

Comments
 (0)