Merge pull request #689 from trheyi/main

fix sui tests
This commit is contained in:
Max 2024-07-16 08:53:05 +08:00 committed by GitHub
commit 6e44c71120
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,6 +28,6 @@ func TestPageExec(t *testing.T) {
res := any.Of(data).Map().Dot()
assert.Equal(t, "yes", res.Get("array[3][0].query"))
assert.Equal(t, "Article Search 1", res.Get("articles.data[0].description"))
assert.Equal(t, "文章搜索 1", res.Get("articles.data[0].description"))
assert.Equal(t, "/test/path", res.Get("url.path"))
}