#950 Add unregister by name to API

- Add method to API
- Ensure that unregistering in datasource is case-insensitive
This commit is contained in:
ljacqu
2016-09-18 14:46:02 +02:00
parent f804b528e5
commit 405bd563d8
5 changed files with 42 additions and 3 deletions
@@ -195,7 +195,7 @@ public abstract class AbstractDataSourceIntegrationTest {
DataSource dataSource = getDataSource();
// when
boolean response1 = dataSource.removeAuth("bobby");
boolean response1 = dataSource.removeAuth("Bobby");
boolean response2 = dataSource.removeAuth("does-not-exist");
// then