Skip to content

Commit c5bcfa5

Browse files
committed
Change type to int in JsonFormat radix test (#320)
1 parent e0a0856 commit c5bcfa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/fasterxml/jackson/annotation/JsonFormatTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ public void testFeatures() {
266266
@Test
267267
void testRadix() {
268268
//Non-Default radix overrides the default
269-
byte binaryRadix = 2;
269+
int binaryRadix = 2;
270270
final JsonFormat.Value v = JsonFormat.Value.forRadix(binaryRadix);
271271
JsonFormat.Value merged = EMPTY.withOverrides(v);
272272
assertEquals(DEFAULT_RADIX, EMPTY.getRadix());

0 commit comments

Comments
 (0)