list_render: Extend test to verify that list sorting is case insensitive.

The alphabetic sorting of lists in the User/Organization settings was
changed in fa0a5ec to be case insensitive.
This commit makes changes to the list_render.js test to verify that the
sorting of these lists is indeed case insensitive.
This commit is contained in:
Vinit Singh 2019-04-22 04:39:02 +05:30 committed by Tim Abbott
parent edd7a1ab53
commit 7a1c3f3afb
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ run_test('sorting', () => {
};
const alice = { name: 'alice', salary: 50 };
const bob = { name: 'bob', salary: 40 };
const bob = { name: 'Bob', salary: 40 };
const cal = { name: 'cal', salary: 30 };
const dave = { name: 'dave', salary: 25 };