We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ebffbd + 501614e commit 7b96c41Copy full SHA for 7b96c41
1 file changed
test/image/compare_pixels_test.js
@@ -91,8 +91,7 @@ sortGl2dMockList(allMockList);
91
// main
92
if(isInQueue) {
93
runInQueue(allMockList);
94
-}
95
-else {
+} else {
96
runInBatch(allMockList);
97
}
98
@@ -137,6 +136,7 @@ function sortGl2dMockList(mockList) {
137
136
138
mockNames.forEach(function(m) {
139
var ind = mockList.indexOf(m);
+ if(ind === -1) return;
140
var tmp = mockList[pos];
141
mockList[pos] = m;
142
mockList[ind] = tmp;
0 commit comments