TSK-1565: Apply suggestions from code review
Co-authored-by: Mustapha Zorgati <15628173+mustaphazorgati@users.noreply.github.com>
This commit is contained in:
parent
3703fd5f61
commit
0b55208aca
|
@ -632,10 +632,10 @@ public interface TaskQuery extends BaseQuery<TaskSummary, TaskQueryColumnName> {
|
|||
TaskQuery wildcardSearchValueLike(String wildcardSearchValue);
|
||||
|
||||
/**
|
||||
* Add the task fields for which the wildcard search should be performed as an exact match to your
|
||||
* Add the Task fields for which the wildcard search should be performed as an exact match to your
|
||||
* query. Must be used in combination with the wildcardSearchValueLike parameter
|
||||
*
|
||||
* @param wildcardSearchFields the task fields of your wildcard search
|
||||
* @param wildcardSearchFields the Task fields of your wildcard search
|
||||
* @return the query
|
||||
*/
|
||||
TaskQuery wildcardSearchFieldsIn(WildcardSearchField... wildcardSearchFields);
|
||||
|
|
|
@ -83,7 +83,6 @@ class QueryTasksByWildcardSearchAccTest extends AbstractAccTest {
|
|||
.list();
|
||||
|
||||
assertThat(foundTasksCaseSensitive).hasSize(80);
|
||||
assertThat(foundTasksCaseInsensitive).hasSize(80);
|
||||
assertThat(foundTasksCaseInsensitive).containsExactlyElementsOf(foundTasksCaseSensitive);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue