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
@@ -48,7 +48,7 @@ func TestOperator(t *testing.T) {
// t.Setenv("EXPR_PATH", ".")
// runTestSuiteSpec(t, section, inputs, 22)
runTestSuite(t, section, inputs)
RunTestSuite(t, section, inputs)
}
func TestOperatorInsert(t *testing.T) {
@@ -77,7 +77,7 @@ func TestOperatorInsert(t *testing.T) {
}
// runTestSuiteSpec(t, section, inputs, 9)
runTestSuite(t, section, inputs)
RunTestSuite(t, section, inputs)
}
func TestOperatorDeepAssign(t *testing.T) {
@@ -90,7 +90,7 @@ func TestOperatorDeepAssign(t *testing.T) {
}
// runTestSuiteSpec(t, section, inputs, 4)
runTestSuite(t, section, inputs)
RunTestSuite(t, section, inputs)
}
func TestOperatorDigest(t *testing.T) {
@@ -100,7 +100,7 @@ func TestOperatorDigest(t *testing.T) {
}
// runTestSuiteSpec(t, section, inputs, 29)
runTestSuite(t, section, inputs)
RunTestSuite(t, section, inputs)
}
func TestOperatorGroupBy(t *testing.T) {
@@ -131,5 +131,5 @@ func TestOperatorGroupBy(t *testing.T) {
}
// runTestSuiteSpec(t, section, inputs, 3)
runTestSuite(t, section, inputs)
RunTestSuite(t, section, inputs)
}