@@ -28,7 +28,7 @@ func TestImageNewVariationWithOptionalParams(t *testing.T) {
2828 option .WithAPIKey ("My API Key" ),
2929 )
3030 _ , err := client .Images .NewVariation (context .TODO (), openai.ImageNewVariationParams {
31- Image : io .Reader (bytes .NewBuffer ([]byte ("some file contents " ))),
31+ Image : io .Reader (bytes .NewBuffer ([]byte ("Example data " ))),
3232 Model : openai .ImageModelGPTImage1_5 ,
3333 N : openai .Int (1 ),
3434 ResponseFormat : openai .ImageNewVariationParamsResponseFormatURL ,
@@ -58,12 +58,12 @@ func TestImageEditWithOptionalParams(t *testing.T) {
5858 )
5959 _ , err := client .Images .Edit (context .TODO (), openai.ImageEditParams {
6060 Image : openai.ImageEditParamsImageUnion {
61- OfFile : io .Reader (bytes .NewBuffer ([]byte ("some file contents " ))),
61+ OfFile : io .Reader (bytes .NewBuffer ([]byte ("Example data " ))),
6262 },
6363 Prompt : "A cute baby sea otter wearing a beret" ,
6464 Background : openai .ImageEditParamsBackgroundTransparent ,
6565 InputFidelity : openai .ImageEditParamsInputFidelityHigh ,
66- Mask : io .Reader (bytes .NewBuffer ([]byte ("some file contents " ))),
66+ Mask : io .Reader (bytes .NewBuffer ([]byte ("Example data " ))),
6767 Model : openai .ImageModelGPTImage1_5 ,
6868 N : openai .Int (1 ),
6969 OutputCompression : openai .Int (100 ),
0 commit comments