Skip to content

Commit

Permalink
Remove redundant comments
Browse files Browse the repository at this point in the history
  • Loading branch information
G5andeepD committed Aug 9, 2024
1 parent e350980 commit dad98d4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions ballerina/tests/tests.bal
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ isolated function testSendImageVariationRequest() returns error? {
response_format: "url"
};

// Call the `post images/variations` resource to create a variation of an image
var response = openAIImages->/images/variations.post(request);

test:assertTrue(response is ImagesResponse, msg = "Response is not of type ImagesResponse");
Expand All @@ -77,7 +76,6 @@ isolated function testSendImageEditRequest() returns error? {
response_format: "url"
};

// Call the `post images/edits` resource to create an edited image
var response = openAIImages->/images/edits.post(request);

test:assertTrue(response is ImagesResponse, msg = "Response is not of type ImagesResponse");
Expand All @@ -98,7 +96,6 @@ isolated function testSendImageGenerateRequest() returns error? {
response_format: "url"
};

// Call the `post images/generations` resource to create an image
var response = openAIImages->/images/generations.post(request);

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

0 comments on commit dad98d4

Please sign in to comment.