We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 875a24b commit 1ca6d84Copy full SHA for 1ca6d84
1 file changed
tests/iterator_bug.py tests/test_iterator_bug.pytests/iterator_bug.py renamed to tests/test_iterator_bug.py
@@ -10,14 +10,13 @@ def test1(self):
10
# A more complex, standalone query
11
12
seq = rumble.jsoniq("""
13
- %%jsoniq
14
max(
15
let $path := "http://www.rumbledb.org/samples/git-archive-small.json"
16
for $event in json-lines($path)
17
return 1
18
)
19
""");
20
21
- expected = (1)
+ expected = [1]
22
23
self.assertTrue(json.dumps(seq.json()) == json.dumps(expected))
0 commit comments