Skip to content

Commit 1de8cd4

Browse files
committed
.
1 parent 95112a9 commit 1de8cd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ for (let lang in testFios) {
2828
for (let forms of fios) {
2929
let basicForm = forms[0];
3030
describe(basicForm, () => {
31-
for (let c = 1 ; c < Math.min(forms.length, 6) ; c++) {
31+
for (let c = 1 ; c < forms.length ; c++) {
3232
let expForm = forms[c];
3333
if (!expForm)
3434
continue;
@@ -107,7 +107,7 @@ for (let lang in testFiles) {
107107
continue;
108108
let basicForm = forms[0];
109109
describe(basicForm, () => {
110-
for (let c = 1 ; c < Math.min(forms.length, 6) ; c++) {
110+
for (let c = 1 ; c < forms.length ; c++) {
111111
let expForm = forms[c];
112112
let cls = NCL.getConcreteClass(lang);
113113
let ncl = new cls;

0 commit comments

Comments
 (0)