We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cebd15a commit c93cb67Copy full SHA for c93cb67
src/test/java/com/aerospike/mapper/BooleanTest.java
@@ -7,12 +7,19 @@
7
import com.aerospike.mapper.annotations.AerospikeRecord;
8
import com.aerospike.mapper.tools.AeroMapper;
9
import com.fasterxml.jackson.core.JsonProcessingException;
10
+import org.junit.jupiter.api.AfterAll;
11
import org.junit.jupiter.api.Test;
12
13
import static org.junit.jupiter.api.Assertions.assertEquals;
14
import static com.aerospike.client.Value.UseBoolBin;
15
16
public class BooleanTest extends AeroMapperBaseTest {
17
+ @AfterAll
18
+ public static void resetBooleanEncoding(){
19
+ UseBoolBin = true;
20
+ }
21
+
22
23
@AerospikeRecord(namespace = "test", set = "B")
24
public static class B {
25
@AerospikeKey
0 commit comments