Skip to content

Commit fd85299

Browse files
committed
pagination test fix
1 parent 2128908 commit fd85299

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/test/ava-tests/non-saas-tests/non-saas-secrets-e2e.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ test.serial(`${currentTest}?page=1&limit=2 - should paginate audit log`, async (
493493

494494
t.is(response.status, 200, response.text);
495495
const responseBody = JSON.parse(response.text);
496-
t.is(responseBody.pagination.perPage, 2);
496+
t.is(responseBody.pagination.perPage, '2');
497497
t.true(responseBody.data.length <= 2);
498498
});
499499

0 commit comments

Comments
 (0)