mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-19 15:25:50 -04:00
8 lines
265 B
JavaScript
8 lines
265 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);
|