Skip to content

Commit

Permalink
missing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzanardo committed Mar 11, 2024
1 parent 52eb84c commit 81da7d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/test/routes/board/sections/[sectionId]_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ void main() {

test('returns bad request when the id is incomplete', () async {
when(() => request.method).thenReturn(HttpMethod.get);
final response = await route.onRequest(requestContext, ',0');
final response = await route.onRequest(requestContext, '0');

expect(response.statusCode, HttpStatus.badRequest);
});
Expand Down

0 comments on commit 81da7d8

Please sign in to comment.