From b7ebd3a6743eb245c614a74ca55fc661f008ffd6 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Mon, 23 Jan 2012 21:15:13 +0100 Subject: Fixed bug in reading long and double values --- test/bytecode/src/lombok/bytecode/TestClassFileMetaData.java | 1 + 1 file changed, 1 insertion(+) (limited to 'test/bytecode/src') diff --git a/test/bytecode/src/lombok/bytecode/TestClassFileMetaData.java b/test/bytecode/src/lombok/bytecode/TestClassFileMetaData.java index aaf7d2e9..2b506c1b 100644 --- a/test/bytecode/src/lombok/bytecode/TestClassFileMetaData.java +++ b/test/bytecode/src/lombok/bytecode/TestClassFileMetaData.java @@ -169,6 +169,7 @@ public class TestClassFileMetaData { @Test public void testContainsLong() { assertTrue(foo.containsLong(123)); + assertTrue(foo.containsLong(0x1FFFFFFFFL)); assertFalse(foo.containsLong(1)); assertFalse(buux.containsLong(1)); -- cgit