Correct test expectation

This commit is contained in:
jeremy 2022-10-28 12:55:56 +02:00
parent 74181114c2
commit 0d5ee49e19

View File

@ -726,7 +726,8 @@ void AttemptToExpandOneLimitAndOrderBy(ShardClient &client, uint64_t src_vertex_
// We check that we do not have more results than the limit. Based on the data in the graph, we know that we should
// receive exactly limit responses.
MG_ASSERT(write_response.result.size() == limit);
auto expected_number_of_rows = std::min(expand_one_req.src_vertices.size(), limit);
MG_ASSERT(write_response.result.size() == expected_number_of_rows);
// We also check that the vertices are ordered by prop1 DESC