completed list-type to array-type conversion and fixed common test module

This commit is contained in:
2026-07-13 10:42:17 +02:00
parent 77f36642b4
commit 072fd9af39
39 changed files with 160 additions and 318 deletions
+5 -5
View File
@@ -45,7 +45,7 @@ func TestIteratorParser(t *testing.T) {
}
// runTestSuiteSpec(t, section, inputs, 25)
runTestSuite(t, section, inputs)
RunTestSuite(t, section, inputs)
}
func TestCallOpIntIter(t *testing.T) {
@@ -132,7 +132,7 @@ func TestFilterIterator(t *testing.T) {
}
// runTestSuiteSpec(t, section, inputs, 2)
runTestSuite(t, section, inputs)
RunTestSuite(t, section, inputs)
}
func TestDigestIterator(t *testing.T) {
@@ -144,7 +144,7 @@ func TestDigestIterator(t *testing.T) {
}
// runTestSuiteSpec(t, section, inputs, 2)
runTestSuite(t, section, inputs)
RunTestSuite(t, section, inputs)
}
func TestCatIterator(t *testing.T) {
@@ -159,7 +159,7 @@ func TestCatIterator(t *testing.T) {
}
// runTestSuiteSpec(t, section, inputs, 6)
runTestSuite(t, section, inputs)
RunTestSuite(t, section, inputs)
}
func TestMapIterator(t *testing.T) {
@@ -173,5 +173,5 @@ func TestMapIterator(t *testing.T) {
}
// runTestSuiteSpec(t, section, inputs, 2)
runTestSuite(t, section, inputs)
RunTestSuite(t, section, inputs)
}