data-cursor.go: fixed filter

This commit is contained in:
2024-07-13 00:12:08 +02:00
parent a02f998fc6
commit 8547248ea2
2 changed files with 3 additions and 6 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ func TestIteratorParser(t *testing.T) {
/* 9 */ {`include "test-resources/file-reader.expr"; it=$(ds,"test-resources/int.list"); it.clean`, true, nil},
/* 10 */ {`it=$(1,2,3); it++`, int64(1), nil},
/* 11 */ {`it=$(1,2,3); it++; it.reset; it++`, int64(1), nil},
// /* 12 */ {`include "test-resources/filter.expr"; it=$(ds,10); it++`, int64(1), nil},
/* 12 */ {`include "test-resources/filter.expr"; it=$(ds,10); it++`, int64(1), nil},
}
//runTestSuiteSpec(t, section, inputs, 12)