Skip to content

Commit

Permalink
Disable QrCodeProcessorTest on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
devinbileck committed Jun 28, 2024
1 parent bde24b2 commit dd255d0
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
import java.util.Optional;

import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;

import static bisq.desktop.main.account.content.notifications.qr.FrameUtil.createFrameFromImageResource;
import static bisq.desktop.main.account.content.notifications.qr.FrameUtil.createRandomFrame;
Expand All @@ -32,6 +34,7 @@
import com.google.zxing.BinaryBitmap;
import org.bytedeco.javacv.Frame;

@DisabledOnOs(value= {OS.MAC})
class QrCodeProcessorTest {
private final FrameConverter<BinaryBitmap> converter = new FrameToBitmapConverter();
private final QrCodeProcessor processor = new QrCodeProcessor(converter);
Expand Down

0 comments on commit dd255d0

Please sign in to comment.