From 12420b443d07a00d947f0f27582d1044b0af8e23 Mon Sep 17 00:00:00 2001 From: srowen Date: Fri, 5 Dec 2008 16:46:53 +0000 Subject: [PATCH] Fix apparently-inconsequential typo in QR code encoder test case git-svn-id: https://zxing.googlecode.com/svn/trunk@778 59b500cc-1b3d-0410-9834-0bbf25fbcc57 --- .../common/reedsolomon/ReedSolomonDecoderQRCodeTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/test/src/com/google/zxing/common/reedsolomon/ReedSolomonDecoderQRCodeTestCase.java b/core/test/src/com/google/zxing/common/reedsolomon/ReedSolomonDecoderQRCodeTestCase.java index 578e9eebf..0dfecdee1 100644 --- a/core/test/src/com/google/zxing/common/reedsolomon/ReedSolomonDecoderQRCodeTestCase.java +++ b/core/test/src/com/google/zxing/common/reedsolomon/ReedSolomonDecoderQRCodeTestCase.java @@ -26,7 +26,7 @@ public final class ReedSolomonDecoderQRCodeTestCase extends AbstractReedSolomonT /** See ISO 18004, Appendix I, from which this example is taken. */ private static final int[] QR_CODE_TEST = { 0x10, 0x20, 0x0C, 0x56, 0x61, 0x80, 0xEC, 0x11, 0xEC, - 0x11, 0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11, 0xA5 }; + 0x11, 0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11 }; private static final int[] QR_CODE_TEST_WITH_EC = { 0x10, 0x20, 0x0C, 0x56, 0x61, 0x80, 0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11, 0xA5, 0x24,