Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecutalo committed Nov 7, 2023
1 parent 81b5479 commit 924bd06
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions image_api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ func TestImages(t *testing.T) {
server.RegisterHandler("/v1/images/generations", handleImageEndpoint)
_, err := client.CreateImage(context.Background(), openai.ImageRequest{
Prompt: "Lorem ipsum",
Model: CreateImageModelDallE3,
Model: openai.CreateImageModelDallE3,
N: 1,
Quality: CreateImageQualityHD,
Size: CreateImageSize1024x1024,
Style: CreateImageStyleVivid,
ResponseFormat: CreateImageResponseFormatURL,
Quality: openai.CreateImageQualityHD,
Size: openai.CreateImageSize1024x1024,
Style: openai.CreateImageStyleVivid,
ResponseFormat: openai.CreateImageResponseFormatURL,
User: "user",
})
checks.NoError(t, err, "CreateImage error")
Expand Down

0 comments on commit 924bd06

Please sign in to comment.