Skip to content

Commit

Permalink
Fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
softwaremagico committed Nov 22, 2024
1 parent 562d8c5 commit d2f06cb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,20 +99,20 @@ public void createQrWithLogoAsSvg() {

@Test
public void createQrWithLogoAsSvgAndColor() {
BufferedImage qrImage = qrProvider.getQr(SOFTWARE_URL, 5000, Color.PINK, "/kote.svg");
BufferedImage qrImage = qrProvider.getQr(SOFTWARE_URL, 5000, Color.PINK, "/kote.svg", Color.white);
saveImage(qrImage, "withLogoAsSvgAndColor");
}


@Test
public void createQrWithRoundedBorders() {
BufferedImage qrImage = qrProvider.getQr(SOFTWARE_URL, null, COLOR, LOGO);
BufferedImage qrImage = qrProvider.getQr(SOFTWARE_URL, null, COLOR, LOGO, Color.white);
saveImage(qrImage, "withRoundedBorders");
}

@Test
public void createQrWithRoundedBordersAndCircles() {
BufferedImage qrImage = qrProvider.getQr(SOFTWARE_URL, null, COLOR, LOGO, true);
BufferedImage qrImage = qrProvider.getQr(SOFTWARE_URL, null, COLOR, LOGO, true, Color.white);
saveImage(qrImage, "withRoundedBordersAndCircles");
}

Expand Down

0 comments on commit d2f06cb

Please sign in to comment.