mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-01 08:48:25 +02:00
4 lines
256 B
JavaScript
4 lines
256 B
JavaScript
// Ensure that the default value of malwareTable is always in sorted order
|
|
let originalValue = Services.prefs.getCharPref("urlclassifier.malwareTable");
|
|
let sortedValue = originalValue.split(",").sort().join(",");
|
|
Assert.equal(originalValue, sortedValue);
|