Skip to content

Commit 4bf2b7c

Browse files
committed
fix tests
1 parent 19a07b2 commit 4bf2b7c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

example/reference/connector.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -969,7 +969,7 @@ func getCollectionByName(collectionName string, arguments schema.QueryRequestArg
969969

970970
// collections
971971
case "articles":
972-
for _, item := range state.Articles {
972+
for _, item := range sortArticles(state.Articles, "id", false) {
973973
row, err := schema.EncodeRow(item)
974974
if err != nil {
975975
return nil, err

example/reference/connector_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func assertHTTPResponse[B any](t *testing.T, res *http.Response, statusCode int,
5757

5858
if !internal.DeepEqual(body, expectedBody) {
5959
expectedBytes, _ := json.Marshal(expectedBody)
60-
t.Errorf("\nexpect: %+v\ngot: %+v", string(expectedBytes), string(bodyBytes))
60+
t.Errorf("\nexpect: %+v\ngot : %+v", string(expectedBytes), string(bodyBytes))
6161
t.FailNow()
6262
}
6363
}
@@ -125,7 +125,6 @@ func TestQuery(t *testing.T) {
125125
}
126126

127127
assertHTTPResponse[schema.QueryResponse](t, res, http.StatusOK, expected)
128-
129128
})
130129
}
131130
}

0 commit comments

Comments
 (0)