FIX: case sensitive unconditional add of exact match in user search

This commit is contained in:
Sam
2017-05-01 14:37:16 -04:00
parent a5fc51a967
commit 556ef4cfbd
4 changed files with 7 additions and 3 deletions

View File

@ -58,7 +58,7 @@ module("lib:user-search", {
});
test("it places groups unconditionally for exact match", function() {
return userSearch({term: 'team'}).then((results)=>{
return userSearch({term: 'Team'}).then((results)=>{
equal(results[results.length-1]["name"], "team");
});
});