Skip to content

Commit

Permalink
remove redundant return
Browse files Browse the repository at this point in the history
  • Loading branch information
G5andeepD committed Aug 9, 2024
1 parent dad98d4 commit 2da513f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions ballerina/tests/tests.bal
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ isolated function testSendImageVariationRequest() returns error? {

test:assertTrue(response is ImagesResponse, msg = "Response is not of type ImagesResponse");

return;
}

@test:Config {
Expand All @@ -79,8 +78,6 @@ isolated function testSendImageEditRequest() returns error? {
var response = openAIImages->/images/edits.post(request);

test:assertTrue(response is ImagesResponse, msg = "Response is not of type ImagesResponse");

return;

}

Expand All @@ -100,5 +97,4 @@ isolated function testSendImageGenerateRequest() returns error? {

test:assertTrue(response is ImagesResponse, msg = "Response is not of type ImagesResponse");

return;
}

0 comments on commit 2da513f

Please sign in to comment.