Skip to content

Commit

Permalink
Added comment, removed line from test
Browse files Browse the repository at this point in the history
  • Loading branch information
retrodaredevil committed Apr 28, 2023
1 parent 26981b7 commit ab9d1e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ public interface CouchDbDatabase extends CouchDbShared {
default boolean createIfNotExists() throws CouchDbException { return createIfNotExists(DatabaseCreationOption.createDefault()); }
void deleteDatabase() throws CouchDbException;

/**
* Note: As of 2023.04.21 this does not work on PouchDB
*/
DatabaseInfo getDatabaseInfo() throws CouchDbException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,5 @@ void test(DatabaseService databaseService) throws CouchDbException {
database.create(DatabaseCreationOption.builder().build());
assertThrows(CouchDbNotFoundException.class, () -> database.getRevsLimit());
}
database.getDatabaseInfo();
}
}

0 comments on commit ab9d1e4

Please sign in to comment.