mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1080007 - Fix "octal literals and octal escape sequences are deprecated" warning in testing/specialpowers. r=mrbkap.
--HG-- extra : rebase_source : 116c669f4226a8e5e0ee26e7d8be140a35264852
This commit is contained in:
parent
9aea41546f
commit
d0a30df96b
@ -89,7 +89,7 @@ this.MockFilePicker = {
|
||||
useAnyFile: function() {
|
||||
var file = FileUtils.getDir("TmpD", [], false);
|
||||
file.append("testfile");
|
||||
file.createUnique(Ci.nsIFile.NORMAL_FILE_TYPE, 0644);
|
||||
file.createUnique(Ci.nsIFile.NORMAL_FILE_TYPE, 0o644);
|
||||
this.returnFiles = [file];
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user