mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1207497 - Part 3: Fix wrong replacement in debug print in toolkit/mozapps/downloads/tests/unit/test_lowMinutes.js. r=me DONTBUILD
This commit is contained in:
parent
b926c0565e
commit
06f8381eb6
@ -18,7 +18,9 @@ Components.utils.import("resource://gre/modules/DownloadUtils.jsm");
|
||||
* @usage _("Hello World") -> prints "Hello World"
|
||||
* @usage _(1, 2, 3) -> prints "1 2 3"
|
||||
*/
|
||||
var _ = (some, debug, text, to) => print(Array.slice(arguments).join(" "));
|
||||
var _ = function(some, debug, text, to) {
|
||||
print(Array.slice(arguments).join(" "));
|
||||
};
|
||||
|
||||
_("Make an array of time lefts and expected string to be shown for that time");
|
||||
var expectedTimes = [
|
||||
|
Loading…
Reference in New Issue
Block a user