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:
@ -81,16 +81,16 @@ function test() {
|
||||
tbox = new St.BoxLayout({ style: 'spacing: 20px;' });
|
||||
vbox.add(tbox);
|
||||
|
||||
for each (let s in backgroundSizes)
|
||||
for (let s of backgroundSizes)
|
||||
addTestCase(image, size, s, false);
|
||||
for each (let s in backgroundSizes)
|
||||
for (let s of backgroundSizes)
|
||||
addTestCase(image, size, s, true);
|
||||
}
|
||||
|
||||
function addTestImage(image) {
|
||||
const containerSizes = [[100, 100], [200, 200], [250, 250], [100, 250], [250, 100]];
|
||||
|
||||
for each (let size in containerSizes)
|
||||
for (let size of containerSizes)
|
||||
addTestLine(image, size);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user