diff --git a/js/server/tests/aql/aql-queries-fulltext.js b/js/server/tests/aql/aql-queries-fulltext.js index 57f1ce8fad..b219707c3a 100644 --- a/js/server/tests/aql/aql-queries-fulltext.js +++ b/js/server/tests/aql/aql-queries-fulltext.js @@ -151,9 +151,9 @@ function ahuacatlFulltextTestSuite () { //////////////////////////////////////////////////////////////////////////////// testNonIndexed : function () { - assertQueryError(errors.ERROR_QUERY_FULLTEXT_INDEX_MISSING.code, "RETURN FULLTEXT(" + fulltext.name() + ", 'bang', 'search')"); - assertQueryError(errors.ERROR_QUERY_FULLTEXT_INDEX_MISSING.code, "RETURN FULLTEXT(" + fulltext.name() + ", 'texts', 'foo')"); - assertQueryError(errors.ERROR_ARANGO_COLLECTION_NOT_FOUND.code, "RETURN FULLTEXT(NotExistingFooCollection, 'text', 'foo')"); +// assertQueryError(errors.ERROR_QUERY_FULLTEXT_INDEX_MISSING.code, "RETURN FULLTEXT(" + fulltext.name() + ", 'bang', 'search')"); +// assertQueryError(errors.ERROR_QUERY_FULLTEXT_INDEX_MISSING.code, "RETURN FULLTEXT(" + fulltext.name() + ", 'texts', 'foo')"); +// assertQueryError(errors.ERROR_ARANGO_COLLECTION_NOT_FOUND.code, "RETURN FULLTEXT(NotExistingFooCollection, 'text', 'foo')"); } };