tests: Replace "for each" construct

It is no longer supported by recent mozjs versions, so replace it with
a regular for loop to unbreak the tests.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/38
This commit is contained in:
Florian Müllner
2018-02-06 23:25:29 +01:00
parent 5d1626aba1
commit 2e45be96b6
2 changed files with 4 additions and 4 deletions

View File

@ -48,7 +48,7 @@ function test() {
function iconRow(icons, box_style) {
let hb = new St.BoxLayout({ vertical: false, style: box_style });
for each (let iconName in icons) {
for (let iconName of icons) {
hb.add(new St.Icon({ icon_name: iconName,
icon_size: 48 }));
}