Skip to content

Commit

Permalink
Tests: Fixed sorted language list test (#2623)
Browse files Browse the repository at this point in the history
  • Loading branch information
RunDevelopment committed Nov 6, 2020
1 parent 7951ca2 commit 2d3a126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/dependencies-test.js
Expand Up @@ -327,7 +327,7 @@ describe('components.json', function () {
return comp;
}
// a and b have the same intermediate form (e.g. "C" => "C", "C++" => "C", "C#" => "C").
a.title.toLowerCase().localeCompare(b.title.toLowerCase())
return a.title.toLowerCase().localeCompare(b.title.toLowerCase());
});

assert.sameOrderedMembers(languages, sorted);
Expand Down

0 comments on commit 2d3a126

Please sign in to comment.