@@ -21,37 +21,37 @@ class ImageTest {
2121
2222 @ Test
2323 void bmp () {
24- assertThatImage (faker .image ().base64BMP ()).is (BMP , 256 , 256 );
24+ assertThatImage (faker .image ().base64BMP ()).is (BMP );
2525 }
2626
2727 @ Test
2828 void gif () {
29- assertThatImage (faker .image ().base64GIF ()).is (GIF , 256 , 256 );
29+ assertThatImage (faker .image ().base64GIF ()).is (GIF );
3030 }
3131
3232 @ Test
3333 void png () {
34- assertThatImage (faker .image ().base64PNG ()).is (PNG , 256 , 256 );
34+ assertThatImage (faker .image ().base64PNG ()).is (PNG );
3535 }
3636
3737 @ Test
3838 void jpg () {
39- assertThatImage (faker .image ().base64JPG ()).is (JPEG , 256 , 256 );
39+ assertThatImage (faker .image ().base64JPG ()).is (JPEG );
4040 }
4141
4242 @ Test
4343 void jpeg () {
44- assertThatImage (faker .image ().base64JPEG ()).is (JPEG , 256 , 256 );
44+ assertThatImage (faker .image ().base64JPEG ()).is (JPEG );
4545 }
4646
4747 @ Test
4848 void svg () {
49- assertThatImage (faker .image ().base64SVG ()).is (SVG , 256 , 256 );
49+ assertThatImage (faker .image ().base64SVG ()).is (SVG );
5050 }
5151
5252 @ Test
5353 void tiff () {
54- assertThatImage (faker .image ().base64TIFF ()).is (TIFF , 256 , 256 );
54+ assertThatImage (faker .image ().base64TIFF ()).is (TIFF );
5555 }
5656
5757 @ ParameterizedTest
@@ -65,15 +65,15 @@ void base64(ImageType imageType) {
6565 @ Test
6666 void defaultBuilder_generatesPngImage () {
6767 String image = faker .image ().base64 (Image .ImageBuilder .builder ().build ());
68- assertThatImage (image ).is (PNG , 256 , 256 );
68+ assertThatImage (image ).is (PNG );
6969 }
7070
7171 @ Test
7272 void customBase64builder () {
7373 String gif = faker .image ().base64 (Image .ImageBuilder .builder ()
7474 .type (ImageType .GIF )
7575 .build ());
76- assertThatImage (gif ).is (GIF , 256 , 256 );
76+ assertThatImage (gif ).is (GIF );
7777 }
7878
7979 @ Test
0 commit comments