Skip to content

Commit

Permalink
refactor(snapshot): disable test except on linux
Browse files Browse the repository at this point in the history
(cherry picked from commit 5831979)
  • Loading branch information
npepinpe authored and github-actions[bot] committed Oct 19, 2023
1 parent 6f7ab52 commit a4624f2
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
import org.agrona.IoUtil;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledOnOs;
import org.junit.jupiter.api.condition.OS;
import org.junit.jupiter.api.io.TempDir;

public final class SnapshotChecksumTest {
Expand Down Expand Up @@ -127,6 +129,7 @@ void shouldPersistChecksum() throws Exception {
assertThat(actual.getCombinedValue()).isEqualTo(expectedChecksum.getCombinedValue());
}

@EnabledOnOs(OS.LINUX)
@Test
void shouldFlushOnPersist() throws Exception {
// given
Expand Down

0 comments on commit a4624f2

Please # to comment.