mirror of https://github.com/zulip/zulip.git
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:
parent
edd7a1ab53
commit
7a1c3f3afb
|
@ -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 };
|
||||
|
||||
|
|
Loading…
Reference in New Issue