diff --git a/.changeset/nice-needles-guess.md b/.changeset/nice-needles-guess.md new file mode 100644 index 00000000..91534216 --- /dev/null +++ b/.changeset/nice-needles-guess.md @@ -0,0 +1,71 @@ +--- +"zxing-wasm": major +--- + +# V2: Breaking Release - Next Major Version + +This release introduces a major refactoring of the underlying Embind APIs and read / write functions. Key changes include transitioning away from [Embind Enums](https://emscripten.org/docs/porting/connecting_cpp_and_javascript/embind.html#enums) toward numeric encoding and decoding, a new set of default reader options, enhanced writer capabilities backed by [`zint`](https://sourceforge.net/projects/zint/), and updated APIs for reading and writing barcodes. These changes break backward compatibility, so we are upgrading to the next major version. + +## Breaking Changes + +### Renamed & Consolidated Reader Function + +`readBarcodes(...)` replaces both `readBarcodesFromImageFile(...)` and `readBarcodesFromImageData(...)`. The new function unifies code paths for `Blob` and `ImageData` inputs. + +> [!NOTE] +> +> The v1 reader functions `readBarcodesFromImageFile` and `readBarcodesFromImageData` are still kept for a smooth migration experience, but marked as deprecated. + +### Updated Reader Options + +A few reader options have changed their default values. This change is to align with the latest ZXing C++ library and provide a more consistent experience across different platforms: + +1. `tryCode39ExtendedMode` is now `true` by default. It was previously `false`. +2. `eanAddOnSymbol` is now `"Ignore"` by default. It was previously `"Read"`. +3. `textMode` is now `"HRI"` by default. It was previously `"Plain"`. + +Some deprecated options have been removed, see [zxing-cpp#704](https://github.com/zxing-cpp/zxing-cpp/discussions/704) for more details: + +1. `validateCode39CheckSum` is now removed. The Code39 symbol has a valid checksum if the third character of the `symbologyIdentifier` is an odd digit. + +2. `validateITFCheckSum` is now removed. The ITF symbol has a valid checksum if the third character of the `symbologyIdentifier` is a `'1'`. + +3. `returnCodabarStartEnd` is now removed. The detected results of Codabar symbols now always include the start and end characters. + +### `eccLevel` in Read Result Renamed to `ecLevel` + +In `ReadResult`, the `eccLevel` field has been renamed to `ecLevel`. It now holds strings like `"L"`, `"M"`, `"Q"`, or `"H"` or stringified numeric values for error correction levels. An empty string indicates that the error correction level is not applicable. + +> [!NOTE] +> +> The `eccLevel` field is still kept for a smooth migration experience, but marked as deprecated. + +### Renamed & Enhanced Writer Function + +`writeBarcode(...)` replaces `writeBarcodeToImageFile(...)`. The new function is powered by the new [`zint`](https://sourceforge.net/projects/zint/) writer, which supports more barcode formats, supports both `string` and `Uint8Array` inputs for generating barcodes from text or binary data, and provides new output formats (e.g. SVG, UTF-8) in addition to the binary image file output. + +The `WriterOptions` object has also been updated completely. + +> [!NOTE] +> +> The final shape of the `writeBarcode` function is still under discussion. The current implementation is subject to change. + +### Module Initialization / Caching Overhaul + +`prepareZXingModule(...)` replaces both `setZXingModuleOverrides(...)` and `getZXingModuleOverrides(...)`. The new function provides a more flexible way to initialize the ZXing module with custom options. + +> [!NOTE] +> +> The v1 module initialization functions `setZXingModuleOverrides` and `getZXingModuleOverrides` are still kept for a smooth migration experience, but marked as deprecated. + +`purgeZXingModule` now only clears the relevant module cache from where it is imported. It no longer resets the global module cache. + +## New Features & Enhancements + +### More Barcode Formats Supported in Writer + +The new `writeBarcode` function supports more barcode formats than the previous `writeBarcodeToImageFile`. All barcode formats supported by the reader except for `DXFilmEdge` are now supported by the writer. + +### New `tryDenoise` Option for Reading Barcodes + +The new `tryDenoise` option in `ReaderOptions` allows you to enable or disable the denoising algorithm when reading barcodes. This is an experimental feature and by default, it is set to `false`. diff --git a/.changeset/pre.json b/.changeset/pre.json new file mode 100644 index 00000000..95e4a5f6 --- /dev/null +++ b/.changeset/pre.json @@ -0,0 +1,8 @@ +{ + "mode": "pre", + "tag": "beta", + "initialVersions": { + "zxing-wasm": "1.3.4" + }, + "changesets": [] +} diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 00000000..0d1ce03d --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,97 @@ +language: en-US +tone_instructions: "" +early_access: false +enable_free_tier: true +reviews: + profile: chill + request_changes_workflow: false + high_level_summary: true + high_level_summary_placeholder: "@coderabbitai summary" + auto_title_placeholder: "@coderabbitai" + review_status: true + commit_status: true + collapse_walkthrough: false + changed_files_summary: true + sequence_diagrams: true + assess_linked_issues: true + related_issues: true + related_prs: true + suggested_labels: true + suggested_reviewers: true + poem: true + labeling_instructions: [] + path_filters: ["!tests/__snapshots__/**"] + path_instructions: [] + abort_on_close: true + auto_review: + enabled: true + auto_incremental_review: true + ignore_title_keywords: [] + labels: [] + drafts: false + base_branches: [] + tools: + shellcheck: + enabled: true + ruff: + enabled: true + markdownlint: + enabled: true + github-checks: + enabled: true + timeout_ms: 90000 + languagetool: + enabled: true + enabled_only: false + level: default + biome: + enabled: true + hadolint: + enabled: true + swiftlint: + enabled: true + phpstan: + enabled: true + level: default + golangci-lint: + enabled: true + yamllint: + enabled: true + gitleaks: + enabled: true + checkov: + enabled: true + detekt: + enabled: true + eslint: + enabled: true + rubocop: + enabled: true + buf: + enabled: true + regal: + enabled: true + actionlint: + enabled: true + pmd: + enabled: true + cppcheck: + enabled: true + semgrep: + enabled: true + circleci: + enabled: true +chat: + auto_reply: true +knowledge_base: + opt_out: false + learnings: + scope: auto + issues: + scope: auto + jira: + project_keys: [] + linear: + team_keys: [] + pull_requests: + scope: auto diff --git a/.github/workflows/preview-release.yml b/.github/workflows/preview-release.yml index 5b9c7579..66d3c15f 100644 --- a/.github/workflows/preview-release.yml +++ b/.github/workflows/preview-release.yml @@ -13,7 +13,7 @@ jobs: - name: Checkout Repo uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: - submodules: true + submodules: recursive - name: Setup uses: ./.github/actions/setup diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 95189273..eb27c24d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: - name: Checkout Repo uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: - submodules: true + submodules: recursive - name: Setup uses: ./.github/actions/setup diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8965566b..44c350d8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: - name: Checkout Repo uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: - submodules: true + submodules: recursive - name: Setup uses: ./.github/actions/setup diff --git a/README.md b/README.md index 035fb877..e22f8da2 100644 --- a/README.md +++ b/README.md @@ -2,91 +2,114 @@ [![npm](https://img.shields.io/npm/v/zxing-wasm)](https://www.npmjs.com/package/zxing-wasm/v/latest) [![npm bundle size (scoped)](https://img.shields.io/bundlephobia/minzip/zxing-wasm)](https://www.npmjs.com/package/zxing-wasm/v/latest) [![jsDelivr hits](https://img.shields.io/jsdelivr/npm/hm/zxing-wasm?color=%23ff5627)](https://cdn.jsdelivr.net/npm/zxing-wasm@latest/) [![deploy status](https://github.com/Sec-ant/zxing-wasm/actions/workflows/deploy.yml/badge.svg)](https://github.com/Sec-ant/zxing-wasm/actions/workflows/deploy.yml) -[ZXing-C++](https://github.com/zxing-cpp/zxing-cpp) WebAssembly as an ES/CJS module with types. Read or write barcodes in various JS runtimes: web, node, bun and deno. - -Visit [this online demo](https://zxing-wasm-demo.deno.dev/) to quickly explore its basic functions. It works best on the latest chromium browsers. +[ZXing-C++](https://github.com/zxing-cpp/zxing-cpp) WebAssembly as an ES/CJS module with types. Read or write barcodes in various JS runtimes: Web, Node.js, Bun, and Deno. + +
+ +| Barcode Format | Linear Barcode | Matrix Barcode | Reading Support | Writing Support | +| :---------------: | :------------: | :------------: | :-------------: | :-------------: | +| `Aztec` | | ✅ | ✅ | ✅ | +| `Codabar` | ✅ | | ✅ | ✅ | +| `Code39` | ✅ | | ✅ | ✅ | +| `Code93` | ✅ | | ✅ | ✅ | +| `Code128` | ✅ | | ✅ | ✅ | +| `DataBar` | ✅ | | ✅ | ✅ | +| `DataBarLimited` | ✅ | | ✅ | ✅ | +| `DataBarExpanded` | ✅ | | ✅ | ✅ | +| `DataMatrix` | | ✅ | ✅ | ✅ | +| `DXFilmEdge` | ✅ | | ✅ | | +| `EAN-8` | ✅ | | ✅ | ✅ | +| `EAN-13` | ✅ | | ✅ | ✅ | +| `ITF` | ✅ | | ✅ | ✅ | +| `MaxiCode` | | ✅ | ✅ | ✅ | +| `PDF417` | | ✅ | ✅ | ✅ | +| `QRCode` | | ✅ | ✅ | ✅ | +| `MicroQRCode` | | ✅ | ✅ | ✅ | +| `rMQRCode` | | ✅ | ✅ | ✅ | +| `UPC-A` | ✅ | | ✅ | ✅ | +| `UPC-E` | ✅ | | ✅ | ✅ | + +
+ + ## Build ```bash git clone --recurse-submodules https://github.com/Sec-ant/zxing-wasm cd zxing-wasm -# install pnpm first: + +# Install pnpm before executing the next command: # https://pnpm.io/installation pnpm i --frozen-lockfile -# install cmake first: + +# Install CMake before executing the next command: # https://cmake.org/download/ pnpm cmake -# install emscripten first: + +# Install Emscripten before executing the next command: # https://emscripten.org/docs/getting_started/downloads.html pnpm build:wasm + pnpm build ``` ## Install -``` +```bash npm i zxing-wasm ``` ## Documentation -https://zxing-wasm.deno.dev/ + -## Demo + ## Usage -This package exports 3 subpaths: `full`, `reader` and `writer`. You can choose whichever fits your needs. If you use TypeScript, you should set [`moduleResolution`](https://www.typescriptlang.org/docs/handbook/modules/theory.html#module-resolution) to [`bundler`](https://www.typescriptlang.org/docs/handbook/modules/reference.html#bundler), [`node16` or `nodenext`](https://www.typescriptlang.org/docs/handbook/modules/reference.html#node16-nodenext-1) in your `tsconfig.json` file to properly resolve the exported module. +This package exports three subpaths: `full`, `reader`, and `writer`. You can choose the one that fits your needs. If you use TypeScript, you should set [`moduleResolution`](https://www.typescriptlang.org/docs/handbook/modules/theory.html#module-resolution) to [`bundler`](https://www.typescriptlang.org/docs/handbook/modules/reference.html#bundler), [`node16`, or `nodenext`](https://www.typescriptlang.org/docs/handbook/modules/reference.html#node16-nodenext-1) in your `tsconfig.json` file to properly resolve the exported module. ### `zxing-wasm` or `zxing-wasm/full` -These 2 subpaths include functions to both read and write barcodes. The wasm binary size is ~1.19 MB. +These two subpaths provide functions to read and write barcodes. The wasm binary size is ~1.30 MB. ```ts -import { - readBarcodesFromImageFile, - readBarcodesFromImageData, - writeBarcodeToImageFile, -} from "zxing-wasm"; +import { readBarcodes, writeBarcode } from "zxing-wasm"; ``` or ```ts -import { - readBarcodesFromImageFile, - readBarcodesFromImageData, - writeBarcodeToImageFile, -} from "zxing-wasm/full"; +import { readBarcodes, writeBarcode } from "zxing-wasm/full"; ``` ### `zxing-wasm/reader` -This subpath only includes functions to read barcodes. The wasm binary size is ~917 KB. +This subpath only provides a function to read barcodes. The wasm binary size is ~906 KB. ```ts -import { - readBarcodesFromImageFile, - readBarcodesFromImageData, -} from "zxing-wasm/reader"; +import { readBarcodes } from "zxing-wasm/reader"; ``` ### `zxing-wasm/writer` -This subpath only includes a function to write barcodes. The wasm binary size is ~366 KB. +This subpath only provides a function to write barcodes. The wasm binary size is ~1.17 MB. ```ts -import { writeBarcodeToImageFile } from "zxing-wasm/writer"; +import { writeBarcode } from "zxing-wasm/writer"; ``` ### IIFE Scripts -Apart from ES and CJS modules, this package also ships IIFE scripts. The registered global variable is named `ZXingWASM`. +Apart from ES and CJS modules, this package also ships IIFE scripts. The registered global variable is named `ZXingWASM`, where you can access all the exported functions and variables under it. + +> [!NOTE] +> Replace the `` with the desired version number. ```html @@ -99,26 +122,16 @@ Apart from ES and CJS modules, this package also ships IIFE scripts. The registe ``` -### [`readBarcodesFromImageFile`](https://zxing-wasm.deno.dev/functions/full.readBarcodesFromImageFile.html) and [`readBarcodesFromImageData`](https://zxing-wasm.deno.dev/functions/full.readBarcodesFromImageData.html) - -These 2 functions are for reading barcodes. +### [`readBarcodes`](https://zxing-wasm.deno.dev/functions/full.readBarcodes.html) -[`readBarcodesFromImageFile`](https://zxing-wasm.deno.dev/functions/full.readBarcodesFromImageFile.html) accepts an image [`Blob`](https://developer.mozilla.org/docs/Web/API/Blob) or an image [`File`](https://developer.mozilla.org/docs/Web/API/File) as the first input. They're encoded images, e.g. `.png` `.jpg` files. +[`readBarcodes`](https://zxing-wasm.deno.dev/functions/full.readBarcodes.html) accepts an image [`Blob`](https://developer.mozilla.org/docs/Web/API/Blob), image [`File`](https://developer.mozilla.org/docs/Web/API/File), or an [`ImageData`](https://developer.mozilla.org/docs/Web/API/ImageData) as its first argument, and various options are supported in [`ReaderOptions`](https://zxing-wasm.deno.dev/interfaces/full.ReaderOptions.html) as an optional second argument. -[`readBarcodesFromImageData`](https://zxing-wasm.deno.dev/functions/full.readBarcodesFromImageData.html) accepts an [`ImageData`](https://developer.mozilla.org/docs/Web/API/ImageData) as the first input. They're raw pixels that usually acquired from [``](https://developer.mozilla.org/docs/Web/HTML/Element/canvas) or related APIs. - -Both of these 2 functions optionally accept the same second input: [`ReaderOptions`](https://zxing-wasm.deno.dev/interfaces/full.ReaderOptions.html). - -The return result of these 2 functions is a `Promise` of an array of [`ReadResult`](https://zxing-wasm.deno.dev/interfaces/full.ReadResult.html)s. +The return result of this function is a `Promise` of an array of [`ReadResult`](https://zxing-wasm.deno.dev/interfaces/full.ReadResult.html)s. e.g. ```ts -import { - readBarcodesFromImageFile, - readBarcodesFromImageData, - type ReaderOptions, -} from "zxing-wasm/reader"; +import { readBarcodes, type ReaderOptions } from "zxing-wasm/reader"; const readerOptions: ReaderOptions = { tryHarder: true, @@ -133,10 +146,7 @@ const imageFile = await fetch( "https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=Hello%20world!", ).then((resp) => resp.blob()); -const imageFileReadResults = await readBarcodesFromImageFile( - imageFile, - readerOptions, -); +const imageFileReadResults = await readBarcodes(imageFile, readerOptions); console.log(imageFileReadResults[0].text); // Hello world! @@ -152,97 +162,287 @@ const imageData = await createImageBitmap(imageFile).then((imageBitmap) => { return context.getImageData(0, 0, width, height); }); -const imageDataReadResults = await readBarcodesFromImageData( - imageData, - readerOptions, -); +const imageDataReadResults = await readBarcodes(imageData, readerOptions); console.log(imageDataReadResults[0].text); // Hello world! ``` -### [`writeBarcodeToImageFile`](https://zxing-wasm.deno.dev/functions/full.writeBarcodeToImageFile.html) +### [`writeBarcode`](https://zxing-wasm.deno.dev/functions/full.writeBarcode.html) -This function is used to write barcodes. The first argument of this function is a text string to be encoded and the optional second argument is an [`WriterOptions`](https://zxing-wasm.deno.dev/interfaces/full.WriterOptions.html). +The first argument of [`writeBarcode`](https://zxing-wasm.deno.dev/functions/full.writeBarcode.html) is a text string or an [`Uint8Array`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array) of bytes to be encoded, and the optional second argument [`WriterOptions`](https://zxing-wasm.deno.dev/interfaces/full.WriterOptions.html) accepts several writer options. The return result of this function is a `Promise` of a [`WriteResult`](https://zxing-wasm.deno.dev/interfaces/full.WriteResult.html). e.g. ```ts -import { writeBarcodeToImageFile, type WriterOptions } from "zxing-wasm/writer"; +import { writeBarcode, type WriterOptions } from "zxing-wasm/writer"; const writerOptions: WriterOptions = { format: "QRCode", - width: 150, - height: 150, - margin: 10, - eccLevel: 2, + scale: 3, }; -const writeOutput = await writeBarcodeToImageFile( - "Hello world!", - writerOptions, -); +const writeOutput = await writeBarcode("Hello world!", writerOptions); -console.log(writeOutput.image); +console.log(writeOutput.svg); // An SVG string. +console.log(writeOutput.utf8); // A multi-line string made up of " ", "▀", "▄", "█" characters. +console.log(writeOutput.image); // A PNG image blob. ``` -## Notes +## Configuring `.wasm` Serving + +### Serving via Web or CDN -When using this package, the `.wasm` binary needs to be served along with the JS glue code. In order to provide a smooth dev experience, the serve path is automatically assigned the [jsDelivr CDN](https://fastly.jsdelivr.net/npm/zxing-wasm/) url upon build. +When using this package, a `.wasm` binary file needs to be served somewhere, so the runtime can fetch, compile and instantiate the WASM module. To provide a smooth development experience, the serve path is automatically assigned a [jsDelivr CDN](https://fastly.jsdelivr.net/npm/zxing-wasm/) URL upon build. -If you would like to change the serve path (to one of your local network hosts, some other CDNs, or just Base64 encoded data URIs), please use [`setZXingModuleOverrides`](https://zxing-wasm.deno.dev/functions/full.setZXingModuleOverrides.html) to override the [`locateFile`](https://emscripten.org/docs/api_reference/module.html?highlight=locatefile#Module.locateFile) function in advance. `locateFile` is one of the [Emscripten `Module` attribute hooks](https://emscripten.org/docs/api_reference/module.html?highlight=locatefile#affecting-execution) that can affect the code execution of the `Module` object during its lifecycles. +If you want to change the serve path to your own server or other CDNs, please use [`prepareZXingModule`](https://zxing-wasm.deno.dev/functions/full.prepareZXingModule.html) and pass an [`overrides`](http://localhost:4173/interfaces/full.PrepareZXingModuleOptions.html#overrides) object with a custom defined [`locateFile`](https://emscripten.org/docs/api_reference/module.html?highlight=locatefile#Module.locateFile) function before reading or writing barcodes. `locateFile` is one of the [Emscripten `Module` attribute hooks](https://emscripten.org/docs/api_reference/module.html#affecting-execution) that can affect the code execution of the `Module` object during its lifecycle. e.g. ```ts -import { setZXingModuleOverrides, writeBarcodeToImageFile } from "zxing-wasm"; - -// override the locateFile function -setZXingModuleOverrides({ - locateFile: (path, prefix) => { - if (path.endsWith(".wasm")) { - return `https://unpkg.com/zxing-wasm@1/dist/full/${path}`; - } - return prefix + path; +import { prepareZXingModule, writeBarcode } from "zxing-wasm"; + +// Override the locateFile function +prepareZXingModule({ + overrides: { + locateFile: (path, prefix) => { + if (path.endsWith(".wasm")) { + return `https://unpkg.com/zxing-wasm@2/dist/full/${path}`; + } + return prefix + path; + }, }, }); -// call read or write functions afterwards -const writeOutput = await writeBarcodeToImageFile("Hello world!"); +// Call read or write functions afterward +const writeOutput = await writeBarcode("Hello world!"); ``` -The wasm binary won't be fetched or instantiated unless a [read](#readbarcodesfromimagefile-and-readbarcodesfromimagedata) or [write](#writebarcodetoimagefile) function is firstly called, and will only be instantiated once given the same ([`Object.is`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/is)) [ZXingModuleOverrides](https://zxing-wasm.deno.dev/types/full.ZXingModuleOverrides). If you want to manually trigger the download and instantiation of the wasm binary prior to any read or write functions, you can use [`getZXingModule`](https://zxing-wasm.deno.dev/functions/full.getZXingModule). This function will also return a `Promise` that resolves to a [`ZXingModule`](https://zxing-wasm.deno.dev/types/full.ZXingModule). +> [!NOTE] +> +> The default jsDelivr CDN serve path is also achieved by overriding the custom `locateFile` function: +> +> ```ts +> const DEFAULT_MODULE_OVERRIDES: ZXingModuleOverrides = { +> locateFile: (path, prefix) => { +> const match = path.match(/_(.+?)\.wasm$/); +> if (match) { +> return `https://fastly.jsdelivr.net/npm/zxing-wasm@${ZXING_WASM_VERSION}/dist/${match[1]}/${path}`; +> } +> return prefix + path; +> }, +> }; +> ``` +> +> However, `overrides` is atomic. If you override other `Module` attributes, you _probably_ should also provide a `locateFile` function to ensure the `.wasm` file is fetched correctly. + +### Integrating in Non-Web Runtimes + +If you want to use this library in non-web runtimes (such as Node.js, Bun, Deno, etc.) without setting up a server, there are several possible approaches. Because API support can differ between runtime environments and versions, you may need to adapt these examples or choose alternative methods depending on your specific runtime’s capabilities. Below are some example configurations for Node.js. + +1. **Use the [`Module.instantiateWasm`](https://emscripten.org/docs/api_reference/module.html#Module.instantiateWasm) API** + + ```ts + import { readFileSync } from "node:fs"; + import { prepareZXingModule } from "zxing-wasm/reader"; + + const wasmFileBuffer = readFileSync("/path/to/the/zxing_reader.wasm"); + + prepareZXingModule({ + overrides: { + instantiateWasm(imports, successCallback) { + WebAssembly.instantiate(wasmFileBuffer, imports).then(({ instance }) => + successCallback(instance), + ); + return {}; + }, + }, + }); + ``` + +2. **Use the [`Module.wasmBinary`](https://emscripten.org/docs/compiling/WebAssembly.html?highlight=wasmBinary#wasm-files-and-compilation) API** + + ```ts + import { readFileSync } from "node:fs"; + import { prepareZXingModule } from "zxing-wasm/reader"; + + prepareZXingModule({ + overrides: { + wasmBinary: readFileSync("/path/to/the/zxing_reader.wasm") + .buffer as ArrayBuffer, + }, + }); + ``` + +3. **Use the [`Module.locateFile`](https://emscripten.org/docs/api_reference/module.html?highlight=locatefile#Module.locateFile) API with an Object URL** + + ```ts + import { readFileSync } from "node:fs"; + import { prepareZXingModule } from "zxing-wasm/reader"; + + // Create an Object URL for the .wasm file. + const wasmFileUrl = URL.createObjectURL( + new Blob([readFileSync("/path/to/the/zxing_reader.wasm")], { + type: "application/wasm", + }), + ); + + prepareZXingModule({ + overrides: { + locateFile: (path, prefix) => { + if (path.endsWith(".wasm")) { + return wasmFileUrl; + } + return prefix + path; + }, + // Call `URL.revokeObjectURL(wasmFileUrl)` after the ZXing module + // is fully instantiated to free up memory. + postRun: [ + () => { + URL.revokeObjectURL(wasmFileUrl); + }, + ], + }, + }); + ``` + +4. **Use the [`Module.locateFile`](https://emscripten.org/docs/api_reference/module.html?highlight=locatefile#Module.locateFile) API with a Base64-encoded Data URL** _(Not recommended)_ + + ```ts + import { readFileSync } from "node:fs"; + import { prepareZXingModule } from "zxing-wasm/reader"; + + const wasmBase64 = readFileSync("/path/to/the/zxing_reader.wasm").toString( + "base64", + ); + const wasmUrl = `data:application/wasm;base64,${wasmBase64}`; + + prepareZXingModule({ + overrides: { + locateFile: (path, prefix) => { + if (path.endsWith(".wasm")) { + return `data:application/wasm;base64,${readFileSync( + "/path/to/the/zxing_reader.wasm", + ).toString("base64")}`; + } + return prefix + path; + }, + }, + }); + ``` + +> [!IMPORTANT] +> +> Each version of this library has a unique corresponding `.wasm` file. If you choose to serve it yourself, please ensure that the `.wasm` file matches the version of the `zxing-wasm` library you are using. Otherwise, you may encounter unexpected errors. + +For convenience, this library provides an exported `ZXING_WASM_VERSION` variable to indicate the resolved version of the `zxing-wasm` you are using: ```ts -import { getZXingModule } from "zxing-wasm"; +import { ZXING_WASM_VERSION } from "zxing-wasm"; +``` -/** - * This function will trigger the download and - * instantiation of the wasm binary immediately - */ -const zxingModulePromise1 = getZXingModule(); +The SHA-256 hash of the `.wasm` file (in hex format) is also exported as `ZXING_WASM_SHA256`, in case you want to make sure you are serving the exactly same file: + +```ts +import { ZXING_WASM_SHA256 } from "zxing-wasm"; +``` + +To acquire the `.wasm` files for customized serving, in addition to finding them by searching in your `node_modules` folder, they can also be downloaded from CDNs like [jsDelivr](https://cdn.jsdelivr.net/npm/zxing-wasm@latest/dist/): + +- **`zxing_full.wasm`**: + + ```text + https://cdn.jsdelivr.net/npm/zxing-wasm@/dist/full/zxing_full.wasm + ``` + +- **`zxing_reader.wasm`**: + + ```text + https://cdn.jsdelivr.net/npm/zxing-wasm@/dist/reader/zxing_reader.wasm + ``` -const zxingModulePromise2 = getZXingModule(); +- **`zxing_writer.wasm`**: -console.log(zxingModulePromise1 === zxingModulePromise2); // true + ```text + https://cdn.jsdelivr.net/npm/zxing-wasm@/dist/writer/zxing_writer.wasm + ``` + +## Controlling `.wasm` Instantiation Timing and Caching + +By default, the `.wasm` binary will not be fetched and instantiated until a `readBarcodes` or `writeBarcode` function is called. This behavior avoids unnecessary network requests and instantiation overhead if you decide to override the default `.wasm` serving path or other settings before using the library. Calling `prepareZXingModule` with `overrides` alone does not change this default behavior: + +```ts +prepareZXingModule({ + overrides: { + /* ... your desired overrides ... */ + }, +}); // <-- returns void +``` + +However, if you want to explicitly trigger the download and instantiation of the `.wasm` binary, you can set the [`fireImmediately`](https://zxing-wasm.deno.dev/interfaces/full.PrepareZXingModuleOptions.html#fireimmediately) option to `true`. Doing so also causes `prepareZXingModule` to return a `Promise` that resolves to the underlying Emscripten module. This allows you to `await` the instantiation process: + +```ts +prepareZXingModule({ + overrides: { + /* ... your desired overrides ... */ + }, + fireImmediately: true, +}); // <-- returns a promise ``` -[`getZXingModule`](https://zxing-wasm.deno.dev/functions/full.getZXingModule) can also optionally accept a [`ZXingModuleOverrides`](https://zxing-wasm.deno.dev/types/full.ZXingModuleOverrides.html) argument. +Because different `overrides` settings can influence how this library locates and instantiates the `.wasm` binary, the library performs an equality check on `overrides` to determine if the `.wasm` binary should be re-fetched and re-instantiated. By default, it is determined by a shallow comparison of the `overrides` object. If you prefer a different method of comparison, you can supply a custom [`equalityFn`](https://zxing-wasm.deno.dev/interfaces/full.PrepareZXingModuleOptions.html#equalityfn): ```ts -import { getZXingModule } from "zxing-wasm"; - -getZXingModule({ - locateFile: (path, prefix) => { - if (path.endsWith(".wasm")) { - return `https://unpkg.com/zxing-wasm@1/dist/full/${path}`; - } - return prefix + path; +prepareZXingModule({ + overrides: { + /* ... your desired overrides ... */ }, + fireImmediately: true, + equalityFn: () => false, // <-- force re-fetch and re-instantiate }); ``` -## License +## FAQ + +1. **Why are submodules required?** + + The core function of reading / writing barcodes of this library is provided by [zxing-cpp](https://github.com/zxing-cpp/zxing-cpp). It is pinned to a specific commit ID as a submodule, and can be built as `.wasm` files. Additionally, the barcode generation ability is provided by [`zint`](https://sourceforge.net/projects/zint/), which is a submodule inside [zxing-cpp](https://github.com/zxing-cpp/zxing-cpp), so it is necessary to clone the repository with `--recurse-submodules` to ensure that all required submodules are also cloned. + +2. **I forgot to clone the repository with `--recurse-submodules`, how should I install the submodules without deleting this repo and cloning it again?** + + In the root of the repo, run: + + ```bash + git submodule update --init --recursive + ``` + +3. **Are there any higher level libraries that can be used to simplify the usage of this library?** + + - [barcode-detector](https://github.com/Sec-ant/barcode-detector): A [Barcode Detection API](https://wicg.github.io/shape-detection-api/#barcode-detection-api) polyfill / ponyfill that uses this library under the hood. + - [vue-qrcode-reader](https://github.com/gruhn/vue-qrcode-reader): A set of Vue.js components for detecting QR codes and various other barcode formats right in the browser which uses [barcode-detector](https://github.com/Sec-ant/barcode-detector) under the hood. + - [@yudiel/react-qr-scanner](https://github.com/yudielcurbelo/react-qr-scanner): A library to scan QR Codes in react which uses [barcode-detector](https://github.com/Sec-ant/barcode-detector) under the hood. + - [svelte-qrcode-reader](https://github.com/ollema/svelte-qrcode-reader): A set of Svelte 5 components for detecting and decoding QR-codes which uses [barcode-detector](https://github.com/Sec-ant/barcode-detector) under the hood. + + A React toolkit for scanning barcodes directly based on this library is planned, which aims to provide easy-to-use capabilities for interacting with web cameras. + +4. **One of the input types of `readBarcodes` is `ImageData`, which is a `DOM` type. How can I use it in Node.js or other runtimes?** + + The types are duck-typed, so you can use it in Node.js or other runtimes by providing a `DOM`-compatible `ImageData` object in the following shape, where the image data should be in [RGBA format](https://developer.mozilla.org/en-US/docs/Web/API/ImageData/data): + + ```ts + interface ImageData { + data: Uint8ClampedArray; + width: number; + height: number; + } + ``` + +## Licenses + +This project contains code from multiple sources, each with its own license: -MIT +- [zxing-cpp](https://github.com/zxing-cpp/zxing-cpp): [Apache License 2.0](https://github.com/zxing-cpp/zxing-cpp/blob/master/LICENSE) +- [src/cpp/ZXingWasm.cpp](https://github.com/Sec-ant/zxing-wasm/blob/main/src/cpp/ZXingWasm.cpp): [Apache License 2.0](https://github.com/Sec-ant/zxing-wasm/blob/main/src/cpp/LICENSE) +- [zint](https://sourceforge.net/projects/zint/): [BSD 3-Clause License](https://sourceforge.net/p/zint/code/ci/master/tree/LICENSE) +- zxing-wasm specific code: [MIT License](https://github.com/Sec-ant/zxing-wasm/blob/main/LICENSE) diff --git a/biome.json b/biome.json index ef898eab..4b981501 100644 --- a/biome.json +++ b/biome.json @@ -27,10 +27,37 @@ }, "overrides": [ { - "include": ["*.json"], - "json": { - "parser": { - "allowTrailingCommas": true + "include": [ + "core.ts", + "full/index.ts", + "reader/index.ts", + "writer/index.ts" + ], + "linter": { + "rules": { + "suspicious": { + "noConfusingVoidType": "off" + } + } + } + }, + { + "include": ["tests/**/*.ts"], + "linter": { + "rules": { + "performance": { + "noDelete": "off" + } + } + } + }, + { + "include": ["imageData.d.ts"], + "linter": { + "rules": { + "complexity": { + "noBannedTypes": "off" + } } } }, diff --git a/main.ts b/main.ts index d4750662..70b81da6 100644 --- a/main.ts +++ b/main.ts @@ -1,18 +1,29 @@ import { - readBarcodesFromImageFile, - writeBarcodeToImageFile, + type ReaderOptions, + type WriterOptions, + readBarcodes, + writeBarcode, } from "./src/full/index"; -// import { readBarcodesFromImageFile } from "./src/reader/index"; +const imageFile = await fetch( + "https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=Hello%20world!", +).then((resp) => resp.blob()); -// import { writeBarcodeToImageFile } from "./src/writer/index"; +const readerOptions: ReaderOptions = { + tryHarder: true, + formats: ["QRCode"], + maxNumberOfSymbols: 1, +}; -const text = "Hello World!"; -const barcodeImage = (await writeBarcodeToImageFile(text)).image; -if (barcodeImage) { - const readResults = await readBarcodesFromImageFile(barcodeImage, { - formats: ["QRCode"], - }); - console.log(readResults); - console.log(readResults[0].text === text); -} +const imageFileReadResults = await readBarcodes(imageFile, readerOptions); + +console.log(imageFileReadResults); // Hello world! + +const writerOptions: WriterOptions = { + format: "EAN-13", + scale: 0, + withQuietZones: true, + withHRT: false, +}; + +console.log(await writeBarcode("12345", writerOptions)); diff --git a/package.json b/package.json index 74e273fd..022154a2 100644 --- a/package.json +++ b/package.json @@ -114,17 +114,20 @@ "tinyglobby": "^0.2.10", "tsx": "^4.19.2", "typedoc": "^0.27.5", + "typedoc-plugin-replace-text": "^4.1.0", "typescript": "^5.7.2", "vite": "^6.0.5", "vite-plugin-babel": "^1.3.0", "vitest": "^2.1.8" }, "dependencies": { - "@types/emscripten": "^1.39.13" + "@types/emscripten": "^1.39.13", + "type-fest": "^4.30.1" }, - "overrides": { - "typedoc": { - "typescript": "$typescript" + "pnpm": { + "overrides": { + "vitest@2.1.8>vite": "$vite", + "@vitest/mocker@2.1.8>vite": "$vite" } }, "packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f36283c9..a7249498 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,6 +4,10 @@ settings: autoInstallPeers: true excludeLinksFromLockfile: false +overrides: + vitest@2.1.8>vite: ^6.0.5 + '@vitest/mocker@2.1.8>vite': ^6.0.5 + importers: .: @@ -11,6 +15,9 @@ importers: '@types/emscripten': specifier: ^1.39.13 version: 1.39.13 + type-fest: + specifier: ^4.30.1 + version: 4.30.1 devDependencies: '@babel/core': specifier: ^7.26.0 @@ -66,6 +73,9 @@ importers: typedoc: specifier: ^0.27.5 version: 0.27.5(typescript@5.7.2) + typedoc-plugin-replace-text: + specifier: ^4.1.0 + version: 4.1.0(typedoc@0.27.5(typescript@5.7.2)) typescript: specifier: ^5.7.2 version: 5.7.2 @@ -77,7 +87,7 @@ importers: version: 1.3.0(@babel/core@7.26.0)(vite@6.0.5(@types/node@22.10.2)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) vitest: specifier: ^2.1.8 - version: 2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(terser@5.36.0) + version: 2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) packages: @@ -988,7 +998,7 @@ packages: resolution: {integrity: sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==} peerDependencies: msw: ^2.4.9 - vite: ^5.0.0 + vite: ^6.0.5 peerDependenciesMeta: msw: optional: true @@ -2127,6 +2137,15 @@ packages: engines: {node: '>=18.0.0'} hasBin: true + type-fest@4.30.1: + resolution: {integrity: sha512-ojFL7eDMX2NF0xMbDwPZJ8sb7ckqtlAi1GsmgsFXvErT9kFTk1r0DuQKvrCh73M6D4nngeHJmvogF9OluXs7Hw==} + engines: {node: '>=16'} + + typedoc-plugin-replace-text@4.1.0: + resolution: {integrity: sha512-t/vOiGzhcK+8oVQRt6kJ19RKFN5zwQlDiXyx2eWywG7xHt0lSUcfttroGwNLIBnNEd2rLAwe5YVPhSjVoYHBag==} + peerDependencies: + typedoc: 0.26.x || 0.27.x + typedoc@0.27.5: resolution: {integrity: sha512-x+fhKJtTg4ozXwKayh/ek4wxZQI/+2hmZUdO2i2NGDBRUflDble70z+ewHod3d4gRpXSO6fnlnjbDTnJk7HlkQ==} engines: {node: '>= 18'} @@ -3202,13 +3221,13 @@ snapshots: chai: 5.1.2 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@22.10.2)(terser@5.36.0))': + '@vitest/mocker@2.1.8(vite@6.0.5(@types/node@22.10.2)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1))': dependencies: '@vitest/spy': 2.1.8 estree-walker: 3.0.3 magic-string: 0.30.12 optionalDependencies: - vite: 5.4.11(@types/node@22.10.2)(terser@5.36.0) + vite: 6.0.5(@types/node@22.10.2)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) '@vitest/pretty-format@2.1.8': dependencies: @@ -3238,7 +3257,7 @@ snapshots: sirv: 3.0.0 tinyglobby: 0.2.10 tinyrainbow: 1.2.0 - vitest: 2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(terser@5.36.0) + vitest: 2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) '@vitest/utils@2.1.8': dependencies: @@ -4327,6 +4346,12 @@ snapshots: optionalDependencies: fsevents: 2.3.3 + type-fest@4.30.1: {} + + typedoc-plugin-replace-text@4.1.0(typedoc@0.27.5(typescript@5.7.2)): + dependencies: + typedoc: 0.27.5(typescript@5.7.2) + typedoc@0.27.5(typescript@5.7.2): dependencies: '@gerrit0/mini-shiki': 1.24.1 @@ -4405,10 +4430,10 @@ snapshots: tsx: 4.19.2 yaml: 2.6.1 - vitest@2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(terser@5.36.0): + vitest@2.1.8(@types/node@22.10.2)(@vitest/ui@2.1.8)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1): dependencies: '@vitest/expect': 2.1.8 - '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@22.10.2)(terser@5.36.0)) + '@vitest/mocker': 2.1.8(vite@6.0.5(@types/node@22.10.2)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1)) '@vitest/pretty-format': 2.1.8 '@vitest/runner': 2.1.8 '@vitest/snapshot': 2.1.8 @@ -4424,13 +4449,14 @@ snapshots: tinyexec: 0.3.1 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.11(@types/node@22.10.2)(terser@5.36.0) + vite: 6.0.5(@types/node@22.10.2)(terser@5.36.0)(tsx@4.19.2)(yaml@2.6.1) vite-node: 2.1.8(@types/node@22.10.2)(terser@5.36.0) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 22.10.2 '@vitest/ui': 2.1.8(vitest@2.1.8) transitivePeerDependencies: + - jiti - less - lightningcss - msw @@ -4440,6 +4466,8 @@ snapshots: - sugarss - supports-color - terser + - tsx + - yaml which@2.0.2: dependencies: diff --git a/src/bindings/barcodeFormat.ts b/src/bindings/barcodeFormat.ts index 7690a02f..3030596e 100644 --- a/src/bindings/barcodeFormat.ts +++ b/src/bindings/barcodeFormat.ts @@ -1,29 +1,54 @@ -export const barcodeFormats = [ - "Aztec", - "Codabar", - "Code128", - "Code39", - "Code93", - "DataBar", - "DataBarExpanded", - "DataBarLimited", - "DataMatrix", - "DXFilmEdge", - "EAN-13", - "EAN-8", - "ITF", - "Linear-Codes", - "Matrix-Codes", - "MaxiCode", - "MicroQRCode", - "None", - "PDF417", - "QRCode", - "rMQRCode", - "UPC-A", - "UPC-E", +const barcodeFormatsWithMeta = [ + ["Aztec", "M"], + ["Codabar", "L"], + ["Code39", "L"], + ["Code93", "L"], + ["Code128", "L"], + ["DataBar", "L"], + ["DataBarExpanded", "L"], + ["DataMatrix", "M"], + ["EAN-8", "L"], + ["EAN-13", "L"], + ["ITF", "L"], + ["MaxiCode", "M"], + ["PDF417", "M"], + ["QRCode", "M"], + ["UPC-A", "L"], + ["UPC-E", "L"], + ["MicroQRCode", "M"], + ["rMQRCode", "M"], + ["DXFilmEdge", "L", "W-"], + ["DataBarLimited", "L"], ] as const; +export const barcodeFormats = barcodeFormatsWithMeta.map(([format]) => format); + +type TakeFirst = T extends readonly [infer U, ...unknown[]] ? U : never; + +export type LinearBarcodeFormat = TakeFirst< + Extract< + (typeof barcodeFormatsWithMeta)[number], + readonly [string, "L", ...unknown[]] + > +>; + +export const linearBarcodeFormats = barcodeFormats.filter( + (_, index): _ is LinearBarcodeFormat => + barcodeFormatsWithMeta[index][1] === "L", +); + +export type MatrixBarcodeFormat = TakeFirst< + Extract< + (typeof barcodeFormatsWithMeta)[number], + readonly [string, "M", ...unknown[]] + > +>; + +export const matrixBarcodeFormats = barcodeFormats.filter( + (_, index): _ is MatrixBarcodeFormat => + barcodeFormatsWithMeta[index][1] === "M", +); + /** * @internal */ @@ -32,75 +57,110 @@ export type BarcodeFormat = (typeof barcodeFormats)[number]; /** * Barcode formats that can be used in {@link ReaderOptions.formats | `ReaderOptions.formats`} to read barcodes. */ -export type ReadInputBarcodeFormat = Exclude; +export type ReadInputBarcodeFormat = + | BarcodeFormat + | "Linear-Codes" + | "Matrix-Codes" + | "Any"; /** * Barcode formats that can be used in {@link WriterOptions.format | `WriterOptions.format`} to write barcodes. */ -export type WriteInputBarcodeFormat = Exclude< - BarcodeFormat, - | "DataBar" - | "DataBarExpanded" - | "DataBarLimited" - | "DXFilmEdge" - | "MaxiCode" - | "MicroQRCode" - | "rMQRCode" - | "None" - | "Linear-Codes" - | "Matrix-Codes" +export type WriteInputBarcodeFormat = TakeFirst< + Exclude< + (typeof barcodeFormatsWithMeta)[number], + readonly [string, string, "W-"] + > >; /** - * Barcode formats that may be returned in {@link ReadResult.format} in read functions. + * Barcode formats that may be returned in {@link ReadResult.format | `ReadResult.format`} in read functions. */ -export type ReadOutputBarcodeFormat = Exclude< - BarcodeFormat, - "Linear-Codes" | "Matrix-Codes" ->; +export type ReadOutputBarcodeFormat = BarcodeFormat | "None"; -export function formatsToString(formats: BarcodeFormat[]): string { - return formats.join("|"); -} +export type LooseBarcodeFormat = + | ReadInputBarcodeFormat + | WriteInputBarcodeFormat + | ReadOutputBarcodeFormat; -export function formatsFromString(formatString: string): BarcodeFormat[] { - return formatString - .split(/ |,|\|]/) - .map((format) => formatFromString(format)); +/** + * Encodes a barcode format into its numeric representation. + * + * @param format - The barcode format to encode. Can be a specific format, "Linear-Codes", + * "Matrix-Codes", "Any", or "None" + * @returns A number representing the encoded format where: + * - For specific formats: returns a power of 2 based on format's index + * - For "Linear-Codes": returns bitwise OR of all linear format codes + * - For "Matrix-Codes": returns bitwise OR of all matrix format codes + * - For "Any": returns a number with all format bits set + * - For "None": returns 0 + */ +export function encodeFormat(format: LooseBarcodeFormat): number { + switch (format) { + case "Linear-Codes": + return linearBarcodeFormats.reduce((acc, f) => acc | encodeFormat(f), 0); + case "Matrix-Codes": + return matrixBarcodeFormats.reduce((acc, f) => acc | encodeFormat(f), 0); + case "Any": + return (1 << barcodeFormatsWithMeta.length) - 1; + case "None": + return 0; + default: { + return 1 << barcodeFormats.indexOf(format); + } + } } -export function formatFromString(format: string): BarcodeFormat { - const normalizedTarget = normalizeFormatString(format); - let start = 0; - let end = barcodeFormats.length - 1; - while (start <= end) { - const mid = Math.floor((start + end) / 2); - const midElement = barcodeFormats[mid]; - const normalizedMidElement = normalizeFormatString(midElement); - if (normalizedMidElement === normalizedTarget) { - return midElement; - } - if (normalizedMidElement < normalizedTarget) { - start = mid + 1; - } else { - end = mid - 1; - } +/** + * Decodes a numeric format value into a barcode format string. + * + * @param number - A numeric value representing the encoded barcode format + * @returns The decoded barcode format string + * + * @remarks + * Uses bit position to determine the format, where the position of the highest set bit + * corresponds to an index in the barcode formats array. Returns "None" for zero value. + */ +export function decodeFormat(number: number): ReadOutputBarcodeFormat { + if (number === 0) { + return "None"; } - return "None"; + const index = 31 - Math.clz32(number); + return barcodeFormats[index]; } -export function normalizeFormatString(format: string): string { - return format.toLowerCase().replace(/_-\[\]/g, ""); +/** + * Encodes an array of barcode formats into a single numeric value using bitwise operations. + * + * @param formats - Array of barcode formats to be encoded + * @returns A number representing the combined encoded formats using bitwise OR operations + */ +export function encodeFormats(formats: LooseBarcodeFormat[]): number { + return formats.reduce((acc, format) => acc | encodeFormat(format), 0); } -if (import.meta.vitest) { - const { test, expect } = import.meta.vitest; - test("barcode formats are ordered", () => { - for (let i = 0; i < barcodeFormats.length - 1; ++i) { - expect( - normalizeFormatString(barcodeFormats[i]) < - normalizeFormatString(barcodeFormats[i + 1]), - ).toBe(true); +/** + * Decodes a numeric value into an array of barcode formats based on bit flags. + * + * @param number - A numeric value where each bit represents a different barcode format + * @returns An array of decoded BarcodeFormat values. Returns empty array if input is 0 + * + * @remarks + * This function uses bitwise operations to decode a number into individual barcode formats. + * Each bit position in the input number corresponds to a specific barcode format. + * The function iterates through each bit, and if set, adds the corresponding format to the result array. + */ +export function decodeFormats(number: number): BarcodeFormat[] { + const formats: BarcodeFormat[] = []; + if (number === 0) { + return formats; + } + let code = 1; + while (code <= number) { + if (number & code) { + formats.push(decodeFormat(code) as BarcodeFormat); } - }); + code <<= 1; + } + return formats; } diff --git a/src/bindings/binarizer.ts b/src/bindings/binarizer.ts index 63f4d320..52bbdd9d 100644 --- a/src/bindings/binarizer.ts +++ b/src/bindings/binarizer.ts @@ -1,6 +1,3 @@ -import type { ZXingModule } from "../core.js"; -import type { ZXingEnum } from "./enum.js"; - export const binarizers = [ "LocalAverage", "GlobalHistogram", @@ -11,17 +8,21 @@ export const binarizers = [ export type Binarizer = (typeof binarizers)[number]; /** - * @internal + * Encodes a binarizer to its numeric representation. + * + * @param binarizer - The binarizer to encode + * @returns A number representing the encoded binarizer */ -export type ZXingBinarizer = Record; - -export function binarizerToZXingEnum( - zxingModule: ZXingModule, - binarizer: Binarizer, -): ZXingEnum { - return zxingModule.Binarizer[binarizer]; +export function encodeBinarizer(binarizer: Binarizer): number { + return binarizers.indexOf(binarizer); } -export function zxingEnumToBinarizer(zxingEnum: ZXingEnum): Binarizer { - return binarizers[zxingEnum.value]; +/** + * Decodes a binarizer from a numeric identifier. + * + * @param number - The numeric identifier of the binarizer + * @returns The decoded binarizer + */ +export function decodeBinarizer(number: number): Binarizer { + return binarizers[number]; } diff --git a/src/bindings/characterSet.ts b/src/bindings/characterSet.ts index 8b0dae48..6fc3cf4f 100644 --- a/src/bindings/characterSet.ts +++ b/src/bindings/characterSet.ts @@ -1,6 +1,3 @@ -import type { ZXingModule, ZXingModuleType } from "../core.js"; -import type { ZXingEnum } from "./enum.js"; - export const characterSets = [ "Unknown", "ASCII", @@ -31,6 +28,10 @@ export const characterSets = [ "EUC_JP", "EUC_KR", "UTF16BE", + /** + * UnicodeBig [[deprecated]] + */ + "UTF16BE", "UTF8", "UTF16LE", "UTF32BE", @@ -38,20 +39,37 @@ export const characterSets = [ "BINARY", ] as const; +/** + * @deprecated Use `"UTF16BE"` instead. + */ +type DeprecatedUnicodeBig = "UnicodeBig"; + export type CharacterSet = (typeof characterSets)[number]; /** - * @internal + * Encodes a character set identifier into its numeric representation. + * + * @param characterSet - The character set to encode, either a standard CharacterSet or legacy 'UnicodeBig' + * @returns A number representing the encoded character set + * + * @remarks + * Special handling is provided for the deprecated 'UnicodeBig' value, which is mapped to 'UTF16BE' */ -export type ZXingCharacterSet = Record; - -export function characterSetToZXingEnum( - zxingModule: ZXingModule, - characterSet: CharacterSet, -): ZXingEnum { - return zxingModule.CharacterSet[characterSet]; +export function encodeCharacterSet( + characterSet: CharacterSet | DeprecatedUnicodeBig, +): number { + if (characterSet === "UnicodeBig") { + return characterSets.indexOf("UTF16BE"); + } + return characterSets.indexOf(characterSet); } -export function zxingEnumToCharacterSet(zxingEnum: ZXingEnum): CharacterSet { - return characterSets[zxingEnum.value]; +/** + * Decodes a character set based on its numeric identifier. + * + * @param number - The numeric identifier of the character set to decode + * @returns The decoded character set + */ +export function decodeCharacterSet(number: number): CharacterSet { + return characterSets[number]; } diff --git a/src/bindings/contentType.ts b/src/bindings/contentType.ts index 0a634f0f..174ec42b 100644 --- a/src/bindings/contentType.ts +++ b/src/bindings/contentType.ts @@ -1,6 +1,3 @@ -import type { ZXingModule } from "../core.js"; -import type { ZXingEnum } from "./enum.js"; - export const contentTypes = [ "Text", "Binary", @@ -13,17 +10,21 @@ export const contentTypes = [ export type ContentType = (typeof contentTypes)[number]; /** - * @internal + * Encodes a content type into its numeric representation. + * + * @param contentType - The content type to encode + * @returns A number representing the encoded content type */ -export type ZXingContentType = Record; - -export function contentTypeToZXingEnum( - zxingModule: ZXingModule, - contentType: ContentType, -): ZXingEnum { - return zxingModule.ContentType[contentType]; +export function encodeContentType(contentType: ContentType): number { + return contentTypes.indexOf(contentType); } -export function zxingEnumToContentType(zxingEnum: ZXingEnum): ContentType { - return contentTypes[zxingEnum.value]; +/** + * Decodes a content type from its numeric representation. + * + * @param number - The numeric identifier representing a content type + * @returns The decoded content type + */ +export function decodeContentType(number: number): ContentType { + return contentTypes[number]; } diff --git a/src/bindings/eanAddOnSymbol.ts b/src/bindings/eanAddOnSymbol.ts index 7856ebea..5b3c581f 100644 --- a/src/bindings/eanAddOnSymbol.ts +++ b/src/bindings/eanAddOnSymbol.ts @@ -1,24 +1,23 @@ -import type { ZXingModule } from "../core.js"; -import type { ZXingEnum } from "./enum.js"; - export const eanAddOnSymbols = ["Ignore", "Read", "Require"] as const; export type EanAddOnSymbol = (typeof eanAddOnSymbols)[number]; /** - * @internal + * Encodes an EAN add-on symbol to its numeric representation. + * + * @param eanAddOnSymbol - The EAN add-on symbol to encode + * @returns The number representing the encoded EAN add-on symbol */ -export type ZXingEanAddOnSymbol = Record; - -export function eanAddOnSymbolToZXingEnum( - zxingModule: ZXingModule, - eanAddOnSymbol: EanAddOnSymbol, -): ZXingEnum { - return zxingModule.EanAddOnSymbol[eanAddOnSymbol]; +export function encodeEanAddOnSymbol(eanAddOnSymbol: EanAddOnSymbol): number { + return eanAddOnSymbols.indexOf(eanAddOnSymbol); } -export function zxingEnumToEanAddOnSymbol( - zxingEnum: ZXingEnum, -): EanAddOnSymbol { - return eanAddOnSymbols[zxingEnum.value]; +/** + * Decodes the EAN add-on symbol corresponding to the given number. + * + * @param number - The numeric identifier of the EAN add-on symbol to decode + * @returns The decoded EAN add-on symbol + */ +export function decodeEanAddOnSymbol(number: number): EanAddOnSymbol { + return eanAddOnSymbols[number]; } diff --git a/src/bindings/ecLevel.ts b/src/bindings/ecLevel.ts new file mode 100644 index 00000000..a63c75f1 --- /dev/null +++ b/src/bindings/ecLevel.ts @@ -0,0 +1 @@ +export type EcLevel = `${number}` | `${number}%` | "L" | "M" | "Q" | "H" | ""; diff --git a/src/bindings/eccLevel.ts b/src/bindings/eccLevel.ts deleted file mode 100644 index aa984c46..00000000 --- a/src/bindings/eccLevel.ts +++ /dev/null @@ -1,7 +0,0 @@ -export const writeInputEccLevels = [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8] as const; - -export type WriteInputEccLevel = (typeof writeInputEccLevels)[number]; - -export const readOutputEccLevels = ["L", "M", "Q", "H"] as const; - -export type ReadOutputEccLevel = (typeof readOutputEccLevels)[number]; diff --git a/src/bindings/enum.ts b/src/bindings/enum.ts deleted file mode 100644 index 57b2e6d9..00000000 --- a/src/bindings/enum.ts +++ /dev/null @@ -1,6 +0,0 @@ -/** - * @internal - */ -export interface ZXingEnum { - value: number; -} diff --git a/src/bindings/exposedReaderBindings.ts b/src/bindings/exposedReaderBindings.ts index f59db64d..ebc0c85e 100644 --- a/src/bindings/exposedReaderBindings.ts +++ b/src/bindings/exposedReaderBindings.ts @@ -8,25 +8,24 @@ export const defaultReaderOptions: Required = { export { barcodeFormats, type BarcodeFormat, + linearBarcodeFormats, + type LinearBarcodeFormat, + matrixBarcodeFormats, + type MatrixBarcodeFormat, + type LooseBarcodeFormat, type ReadInputBarcodeFormat, type ReadOutputBarcodeFormat, binarizers, - type ZXingBinarizer, type Binarizer, characterSets, - type ZXingCharacterSet, type CharacterSet, contentTypes, - type ZXingContentType, type ContentType, + type EcLevel, type ZXingReaderOptions, type ReaderOptions, eanAddOnSymbols, - type ZXingEanAddOnSymbol, type EanAddOnSymbol, - readOutputEccLevels, - type ReadOutputEccLevel, - type ZXingEnum, type ZXingPoint, type ZXingPosition, type Point, @@ -34,24 +33,6 @@ export { type ZXingReadResult, type ReadResult, textModes, - type ZXingTextMode, type TextMode, type ZXingVector, } from "./index.js"; - -export { - /** - * @deprecated renamed as `defaultReaderOptions` - */ - defaultReaderOptions as defaultDecodeHints, -}; -export type { - /** - * @deprecated renamed as `ZXingReaderOptions` - */ - ZXingReaderOptions as ZXingDecodeHints, - /** - * @deprecated renamed as `ReaderOptions` - */ - ReaderOptions as DecodeHints, -} from "./index.js"; diff --git a/src/bindings/exposedWriterBindings.ts b/src/bindings/exposedWriterBindings.ts index 4dfb7ecd..056c8f25 100644 --- a/src/bindings/exposedWriterBindings.ts +++ b/src/bindings/exposedWriterBindings.ts @@ -5,32 +5,17 @@ export const defaultWriterOptions: Required = { ...wo }; export { barcodeFormats, type BarcodeFormat, + linearBarcodeFormats, + type LinearBarcodeFormat, + matrixBarcodeFormats, + type MatrixBarcodeFormat, + type LooseBarcodeFormat, type WriteInputBarcodeFormat, characterSets, - type ZXingCharacterSet, type CharacterSet, - writeInputEccLevels, - type WriteInputEccLevel, + type EcLevel, type ZXingWriterOptions, type WriterOptions, - type ZXingEnum, type ZXingWriteResult, type WriteResult, } from "./index.js"; - -export { - /** - * @deprecated renamed as `defaultWriterOptions` - */ - defaultWriterOptions as defaultEncodeHints, -}; -export type { - /** - * @deprecated renamed as `ZXingWriterOptions` - */ - ZXingWriterOptions as ZXingEncodeHints, - /** - * @deprecated renamed as `WriterOptions` - */ - WriterOptions as EncodeHints, -} from "./index.js"; diff --git a/src/bindings/index.ts b/src/bindings/index.ts index 0081c441..3d9c867a 100644 --- a/src/bindings/index.ts +++ b/src/bindings/index.ts @@ -2,11 +2,10 @@ export * from "./barcodeFormat.js"; export * from "./binarizer.js"; export * from "./characterSet.js"; export * from "./contentType.js"; -export * from "./readerOptions.js"; +export * from "./ecLevel.js"; export * from "./eanAddOnSymbol.js"; -export * from "./eccLevel.js"; +export * from "./readerOptions.js"; export * from "./writerOptions.js"; -export * from "./enum.js"; export * from "./position.js"; export * from "./readResult.js"; export * from "./textMode.js"; diff --git a/src/bindings/readResult.ts b/src/bindings/readResult.ts index cc4071c1..8e4b4db8 100644 --- a/src/bindings/readResult.ts +++ b/src/bindings/readResult.ts @@ -1,10 +1,6 @@ -import { - type ReadOutputBarcodeFormat, - formatFromString, -} from "./barcodeFormat.js"; -import { type ContentType, zxingEnumToContentType } from "./contentType.js"; -import type { ReadOutputEccLevel } from "./eccLevel.js"; -import type { ZXingEnum } from "./enum.js"; +import { type ReadOutputBarcodeFormat, decodeFormat } from "./barcodeFormat.js"; +import { type ContentType, decodeContentType } from "./contentType.js"; +import type { EcLevel } from "./ecLevel.js"; import type { Position, ZXingPosition } from "./position.js"; /** @@ -21,7 +17,10 @@ export interface ZXingReadResult { * @see {@link ReaderOptions.returnErrors | `ReaderOptions.returnErrors`} */ error: string; - format: string; + /** + * @internal + */ + format: number; /** * Raw / Standard content without any modifications like character set conversions. */ @@ -35,12 +34,21 @@ export interface ZXingReadResult { * accoring to specified {@link ReaderOptions.textMode | `ReaderOptions.textMode`}. */ text: string; - eccLevel: string; - contentType: ZXingEnum; + /** + * Error correction level of the symbol (empty string if not applicable). + */ + ecLevel: EcLevel; + /** + * @internal + */ + contentType: number; /** * Whether or not an ECI tag was found. */ hasECI: boolean; + /** + * @internal + */ position: ZXingPosition; /** * Orientation of the barcode in degree. @@ -69,7 +77,7 @@ export interface ZXingReadResult { */ sequenceSize: number; /** - * The 0-based index of this symbol in a structured append sequence. + * The `0`-based index of this symbol in a structured append sequence. */ sequenceIndex: number; /** @@ -85,7 +93,7 @@ export interface ZXingReadResult { */ readerInit: boolean; /** - * Number of lines have been detected with this code (applies only to linear symbologies). + * Number of lines that have been detected with this code (applies only to linear symbologies). */ lineCount: number; /** @@ -98,28 +106,22 @@ export interface ZXingReadResult { version: string; } +/** + * Result of reading a barcode. + */ export interface ReadResult - extends Omit< - ZXingReadResult, - "format" | "eccLevel" | "contentType" | "position" - > { + extends Omit { /** * Format of the barcode, should be one of {@link ReadOutputBarcodeFormat | `ReadOutputBarcodeFormat`}. * * Possible values are: - * `"Aztec"`, `"Codabar"`, `"Code128"`, `"Code39"`, `"Code93"`, + * `"Aztec"`, `"Codabar"`, `"Code39"`, `"Code93"`, `"Code128"`, * `"DataBar"`, `"DataBarExpanded"`, `"DataBarLimited"`, `"DataMatrix"`, `"DXFilmEdge"`, - * `"EAN-13"`, `"EAN-8"`, `"ITF"`, - * `"MaxiCode"`, `"MicroQRCode"`, `"None"`, - * `"PDF417"`, `"QRCode"`, `"rMQRCode"`, `"UPC-A"`, `"UPC-E"` + * `"EAN-8"`, `"EAN-13"`, `"ITF"`, `"MaxiCode"`, `"MicroQRCode"`, `"PDF417"`, + * `"QRCode"`, `"rMQRCode"`, `"UPC-A"`, `"UPC-E"`, + * `"None"` */ format: ReadOutputBarcodeFormat; - /** - * Error correction level of the symbol (empty string if not applicable). - * - * This property may be renamed to `ecLevel` in the future. - */ - eccLevel: ReadOutputEccLevel; /** * A hint to the type of the content found. */ @@ -128,15 +130,25 @@ export interface ReadResult * Position of the detected barcode. */ position: Position; + /** + * @deprecated Use {@link ReadResult.ecLevel | `ReadResult.ecLevel`} instead. + */ + eccLevel: EcLevel; } +/** + * Converts a ZXing read result to a standardized read result format. + * + * @param zxingReadResult - The raw result from ZXing barcode reader + * @returns A normalized read result with decoded format and content type + */ export function zxingReadResultToReadResult( zxingReadResult: ZXingReadResult, ): ReadResult { return { ...zxingReadResult, - format: formatFromString(zxingReadResult.format) as ReadOutputBarcodeFormat, - eccLevel: zxingReadResult.eccLevel as ReadOutputEccLevel, - contentType: zxingEnumToContentType(zxingReadResult.contentType), + format: decodeFormat(zxingReadResult.format), + contentType: decodeContentType(zxingReadResult.contentType), + eccLevel: zxingReadResult.ecLevel, }; } diff --git a/src/bindings/readerOptions.ts b/src/bindings/readerOptions.ts index 7e0c626c..f8d7d750 100644 --- a/src/bindings/readerOptions.ts +++ b/src/bindings/readerOptions.ts @@ -1,22 +1,17 @@ -import type { ZXingModule } from "../core.js"; -import { - type ReadInputBarcodeFormat, - formatsToString, -} from "./barcodeFormat.js"; -import { type Binarizer, binarizerToZXingEnum } from "./binarizer.js"; -import { type CharacterSet, characterSetToZXingEnum } from "./characterSet.js"; -import { - type EanAddOnSymbol, - eanAddOnSymbolToZXingEnum, -} from "./eanAddOnSymbol.js"; -import type { ZXingEnum } from "./enum.js"; -import { type TextMode, textModeToZXingEnum } from "./textMode.js"; +import { type ReadInputBarcodeFormat, encodeFormats } from "./barcodeFormat.js"; +import { type Binarizer, encodeBinarizer } from "./binarizer.js"; +import { type CharacterSet, encodeCharacterSet } from "./characterSet.js"; +import { type EanAddOnSymbol, encodeEanAddOnSymbol } from "./eanAddOnSymbol.js"; +import { type TextMode, encodeTextMode } from "./textMode.js"; /** * @internal */ export interface ZXingReaderOptions { - formats: string; + /** + * @internal + */ + formats: number; /** * Spend more time to try to find a barcode. Optimize for accuracy, not speed. * @@ -42,7 +37,17 @@ export interface ZXingReaderOptions { * @see {@link downscaleFactor | `downscaleFactor`} {@link downscaleThreshold | `downscaleThreshold`} */ tryDownscale: boolean; - binarizer: ZXingEnum; + /** + * Try detecting code after denoising (currently morphological closing filter for 2D symbologies only). + * + * @experimental + * @defaultValue `false` + */ + tryDenoise: boolean; + /** + * @internal + */ + binarizer: number; /** * Set to `true` if the input contains nothing but a single perfectly aligned barcode (usually generated images). * @@ -50,7 +55,8 @@ export interface ZXingReaderOptions { */ isPure: boolean; /** - * Image size ( min(width, height) ) threshold at which to start downscaled scanning + * Image size `min(width, height)` threshold at which to start downscaled scanning. + * * **WARNING**: this API is experimental and may change / disappear * * @experimental @@ -60,6 +66,7 @@ export interface ZXingReaderOptions { downscaleThreshold: number; /** * Scale factor to use during downscaling, meaningful values are `2`, `3` and `4`. + * * **WARNING**: this API is experimental and may change / disappear * * @experimental @@ -81,41 +88,30 @@ export interface ZXingReaderOptions { */ maxNumberOfSymbols: number; /** - * If `true`, the Code-39 reader will try to read extended mode. + * Enable the heuristic to detect and decode "full ASCII" / extended Code39 symbols. * - * @defaultValue `false` + * @defaultValue `true` */ tryCode39ExtendedMode: boolean; /** - * Assume Code-39 codes employ a check digit and validate it. + * If `true`, return the barcodes with errors as well (e.g. checksum errors). * * @defaultValue `false` - * @deprecated upstream + * @see {@link ReadResult.error | `ReadResult.error`} */ - validateCode39CheckSum: boolean; + returnErrors: boolean; /** - * Assume ITF codes employ a GS1 check digit and validate it. - * - * @defaultValue `false` - * @deprecated upstream + * @internal */ - validateITFCheckSum: boolean; + eanAddOnSymbol: number; /** - * If `true`, return the start and end chars in a Codabar barcode instead of stripping them. - * - * @defaultValue `false` - * @deprecated upstream + * @internal */ - returnCodabarStartEnd: boolean; + textMode: number; /** - * If `true`, return the barcodes with errors as well (e.g. checksum errors). - * - * @defaultValue `false` + * @internal */ - returnErrors: boolean; - eanAddOnSymbol: ZXingEnum; - textMode: ZXingEnum; - characterSet: ZXingEnum; + characterSet: number; } /** @@ -133,10 +129,11 @@ export interface ReaderOptions * An empty list `[]` indicates all supported formats. * * Supported values in this list are: - * `"Aztec"`, `"Codabar"`, `"Code128"`, `"Code39"`, `"Code93"`, + * `"Aztec"`, `"Codabar"`, `"Code39"`, `"Code93"`, `"Code128"`, * `"DataBar"`, `"DataBarExpanded"`, `"DataBarLimited"`, `"DataMatrix"`, `"DXFilmEdge"`, - * `"EAN-13"`, `"EAN-8"`, `"ITF"`, `"Linear-Codes"`, `"Matrix-Codes"`, - * `"MaxiCode"`, `"MicroQRCode"`, `"PDF417"`, `"QRCode"`, `"rMQRCode"`, `"UPC-A"`, `"UPC-E"` + * `"EAN-8"`, `"EAN-13"`, `"ITF"`, `"MaxiCode"`, `"MicroQRCode"`, `"PDF417"`, + * `"QRCode"`, `"rMQRCode"`, `"UPC-A"`, `"UPC-E"`, + * `"Linear-Codes"`, `"Matrix-Codes"`, `Any` * * @defaultValue `[]` */ @@ -148,7 +145,7 @@ export interface ReaderOptions * * - `"LocalAverage"` * - * T = average of neighboring pixels for matrix and GlobalHistogram for linear + * T = average of neighboring pixels for matrix and GlobalHistogram for linear (HybridBinarizer) * * - `"GlobalHistogram"` * @@ -180,7 +177,7 @@ export interface ReaderOptions * * Require EAN-2 / EAN-5 Add-On symbol to be present * - * @defaultValue `"Read"` + * @defaultValue `"Ignore"` */ eanAddOnSymbol?: EanAddOnSymbol; /** @@ -206,7 +203,7 @@ export interface ReaderOptions * * Escape non-graphical characters in angle brackets (e.g. ASCII `29` will be transcoded to `""`) * - * @defaultValue `"Plain"` + * @defaultValue `"HRI"` */ textMode?: TextMode; /** @@ -224,38 +221,36 @@ export const defaultReaderOptions: Required = { tryRotate: true, tryInvert: true, tryDownscale: true, + tryDenoise: false, binarizer: "LocalAverage", isPure: false, downscaleFactor: 3, downscaleThreshold: 500, minLineCount: 2, maxNumberOfSymbols: 255, - tryCode39ExtendedMode: false, - validateCode39CheckSum: false, - validateITFCheckSum: false, - returnCodabarStartEnd: false, + tryCode39ExtendedMode: true, returnErrors: false, - eanAddOnSymbol: "Read", - textMode: "Plain", + eanAddOnSymbol: "Ignore", + textMode: "HRI", characterSet: "Unknown", }; -export function readerOptionsToZXingReaderOptions( - zxingModule: ZXingModule, +/** + * Converts ReaderOptions to ZXingReaderOptions format. + * + * @param readerOptions - The complete set of reader options to be converted + * @returns A ZXingReaderOptions object with encoded values for formats, binarizer, + * EAN add-on symbol, text mode, and character set + */ +export function readerOptionsToZXingReaderOptions( readerOptions: Required, ): ZXingReaderOptions { return { ...readerOptions, - formats: formatsToString(readerOptions.formats), - binarizer: binarizerToZXingEnum(zxingModule, readerOptions.binarizer), - eanAddOnSymbol: eanAddOnSymbolToZXingEnum( - zxingModule, - readerOptions.eanAddOnSymbol, - ), - textMode: textModeToZXingEnum(zxingModule, readerOptions.textMode), - characterSet: characterSetToZXingEnum( - zxingModule, - readerOptions.characterSet, - ), + formats: encodeFormats(readerOptions.formats), + binarizer: encodeBinarizer(readerOptions.binarizer), + eanAddOnSymbol: encodeEanAddOnSymbol(readerOptions.eanAddOnSymbol), + textMode: encodeTextMode(readerOptions.textMode), + characterSet: encodeCharacterSet(readerOptions.characterSet), }; } diff --git a/src/bindings/textMode.ts b/src/bindings/textMode.ts index 0fb2606b..a2f984da 100644 --- a/src/bindings/textMode.ts +++ b/src/bindings/textMode.ts @@ -1,22 +1,23 @@ -import type { ZXingModule } from "../core.js"; -import type { ZXingEnum } from "./enum.js"; - export const textModes = ["Plain", "ECI", "HRI", "Hex", "Escaped"] as const; export type TextMode = (typeof textModes)[number]; /** - * @internal + * Encodes a text mode into its corresponding numeric value. + * + * @param textMode - The text mode to encode + * @returns A number representing the encoded text mode. */ -export type ZXingTextMode = Record; - -export function textModeToZXingEnum( - zxingModule: ZXingModule, - textMode: TextMode, -): ZXingEnum { - return zxingModule.TextMode[textMode]; +export function encodeTextMode(textMode: TextMode): number { + return textModes.indexOf(textMode); } -export function zxingEnumToTextMode(zxingEnum: ZXingEnum): TextMode { - return textModes[zxingEnum.value]; +/** + * Decodes a numeric value into its corresponding text mode. + * + * @param number - The numeric value to decode into a text mode + * @returns The decoded text mode. + */ +export function decodeTextMode(number: number): TextMode { + return textModes[number]; } diff --git a/src/bindings/writeResult.ts b/src/bindings/writeResult.ts index 3386294e..d386bcb6 100644 --- a/src/bindings/writeResult.ts +++ b/src/bindings/writeResult.ts @@ -2,7 +2,18 @@ * @internal */ export interface ZXingWriteResult { - image: Uint8Array; + /** + * The encoded barcode as a scalable vector graphics (SVG) string. + */ + svg: string; + /** + * The encoded barcode as a utf8 string, using " ", "▀", "▄", "█". + */ + utf8: string; + /** + * @internal + */ + image?: Uint8Array; /** * Encoding error. * If there's no error, this will be an empty string `""`. @@ -10,11 +21,14 @@ export interface ZXingWriteResult { * @see {@link WriteResult.error | `WriteResult.error`} */ error: string; - delete: () => void; } -export interface WriteResult - extends Omit { +/** + * Result of writing a barcode. + * + * @experimental The final form of this API is not yet settled and may change. + */ +export interface WriteResult extends Omit { /** * The encoded barcode as an image blob. * If some error happens, this will be `null`. @@ -24,20 +38,27 @@ export interface WriteResult image: Blob | null; } +/** + * Converts a ZXing write result to a standard write result format, handling image data conversion. + * + * @param zxingWriteResult - The ZXing write result object to convert + * @returns A new write result object with the image converted to a Blob if present + * + * @remarks + * The function creates a new object that spreads all properties from the input result, + * but converts the image data from a Uint8Array to a PNG Blob when present. + * If no image data exists, the image property will be null. + */ export function zxingWriteResultToWriteResult( zxingWriteResult: ZXingWriteResult, -): WriteResult { - const { image, error } = zxingWriteResult; - if (image) { - return { - image: new Blob([new Uint8Array(image)], { - type: "image/png", - }), - error: "", - }; - } +) { return { - image: null, - error: error, + ...zxingWriteResult, + image: + (zxingWriteResult.image && + new Blob([new Uint8Array(zxingWriteResult.image)], { + type: "image/png", + })) ?? + null, }; } diff --git a/src/bindings/writerOptions.ts b/src/bindings/writerOptions.ts index 9a382852..6c2dd466 100644 --- a/src/bindings/writerOptions.ts +++ b/src/bindings/writerOptions.ts @@ -1,89 +1,112 @@ -import type { ZXingModule } from "../core.js"; -import type { WriteInputBarcodeFormat } from "./barcodeFormat.js"; -import { type CharacterSet, characterSetToZXingEnum } from "./characterSet.js"; -import type { WriteInputEccLevel } from "./eccLevel.js"; -import type { ZXingEnum } from "./enum.js"; +import { type WriteInputBarcodeFormat, encodeFormat } from "./barcodeFormat.js"; +import type { EcLevel } from "./ecLevel.js"; /** * @internal */ export interface ZXingWriterOptions { /** - * Width of the barcode. + * @internal + */ + format: number; + /** + * Set if this is the reader initialisation / programming symbol. + * + * @see {@link ReadResult.readerInit | `ReadResult.readerInit`} + * @defaultValue `false` + */ + readerInit: boolean; + /** + * Force the Data Matrix to be square. + * @defaultValue `false` + */ + forceSquareDataMatrix: boolean; + /** + * The error correction level of the symbol (empty string if not applicable) + * + * @see {@link ReadResult.ecLevel | `ReadResult.ecLevel`} + * @defaultValue `""` + */ + ecLevel: EcLevel; + /** + * The scale of the barcode. `0` means unset. + * + * @defaultValue `0` + */ + scale: number; + /** + * A size hint to determine the scale of the barcode. `0` means unset. * - * @defaultValue `200` + * This only takes effect if `scale` is unset. + * + * @defaultValue `0` */ - width: number; + sizeHint: number; /** - * Height of the barcode. + * The rotation of the barcode in degrees. + * Valid values are `0`, `90`, `180` and `270`. * - * @defaultValue `200` + * @defaultValue `0` */ - height: number; - format: string; - characterSet: ZXingEnum; - eccLevel: number; + rotate: number; /** - * The minimum number of quiet zone pixels. + * Include human readable text (HRT) in the barcode. * - * @defaultValue `10` + * @defaultValue `false` */ - margin: number; + withHRT: boolean; + /** + * Add compliant quiet zones to the barcode. + * + * `EAN-13`, `ITF`, `UPC-A` and `UPC-E` have compliant quiet zones added by default. + * + * @defaultValue `true` + */ + withQuietZones: boolean; } /** * Writer options for writing barcodes. */ export interface WriterOptions - extends Partial< - Omit - > { + extends Partial> { /** * The format of the barcode to write. * * Supported values are: - * `"Aztec"`, `"Codabar"`, `"Code128"`, `"Code39"`, `"Code93"`, - * `"DataMatrix"`, `"EAN-13"`, `"EAN-8"`, `"ITF"`, - * `"PDF417"`, `"QRCode"`, `"UPC-A"`, `"UPC-E"` + * `"Aztec"`, `"Codabar"`, `"Code39"`, `"Code93"`, `"Code128"`, + * `"DataBar"`, `"DataBarExpanded"`, `"DataBarLimited"`, `"DataMatrix"`, + * `"EAN-8"`, `"EAN-13"`, `"ITF"`, `"MaxiCode"`, `"MicroQRCode"`, `"PDF417"`, + * `"QRCode"`, `"rMQRCode"`, `"UPC-A"`, `"UPC-E"` * * @defaultValue `"QRCode"` */ format?: WriteInputBarcodeFormat; - /** - * Character set to use for encoding the text. - * Used for Aztec, PDF417, and QRCode only. - * - * @defaultValue `"UTF8"` - */ - characterSet?: CharacterSet; - /** - * Error correction level of the symbol. - * Used for Aztec, PDF417, and QRCode only. - * `-1` means auto. - * - * @defaultValue `-1` - */ - eccLevel?: WriteInputEccLevel; } export const defaultWriterOptions: Required = { - width: 200, - height: 200, format: "QRCode", - characterSet: "UTF8", - eccLevel: -1, - margin: 10, + readerInit: false, + forceSquareDataMatrix: false, + ecLevel: "", + scale: 0, + sizeHint: 0, + rotate: 0, + withHRT: false, + withQuietZones: true, }; -export function writerOptionsToZXingWriterOptions( - zxingModule: ZXingModule, +/** + * Converts WriterOptions to ZXingWriterOptions format. + * + * @param writerOptions - The required writer options to be converted + * @returns A ZXingWriterOptions object with the encoded format + */ +export function writerOptionsToZXingWriterOptions( writerOptions: Required, ): ZXingWriterOptions { return { ...writerOptions, - characterSet: characterSetToZXingEnum( - zxingModule, - writerOptions.characterSet, - ), + format: encodeFormat(writerOptions.format), }; } diff --git a/src/core.ts b/src/core.ts index 5e816101..ca5d4ea1 100644 --- a/src/core.ts +++ b/src/core.ts @@ -1,14 +1,10 @@ +import type { Merge } from "type-fest"; import { type ReadResult, type ReaderOptions, type WriterOptions, - type ZXingBinarizer, - type ZXingCharacterSet, - type ZXingContentType, - type ZXingEanAddOnSymbol, type ZXingReadResult, type ZXingReaderOptions, - type ZXingTextMode, type ZXingVector, type ZXingWriteResult, type ZXingWriterOptions, @@ -22,19 +18,10 @@ import { export type ZXingModuleType = "reader" | "writer" | "full"; -interface ZXingBaseModule extends EmscriptenModule { - CharacterSet: ZXingCharacterSet; -} - /** * @internal */ -export interface ZXingReaderModule extends ZXingBaseModule { - Binarizer: ZXingBinarizer; - ContentType: ZXingContentType; - EanAddOnSymbol: ZXingEanAddOnSymbol; - TextMode: ZXingTextMode; - +export interface ZXingReaderModule extends EmscriptenModule { readBarcodesFromImage( bufferPtr: number, bufferLength: number, @@ -52,11 +39,17 @@ export interface ZXingReaderModule extends ZXingBaseModule { /** * @internal */ -export interface ZXingWriterModule extends ZXingBaseModule { - writeBarcodeToImage( +export interface ZXingWriterModule extends EmscriptenModule { + writeBarcodeFromText( text: string, zxingWriterOptions: ZXingWriterOptions, ): ZXingWriteResult; + + writeBarcodeFromBytes( + bufferPtr: number, + bufferLength: number, + zxingWriterOptions: ZXingWriterOptions, + ): ZXingWriteResult; } /** @@ -64,36 +57,31 @@ export interface ZXingWriterModule extends ZXingBaseModule { */ export interface ZXingFullModule extends ZXingReaderModule, ZXingWriterModule {} -export type ZXingModule = - T extends "reader" - ? ZXingReaderModule - : T extends "writer" - ? ZXingWriterModule - : T extends "full" - ? ZXingFullModule - : ZXingReaderModule | ZXingWriterModule | ZXingFullModule; - export type ZXingReaderModuleFactory = EmscriptenModuleFactory; + export type ZXingWriterModuleFactory = EmscriptenModuleFactory; + export type ZXingFullModuleFactory = EmscriptenModuleFactory; +interface TypeModuleMap { + reader: [ZXingReaderModule, ZXingReaderModuleFactory]; + writer: [ZXingWriterModule, ZXingWriterModuleFactory]; + full: [ZXingFullModule, ZXingFullModuleFactory]; +} + +export type ZXingModule = + TypeModuleMap[T][0]; + export type ZXingModuleFactory = - T extends "reader" - ? ZXingReaderModuleFactory - : T extends "writer" - ? ZXingWriterModuleFactory - : T extends "full" - ? ZXingFullModuleFactory - : - | ZXingReaderModuleFactory - | ZXingWriterModuleFactory - | ZXingFullModuleFactory; + TypeModuleMap[T][1]; export type ZXingModuleOverrides = Partial; -const defaultModuleOverrides: ZXingModuleOverrides = import.meta.env.PROD +export const ZXING_WASM_VERSION = NPM_PACKAGE_VERSION; + +const DEFAULT_MODULE_OVERRIDES: ZXingModuleOverrides = import.meta.env.PROD ? { locateFile: (path, prefix) => { const match = path.match(/_(.+?)\.wasm$/); @@ -113,118 +101,214 @@ const defaultModuleOverrides: ZXingModuleOverrides = import.meta.env.PROD }, }; -interface ZXingWeakMapValue { - moduleOverrides: ZXingModuleOverrides; - modulePromise?: Promise>; +type CachedValue = + | [ZXingModuleOverrides] + | [ZXingModuleOverrides, Promise>]; + +const __CACHE__ = new WeakMap(); + +export interface PrepareZXingModuleOptions { + /** + * The Emscripten module overrides to be passed to the factory function. + * The `locateFile` function is overridden by default to load the WASM file from the jsDelivr CDN. + */ + overrides?: ZXingModuleOverrides; + /** + * A function to compare the cached overrides with the input overrides. + * So that the module promise can be reused if the overrides are the same. + * Defaults to a shallow equality function. + */ + equalityFn?: ( + cachedOverrides: ZXingModuleOverrides, + overrides: ZXingModuleOverrides, + ) => boolean; + /** + * Whether to instantiate the module immediately. + * If `true`, the module is eagerly instantiated and a promise of the module is returned. + * If `false`, only the overrides are updated and module instantiation is deferred + * to the first read/write operation. + * + * @default false + */ + fireImmediately?: boolean; } -type ZXingWeakMap = WeakMap; +/** + * Performs a shallow equality comparison between two objects. + * + * @param a - First object to compare + * @param b - Second object to compare + * @returns `true` if objects are shallowly equal, `false` otherwise + * + * @remarks + * Objects are considered shallowly equal if: + * - They are the same reference (using Object.is) + * - They have the same number of keys + * - All keys in `a` exist in `b` with strictly equal values (===) + * + * Note: This comparison only checks the first level of properties. + * Nested objects or arrays are compared by reference, not by value. + * + * @example + * ```ts + * shallow({ a: 1, b: 2 }, { a: 1, b: 2 }) // returns true + * shallow({ a: 1 }, { a: 1, b: 2 }) // returns false + * shallow({ a: {x: 1} }, { a: {x: 1} }) // returns false (different object references) + * ``` + */ +export function shallow>(a: T, b: T) { + return ( + Object.is(a, b) || + (Object.keys(a).length === Object.keys(b).length && + Object.keys(a).every( + (key) => + Object.prototype.hasOwnProperty.call(b, key) && + a[key as keyof T] === b[key as keyof T], + )) + ); +} -let zxingWeakMap: ZXingWeakMap = new WeakMap(); +export function prepareZXingModuleWithFactory( + zxingModuleFactory: ZXingModuleFactory, + options?: Merge, +): void; -export function getZXingModuleWithFactory( +export function prepareZXingModuleWithFactory( zxingModuleFactory: ZXingModuleFactory, - zxingModuleOverrides?: ZXingModuleOverrides, -): Promise> { - const zxingWeakMapValue = zxingWeakMap.get(zxingModuleFactory) as - | ZXingWeakMapValue - | undefined; - - if ( - zxingWeakMapValue?.modulePromise && - (zxingModuleOverrides === undefined || - Object.is(zxingModuleOverrides, zxingWeakMapValue.moduleOverrides)) - ) { - return zxingWeakMapValue.modulePromise; - } + options: Merge, +): Promise>; - const resolvedModuleOverrides = - zxingModuleOverrides ?? - zxingWeakMapValue?.moduleOverrides ?? - defaultModuleOverrides; +export function prepareZXingModuleWithFactory( + zxingModuleFactory: ZXingModuleFactory, + options?: PrepareZXingModuleOptions, +): void | Promise>; - const modulePromise = zxingModuleFactory({ - ...resolvedModuleOverrides, - }) as Promise>; +/** + * Prepares and caches a ZXing module instance with the specified factory and options. + * + * @param zxingModuleFactory - Factory function to create the ZXing module + * @param options - Configuration options for module preparation + * @param options.overrides - Custom overrides for module initialization + * @param options.equalityFn - Function to compare override equality (defaults to shallow comparison) + * @param options.fireImmediately - Whether to instantiate the module immediately (defaults to false) + * @returns Promise of the ZXing module instance if fireImmediately is true, otherwise void + * + * @remarks + * This function implements a caching mechanism for ZXing module instances. It stores + * both the module overrides and the instantiated module promise in a global cache. + */ +export function prepareZXingModuleWithFactory( + zxingModuleFactory: ZXingModuleFactory, + { + overrides, + equalityFn = shallow, + fireImmediately = false, + }: PrepareZXingModuleOptions = {}, +) { + // look up the cached overrides and module promise + const [cachedOverrides, cachedPromise] = (__CACHE__.get(zxingModuleFactory) as + | CachedValue + | undefined) ?? [DEFAULT_MODULE_OVERRIDES]; - zxingWeakMap.set(zxingModuleFactory, { - moduleOverrides: resolvedModuleOverrides, - modulePromise, - }); + // resolve the input overrides + const resolvedOverrides = overrides ?? cachedOverrides; - return modulePromise; -} + let cacheHit: boolean | undefined; + + // if the module is to be instantiated immediately + if (fireImmediately) { + // if cache is hit and a cached promise is available, + // return the cached promise directly + if ( + cachedPromise && + (cacheHit = equalityFn(cachedOverrides, resolvedOverrides)) + ) { + return cachedPromise; + } + // otherwise, instantiate the module + const modulePromise = zxingModuleFactory({ + ...resolvedOverrides, + }) as Promise>; + // cache the overrides and the promise + __CACHE__.set(zxingModuleFactory, [resolvedOverrides, modulePromise]); + // and return the promise + return modulePromise; + } -export function purgeZXingModule() { - zxingWeakMap = new WeakMap(); + // otherwise only update the cache if the overrides have changed + if (!(cacheHit ?? equalityFn(cachedOverrides, resolvedOverrides))) { + __CACHE__.set(zxingModuleFactory, [resolvedOverrides]); + } } -export function setZXingModuleOverridesWithFactory( +/** + * Removes a ZXing module instance from the internal cache. + * + * @param zxingModuleFactory - The factory function used to create the ZXing module instance + * + * @remarks + * This function is used to clean up cached ZXing module instances when they are no longer needed. + */ +export function purgeZXingModuleWithFactory( zxingModuleFactory: ZXingModuleFactory, - zxingModuleOverrides: ZXingModuleOverrides, ) { - zxingWeakMap.set(zxingModuleFactory, { - moduleOverrides: zxingModuleOverrides, - }); + __CACHE__.delete(zxingModuleFactory); } -export async function readBarcodesFromImageFileWithFactory< - T extends "reader" | "full", ->( +/** + * Reads barcodes from an image using a ZXing module factory. + * + * @param zxingModuleFactory - Factory function to create a ZXing module instance + * @param input - Source image data as either a Blob or ImageData object + * @param readerOptions - Optional configuration options for barcode reading (defaults to defaultReaderOptions) + * @returns An array of ReadResult objects containing decoded barcode information + * + * @remarks + * The function manages memory allocation and deallocation for the ZXing module + * and properly cleans up resources after processing. + */ +export async function readBarcodesWithFactory( zxingModuleFactory: ZXingModuleFactory, - imageFile: Blob, + input: Blob | ImageData, readerOptions: ReaderOptions = defaultReaderOptions, ) { const requiredReaderOptions: Required = { ...defaultReaderOptions, ...readerOptions, }; - const zxingModule = await getZXingModuleWithFactory(zxingModuleFactory); - const { size } = imageFile; - const buffer = new Uint8Array(await imageFile.arrayBuffer()); - const bufferPtr = zxingModule._malloc(size); - zxingModule.HEAPU8.set(buffer, bufferPtr); - const zxingReadResultVector = zxingModule.readBarcodesFromImage( - bufferPtr, - size, - readerOptionsToZXingReaderOptions(zxingModule, requiredReaderOptions), - ); - zxingModule._free(bufferPtr); - const readResults: ReadResult[] = []; - for (let i = 0; i < zxingReadResultVector.size(); ++i) { - readResults.push( - zxingReadResultToReadResult(zxingReadResultVector.get(i)!), + const zxingModule = await prepareZXingModuleWithFactory(zxingModuleFactory, { + fireImmediately: true, + }); + let zxingReadResultVector: ZXingVector; + let bufferPtr: number; + if ("size" in input) { + /* Blob */ + const { size } = input; + const buffer = new Uint8Array(await input.arrayBuffer()); + bufferPtr = zxingModule._malloc(size); + zxingModule.HEAPU8.set(buffer, bufferPtr); + zxingReadResultVector = zxingModule.readBarcodesFromImage( + bufferPtr, + size, + readerOptionsToZXingReaderOptions(requiredReaderOptions), + ); + } else { + /* ImageData */ + const { + data: buffer, + data: { byteLength: size }, + width, + height, + } = input; + bufferPtr = zxingModule._malloc(size); + zxingModule.HEAPU8.set(buffer, bufferPtr); + zxingReadResultVector = zxingModule.readBarcodesFromPixmap( + bufferPtr, + width, + height, + readerOptionsToZXingReaderOptions(requiredReaderOptions), ); } - return readResults; -} - -export async function readBarcodesFromImageDataWithFactory< - T extends "reader" | "full", ->( - zxingModuleFactory: ZXingModuleFactory, - imageData: ImageData, - readerOptions: ReaderOptions = defaultReaderOptions, -) { - const requiredReaderOptions: Required = { - ...defaultReaderOptions, - ...readerOptions, - }; - const zxingModule = await getZXingModuleWithFactory(zxingModuleFactory); - const { - data: buffer, - width, - height, - data: { byteLength: size }, - } = imageData; - const bufferPtr = zxingModule._malloc(size); - zxingModule.HEAPU8.set(buffer, bufferPtr); - const zxingReadResultVector = zxingModule.readBarcodesFromPixmap( - bufferPtr, - width, - height, - readerOptionsToZXingReaderOptions(zxingModule, requiredReaderOptions), - ); zxingModule._free(bufferPtr); const readResults: ReadResult[] = []; for (let i = 0; i < zxingReadResultVector.size(); ++i) { @@ -235,21 +319,46 @@ export async function readBarcodesFromImageDataWithFactory< return readResults; } -export async function writeBarcodeToImageFileWithFactory< - T extends "writer" | "full", ->( +/** + * Generates a barcode image using a ZXing module factory with support for text and binary input. + * + * @param zxingModuleFactory - The factory function that creates a ZXing module instance + * @param input - The data to encode in the barcode, either as a string or Uint8Array + * @param writerOptions - Optional configuration options for barcode generation + * @returns A promise that resolves to the barcode write result + * + * @remarks + * The function handles memory management automatically when processing binary input, + * ensuring proper allocation and deallocation of memory in the ZXing module. + */ +export async function writeBarcodeWithFactory( zxingModuleFactory: ZXingModuleFactory, - text: string, + input: string | Uint8Array, writerOptions: WriterOptions = defaultWriterOptions, ) { const requiredWriterOptions: Required = { ...defaultWriterOptions, ...writerOptions, }; - const zxingModule = await getZXingModuleWithFactory(zxingModuleFactory); - const zxingWriteResult = zxingModule.writeBarcodeToImage( - text, - writerOptionsToZXingWriterOptions(zxingModule, requiredWriterOptions), + const zxingWriterOptions = writerOptionsToZXingWriterOptions( + requiredWriterOptions, + ); + const zxingModule = await prepareZXingModuleWithFactory(zxingModuleFactory, { + fireImmediately: true, + }); + if (typeof input === "string") { + return zxingWriteResultToWriteResult( + zxingModule.writeBarcodeFromText(input, zxingWriterOptions), + ); + } + const { byteLength } = input; + const bufferPtr = zxingModule._malloc(byteLength); + zxingModule.HEAPU8.set(input, bufferPtr); + const zxingWriteResult = zxingModule.writeBarcodeFromBytes( + bufferPtr, + byteLength, + zxingWriterOptions, ); + zxingModule._free(bufferPtr); return zxingWriteResultToWriteResult(zxingWriteResult); } diff --git a/src/cpp/.clang-format b/src/cpp/.clang-format index ef36b72e..cc09c772 100644 --- a/src/cpp/.clang-format +++ b/src/cpp/.clang-format @@ -1,10 +1,12 @@ -ColumnLimit: 120 -PenaltyReturnTypeOnItsOwnLine: 200 +# https://clang.llvm.org/docs/ClangFormatStyleOptions.html + +ColumnLimit: 150 ContinuationIndentWidth: 2 IndentWidth: 2 TabWidth: 2 ConstructorInitializerIndentWidth: 2 IndentCaseLabels: true +PenaltyReturnTypeOnItsOwnLine: 200 UseTab: Never SortIncludes: true SortUsingDeclarations: false diff --git a/src/cpp/CMakeLists.txt b/src/cpp/CMakeLists.txt index 5c6fc840..99fd6d7d 100644 --- a/src/cpp/CMakeLists.txt +++ b/src/cpp/CMakeLists.txt @@ -8,19 +8,21 @@ zxing_add_package_stb() # Set C++ standard set(CMAKE_CXX_STANDARD 20) + # Disable examples -option(ZXING_EXAMPLES "Build the example barcode reader/writer applications" OFF) +set(ZXING_EXAMPLES OFF) + # Build options -option(ZXING_READERS "Build with reader support (decoders)" ON) -set(ZXING_WRITERS "OLD" CACHE STRING "Build with old and/or new writer (encoder) backend (OFF/ON/OLD/NEW/BOTH)") +set(ZXING_READERS ON) +set(ZXING_WRITERS "NEW") +set(ZXING_EXPERIMENTAL_API ON) +set(ZXING_USE_BUNDLED_ZINT ON) # Build environment -set(ZXING_EMSCRIPTEN_ENVIRONMENT "web,worker" CACHE STRING "Optimize build for given emscripten runtime environment (web/node/shell/worker)") +set(ZXING_EMSCRIPTEN_ENVIRONMENT "web,worker") # Default build type -if(NOT CMAKE_BUILD_TYPE) - set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build." FORCE) -endif() +set(CMAKE_BUILD_TYPE "Release") # Set compiler flags set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \ @@ -48,7 +50,7 @@ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} \ add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../../zxing-cpp/core ${CMAKE_BINARY_DIR}/ZXing) # Build targets -if(ZXING_READERS AND ZXING_WRITERS) +if(ZXING_READERS AND (ZXING_WRITERS MATCHES "NEW")) add_executable(zxing_full ZXingWasm.cpp) target_compile_definitions(zxing_full PRIVATE READER WRITER) target_link_libraries(zxing_full ZXing::ZXing stb::stb) @@ -64,7 +66,7 @@ if(ZXING_READERS) RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/../reader") endif() -if(ZXING_WRITERS) +if(ZXING_WRITERS MATCHES "NEW") add_executable(zxing_writer ZXingWasm.cpp) target_compile_definitions(zxing_writer PRIVATE WRITER) target_link_libraries(zxing_writer ZXing::ZXing stb::stb) diff --git a/src/cpp/ZXingWasm.cpp b/src/cpp/ZXingWasm.cpp index 7c639db8..f7def09d 100644 --- a/src/cpp/ZXingWasm.cpp +++ b/src/cpp/ZXingWasm.cpp @@ -4,10 +4,6 @@ * Copyright 2023 Ze-Zheng Wu */ // SPDX-License-Identifier: Apache-2.0 - -#include "BitMatrix.h" -#include "MultiFormatWriter.h" -#include "ReadBarcode.h" #include #include #include @@ -15,11 +11,13 @@ #include #if defined(READER) + #include "ReadBarcode.h" #define STB_IMAGE_IMPLEMENTATION #include #endif #if defined(WRITER) + #include "WriteBarcode.h" #define STB_IMAGE_WRITE_IMPLEMENTATION #include #endif @@ -29,36 +27,36 @@ using namespace emscripten; #if defined(READER) struct JsReaderOptions { - std::string formats; + int formats; bool tryHarder; bool tryRotate; bool tryInvert; bool tryDownscale; - ZXing::Binarizer binarizer; + #ifdef ZXING_EXPERIMENTAL_API + bool tryDenoise; + #endif + uint8_t binarizer; bool isPure; uint16_t downscaleThreshold; uint8_t downscaleFactor; uint8_t minLineCount; uint8_t maxNumberOfSymbols; bool tryCode39ExtendedMode; - bool validateCode39CheckSum; - bool validateITFCheckSum; - bool returnCodabarStartEnd; bool returnErrors; - ZXing::EanAddOnSymbol eanAddOnSymbol; - ZXing::TextMode textMode; - ZXing::CharacterSet characterSet; + uint8_t eanAddOnSymbol; + uint8_t textMode; + uint8_t characterSet; }; struct JsReadResult { bool isValid; std::string error; - std::string format; - emscripten::val bytes; - emscripten::val bytesECI; + int format; + val bytes; + val bytesECI; std::string text; - std::string eccLevel; - ZXing::ContentType contentType; + std::string ecLevel; + int contentType; bool hasECI; ZXing::Position position; int orientation; @@ -76,92 +74,81 @@ struct JsReadResult { using JsReadResults = std::vector; JsReadResults readBarcodes(ZXing::ImageView imageView, const JsReaderOptions &jsReaderOptions) { - thread_local const val Uint8Array = val::global("Uint8Array"); - try { + auto barcodes = ZXing::ReadBarcodes( + imageView, + ZXing::ReaderOptions() + .setFormats(static_cast(jsReaderOptions.formats)) + .setTryHarder(jsReaderOptions.tryHarder) + .setTryRotate(jsReaderOptions.tryRotate) + .setTryInvert(jsReaderOptions.tryInvert) + .setTryDownscale(jsReaderOptions.tryDownscale) + #ifdef ZXING_EXPERIMENTAL_API + .setTryDenoise(jsReaderOptions.tryDenoise) + #endif + .setBinarizer(static_cast(jsReaderOptions.binarizer)) + .setIsPure(jsReaderOptions.isPure) + .setDownscaleThreshold(jsReaderOptions.downscaleThreshold) + .setDownscaleFactor(jsReaderOptions.downscaleFactor) + .setMinLineCount(jsReaderOptions.minLineCount) + .setMaxNumberOfSymbols(jsReaderOptions.maxNumberOfSymbols) + .setTryCode39ExtendedMode(jsReaderOptions.tryCode39ExtendedMode) + .setReturnErrors(jsReaderOptions.returnErrors) + .setEanAddOnSymbol(static_cast(jsReaderOptions.eanAddOnSymbol)) + .setTextMode(static_cast(jsReaderOptions.textMode)) + .setCharacterSet(static_cast(jsReaderOptions.characterSet)) + ); + + thread_local const val Uint8Array = val::global("Uint8Array"); - ZXing::ReaderOptions readerOptions; - readerOptions.setFormats(ZXing::BarcodeFormatsFromString(jsReaderOptions.formats)); - readerOptions.setTryHarder(jsReaderOptions.tryHarder); - readerOptions.setTryRotate(jsReaderOptions.tryRotate); - readerOptions.setTryInvert(jsReaderOptions.tryInvert); - readerOptions.setTryDownscale(jsReaderOptions.tryDownscale); - readerOptions.setBinarizer(jsReaderOptions.binarizer); - readerOptions.setIsPure(jsReaderOptions.isPure); - readerOptions.setDownscaleThreshold(jsReaderOptions.downscaleThreshold); - readerOptions.setDownscaleFactor(jsReaderOptions.downscaleFactor); - readerOptions.setMinLineCount(jsReaderOptions.minLineCount); - readerOptions.setMaxNumberOfSymbols(jsReaderOptions.maxNumberOfSymbols); - readerOptions.setTryCode39ExtendedMode(jsReaderOptions.tryCode39ExtendedMode); - readerOptions.setValidateCode39CheckSum(jsReaderOptions.validateCode39CheckSum); - readerOptions.setValidateITFCheckSum(jsReaderOptions.validateITFCheckSum); - readerOptions.setReturnCodabarStartEnd(jsReaderOptions.returnCodabarStartEnd); - readerOptions.setReturnErrors(jsReaderOptions.returnErrors); - readerOptions.setEanAddOnSymbol(jsReaderOptions.eanAddOnSymbol); - readerOptions.setTextMode(jsReaderOptions.textMode); - readerOptions.setCharacterSet(jsReaderOptions.characterSet); - - auto results = ZXing::ReadBarcodes(imageView, readerOptions); - - JsReadResults jsResults; - jsResults.reserve(results.size()); - - for (auto &result : results) { - const ZXing::ByteArray &bytes = result.bytes(); - const ZXing::ByteArray &bytesECI = result.bytesECI(); - jsResults.push_back( - {.isValid = result.isValid(), - .error = ZXing::ToString(result.error()), - .format = ZXing::ToString(result.format()), - .bytes = std::move(Uint8Array.new_(typed_memory_view(bytes.size(), bytes.data()))), - .bytesECI = std::move(Uint8Array.new_(typed_memory_view(bytesECI.size(), bytesECI.data()))), - .text = result.text(), - .eccLevel = result.ecLevel(), - .contentType = result.contentType(), - .hasECI = result.hasECI(), - .position = result.position(), - .orientation = result.orientation(), - .isMirrored = result.isMirrored(), - .isInverted = result.isInverted(), - .symbologyIdentifier = result.symbologyIdentifier(), - .sequenceSize = result.sequenceSize(), - .sequenceIndex = result.sequenceIndex(), - .sequenceId = result.sequenceId(), - .readerInit = result.readerInit(), - .lineCount = result.lineCount(), - .version = result.version()} + JsReadResults jsReadResults; + jsReadResults.reserve(barcodes.size()); + + for (auto &barcode : barcodes) { + jsReadResults.push_back( + {.isValid = barcode.isValid(), + .error = ZXing::ToString(barcode.error()), + .format = static_cast(barcode.format()), + .bytes = std::move(Uint8Array.new_(val(typed_memory_view(barcode.bytes().size(), barcode.bytes().data())))), + .bytesECI = std::move(Uint8Array.new_(val(typed_memory_view(barcode.bytesECI().size(), barcode.bytesECI().data())))), + .text = barcode.text(), + .ecLevel = barcode.ecLevel(), + .contentType = static_cast(barcode.contentType()), + .hasECI = barcode.hasECI(), + .position = barcode.position(), + .orientation = barcode.orientation(), + .isMirrored = barcode.isMirrored(), + .isInverted = barcode.isInverted(), + .symbologyIdentifier = barcode.symbologyIdentifier(), + .sequenceSize = barcode.sequenceSize(), + .sequenceIndex = barcode.sequenceIndex(), + .sequenceId = barcode.sequenceId(), + .readerInit = barcode.readerInit(), + .lineCount = barcode.lineCount(), + .version = barcode.version()} ); } - return jsResults; + return jsReadResults; } catch (const std::exception &e) { - return {{.error = e.what(), .bytes = std::move(Uint8Array.new_()), .bytesECI = std::move(Uint8Array.new_())}}; + return {{.error = e.what()}}; } catch (...) { - return {{.error = "Unknown error", .bytes = std::move(Uint8Array.new_()), .bytesECI = std::move(Uint8Array.new_())} - }; + return {{.error = "Unknown error"}}; } - return {}; } JsReadResults readBarcodesFromImage(int bufferPtr, int bufferLength, const JsReaderOptions &jsReaderOptions) { int width, height, channels; std::unique_ptr buffer( - stbi_load_from_memory( - reinterpret_cast(bufferPtr), bufferLength, &width, &height, &channels, 1 - ), - stbi_image_free + stbi_load_from_memory(reinterpret_cast(bufferPtr), bufferLength, &width, &height, &channels, 1), stbi_image_free ); - if (buffer == nullptr) { - return {}; + if (!buffer) { + return {{.error = "Failed to load image from memory"}}; } return readBarcodes({buffer.get(), width, height, ZXing::ImageFormat::Lum}, jsReaderOptions); } -JsReadResults readBarcodesFromPixmap( - int bufferPtr, int imgWidth, int imgHeight, const JsReaderOptions &jsReaderOptions -) { - return readBarcodes( - {reinterpret_cast(bufferPtr), imgWidth, imgHeight, ZXing::ImageFormat::RGBA}, jsReaderOptions - ); +JsReadResults readBarcodesFromPixmap(int bufferPtr, int width, int height, const JsReaderOptions &jsReaderOptions) { + return readBarcodes({reinterpret_cast(bufferPtr), width, height, ZXing::ImageFormat::RGBA}, jsReaderOptions); } #endif @@ -169,59 +156,87 @@ JsReadResults readBarcodesFromPixmap( #if defined(WRITER) struct JsWriterOptions { - int width; - int height; - std::string format; - ZXing::CharacterSet characterSet; - int eccLevel; - int margin; + // ZXing::CreatorOptions + int format; + bool readerInit; + bool forceSquareDataMatrix; + std::string ecLevel; + // ZXing::WriterOptions + int scale; + int sizeHint; + int rotate; + bool withHRT; + bool withQuietZones; }; +namespace { + + ZXing::CreatorOptions createCreatorOptions(const JsWriterOptions &jsWriterOptions) { + return ZXing::CreatorOptions(static_cast(jsWriterOptions.format)) + .readerInit(jsWriterOptions.readerInit) + .forceSquareDataMatrix(jsWriterOptions.forceSquareDataMatrix) + .ecLevel(jsWriterOptions.ecLevel); + } + + ZXing::WriterOptions createWriterOptions(const JsWriterOptions &jsWriterOptions) { + return ZXing::WriterOptions() + .scale(jsWriterOptions.scale) + .sizeHint(jsWriterOptions.sizeHint) + .rotate(jsWriterOptions.rotate) + .withHRT(jsWriterOptions.withHRT) + .withQuietZones(jsWriterOptions.withQuietZones); + } + +} // anonymous namespace + struct JsWriteResult { - emscripten::val image; std::string error; + std::string svg; + std::string utf8; + val image; }; -JsWriteResult writeBarcodeToImage(std::wstring text, const JsWriterOptions &jsWriterOptions) { +JsWriteResult writeBarcodeFromText(std::string text, const JsWriterOptions &jsWriterOptions) { try { - auto format = ZXing::BarcodeFormatFromString(jsWriterOptions.format); - if (format == ZXing::BarcodeFormat::None) { - return {.error = "Unsupported format: " + jsWriterOptions.format}; - } + auto barcode = ZXing::CreateBarcodeFromText(text, createCreatorOptions(jsWriterOptions)); + auto writerOptions = createWriterOptions(jsWriterOptions); - ZXing::MultiFormatWriter writer(format); + auto image = ZXing::WriteBarcodeToImage(barcode, writerOptions); - auto margin = jsWriterOptions.margin; - if (margin >= 0) { - writer.setMargin(margin); - } - - auto characterSet = jsWriterOptions.characterSet; - if (characterSet != ZXing::CharacterSet::Unknown) { - writer.setEncoding(characterSet); - } - - auto eccLevel = jsWriterOptions.eccLevel; - if (eccLevel >= 0 && eccLevel <= 8) { - writer.setEccLevel(eccLevel); - } - - auto buffer = ZXing::ToMatrix(writer.encode(text, jsWriterOptions.width, jsWriterOptions.height)); + thread_local const val Uint8Array = val::global("Uint8Array"); int len; - uint8_t *bytes = stbi_write_png_to_mem(buffer.data(), 0, buffer.width(), buffer.height(), 1, &len); + uint8_t *bytes = stbi_write_png_to_mem(image.data(), image.rowStride(), image.width(), image.height(), ZXing::PixStride(image.format()), &len); - if (bytes == nullptr) { - return {.error = "Unknown error"}; + return { + .svg = ZXing::WriteBarcodeToSVG(barcode, writerOptions), + .utf8 = ZXing::WriteBarcodeToUtf8(barcode, writerOptions), + .image = std::move(Uint8Array.new_(val(typed_memory_view(len, bytes)))) }; + } catch (const std::exception &e) { + return {.error = e.what()}; + } catch (...) { + return {.error = "Unknown error"}; + } +} - thread_local const val Uint8Array = val::global("Uint8Array"); +JsWriteResult writeBarcodeFromBytes(int bufferPtr, int bufferLength, const JsWriterOptions &jsWriterOptions) { + try { + auto barcode = ZXing::CreateBarcodeFromBytes(reinterpret_cast(bufferPtr), bufferLength, createCreatorOptions(jsWriterOptions)); + auto writerOptions = createWriterOptions(jsWriterOptions); - val js_bytes = Uint8Array.new_(typed_memory_view(len, bytes)); - STBIW_FREE(bytes); + auto image = ZXing::WriteBarcodeToImage(barcode, writerOptions); - return {.image = js_bytes}; + thread_local const val Uint8Array = val::global("Uint8Array"); + int len; + uint8_t *bytes = stbi_write_png_to_mem(image.data(), image.rowStride(), image.width(), image.height(), ZXing::PixStride(image.format()), &len); + + return { + .svg = ZXing::WriteBarcodeToSVG(barcode, writerOptions), + .utf8 = ZXing::WriteBarcodeToUtf8(barcode, writerOptions), + .image = std::move(Uint8Array.new_(val(typed_memory_view(len, bytes)))) + }; } catch (const std::exception &e) { return {.error = e.what()}; } catch (...) { @@ -235,46 +250,15 @@ EMSCRIPTEN_BINDINGS(ZXingWasm) { #if defined(READER) - enum_("Binarizer") - .value("LocalAverage", ZXing::Binarizer::LocalAverage) - .value("GlobalHistogram", ZXing::Binarizer::GlobalHistogram) - .value("FixedThreshold", ZXing::Binarizer::FixedThreshold) - .value("BoolCast", ZXing::Binarizer::BoolCast); - - enum_("EanAddOnSymbol") - .value("Ignore", ZXing::EanAddOnSymbol::Ignore) - .value("Read", ZXing::EanAddOnSymbol::Read) - .value("Require", ZXing::EanAddOnSymbol::Require); - - enum_("TextMode") - .value("Plain", ZXing::TextMode::Plain) - .value("ECI", ZXing::TextMode::ECI) - .value("HRI", ZXing::TextMode::HRI) - .value("Hex", ZXing::TextMode::Hex) - .value("Escaped", ZXing::TextMode::Escaped); - - enum_("ContentType") - .value("Text", ZXing::ContentType::Text) - .value("Binary", ZXing::ContentType::Binary) - .value("Mixed", ZXing::ContentType::Mixed) - .value("GS1", ZXing::ContentType::GS1) - .value("ISO15434", ZXing::ContentType::ISO15434) - .value("UnknownECI", ZXing::ContentType::UnknownECI); - - value_object("Point").field("x", &ZXing::PointI::x).field("y", &ZXing::PointI::y); - - value_object("Position") - .field("topLeft", emscripten::index<0>()) - .field("topRight", emscripten::index<1>()) - .field("bottomRight", emscripten::index<2>()) - .field("bottomLeft", emscripten::index<3>()); - value_object("ReaderOptions") .field("formats", &JsReaderOptions::formats) .field("tryHarder", &JsReaderOptions::tryHarder) .field("tryRotate", &JsReaderOptions::tryRotate) .field("tryInvert", &JsReaderOptions::tryInvert) .field("tryDownscale", &JsReaderOptions::tryDownscale) + #ifdef ZXING_EXPERIMENTAL_API + .field("tryDenoise", &JsReaderOptions::tryDenoise) + #endif .field("binarizer", &JsReaderOptions::binarizer) .field("isPure", &JsReaderOptions::isPure) .field("downscaleThreshold", &JsReaderOptions::downscaleThreshold) @@ -282,14 +266,19 @@ EMSCRIPTEN_BINDINGS(ZXingWasm) { .field("minLineCount", &JsReaderOptions::minLineCount) .field("maxNumberOfSymbols", &JsReaderOptions::maxNumberOfSymbols) .field("tryCode39ExtendedMode", &JsReaderOptions::tryCode39ExtendedMode) - .field("validateCode39CheckSum", &JsReaderOptions::validateCode39CheckSum) - .field("validateITFCheckSum", &JsReaderOptions::validateITFCheckSum) - .field("returnCodabarStartEnd", &JsReaderOptions::returnCodabarStartEnd) .field("returnErrors", &JsReaderOptions::returnErrors) .field("eanAddOnSymbol", &JsReaderOptions::eanAddOnSymbol) .field("textMode", &JsReaderOptions::textMode) .field("characterSet", &JsReaderOptions::characterSet); + value_object("Point").field("x", &ZXing::PointI::x).field("y", &ZXing::PointI::y); + + value_object("Position") + .field("topLeft", emscripten::index<0>()) + .field("topRight", emscripten::index<1>()) + .field("bottomRight", emscripten::index<2>()) + .field("bottomLeft", emscripten::index<3>()); + value_object("ReadResult") .field("isValid", &JsReadResult::isValid) .field("error", &JsReadResult::error) @@ -297,7 +286,7 @@ EMSCRIPTEN_BINDINGS(ZXingWasm) { .field("bytes", &JsReadResult::bytes) .field("bytesECI", &JsReadResult::bytesECI) .field("text", &JsReadResult::text) - .field("eccLevel", &JsReadResult::eccLevel) + .field("ecLevel", &JsReadResult::ecLevel) .field("contentType", &JsReadResult::contentType) .field("hasECI", &JsReadResult::hasECI) .field("position", &JsReadResult::position) @@ -322,58 +311,24 @@ EMSCRIPTEN_BINDINGS(ZXingWasm) { #if defined(WRITER) value_object("WriterOptions") - .field("width", &JsWriterOptions::width) - .field("height", &JsWriterOptions::height) .field("format", &JsWriterOptions::format) - .field("characterSet", &JsWriterOptions::characterSet) - .field("eccLevel", &JsWriterOptions::eccLevel) - .field("margin", &JsWriterOptions::margin); + .field("readerInit", &JsWriterOptions::readerInit) + .field("forceSquareDataMatrix", &JsWriterOptions::forceSquareDataMatrix) + .field("ecLevel", &JsWriterOptions::ecLevel) + .field("scale", &JsWriterOptions::scale) + .field("sizeHint", &JsWriterOptions::sizeHint) + .field("rotate", &JsWriterOptions::rotate) + .field("withHRT", &JsWriterOptions::withHRT) + .field("withQuietZones", &JsWriterOptions::withQuietZones); value_object("WriteResult") - .field("image", &JsWriteResult::image) - .field("error", &JsWriteResult::error); - - function("writeBarcodeToImage", &writeBarcodeToImage); - -#endif + .field("error", &JsWriteResult::error) + .field("svg", &JsWriteResult::svg) + .field("utf8", &JsWriteResult::utf8) + .field("image", &JsWriteResult::image); -#if defined(READER) || defined(WRITER) - - enum_("CharacterSet") - .value("Unknown", ZXing::CharacterSet::Unknown) - .value("ASCII", ZXing::CharacterSet::ASCII) - .value("ISO8859_1", ZXing::CharacterSet::ISO8859_1) - .value("ISO8859_2", ZXing::CharacterSet::ISO8859_2) - .value("ISO8859_3", ZXing::CharacterSet::ISO8859_3) - .value("ISO8859_4", ZXing::CharacterSet::ISO8859_4) - .value("ISO8859_5", ZXing::CharacterSet::ISO8859_5) - .value("ISO8859_6", ZXing::CharacterSet::ISO8859_6) - .value("ISO8859_7", ZXing::CharacterSet::ISO8859_7) - .value("ISO8859_8", ZXing::CharacterSet::ISO8859_8) - .value("ISO8859_9", ZXing::CharacterSet::ISO8859_9) - .value("ISO8859_10", ZXing::CharacterSet::ISO8859_10) - .value("ISO8859_11", ZXing::CharacterSet::ISO8859_11) - .value("ISO8859_13", ZXing::CharacterSet::ISO8859_13) - .value("ISO8859_14", ZXing::CharacterSet::ISO8859_14) - .value("ISO8859_15", ZXing::CharacterSet::ISO8859_15) - .value("ISO8859_16", ZXing::CharacterSet::ISO8859_16) - .value("Cp437", ZXing::CharacterSet::Cp437) - .value("Cp1250", ZXing::CharacterSet::Cp1250) - .value("Cp1251", ZXing::CharacterSet::Cp1251) - .value("Cp1252", ZXing::CharacterSet::Cp1252) - .value("Cp1256", ZXing::CharacterSet::Cp1256) - .value("Shift_JIS", ZXing::CharacterSet::Shift_JIS) - .value("Big5", ZXing::CharacterSet::Big5) - .value("GB2312", ZXing::CharacterSet::GB2312) - .value("GB18030", ZXing::CharacterSet::GB18030) - .value("EUC_JP", ZXing::CharacterSet::EUC_JP) - .value("EUC_KR", ZXing::CharacterSet::EUC_KR) - .value("UTF16BE", ZXing::CharacterSet::UTF16BE) - .value("UTF8", ZXing::CharacterSet::UTF8) - .value("UTF16LE", ZXing::CharacterSet::UTF16LE) - .value("UTF32BE", ZXing::CharacterSet::UTF32BE) - .value("UTF32LE", ZXing::CharacterSet::UTF32LE) - .value("BINARY", ZXing::CharacterSet::BINARY); + function("writeBarcodeFromText", &writeBarcodeFromText); + function("writeBarcodeFromBytes", &writeBarcodeFromBytes); #endif }; diff --git a/src/full/index.ts b/src/full/index.ts index 6945b6c9..565391fd 100644 --- a/src/full/index.ts +++ b/src/full/index.ts @@ -1,68 +1,117 @@ +import type { Merge } from "type-fest"; import type { ReaderOptions, WriterOptions } from "../bindings/index.js"; import { + type PrepareZXingModuleOptions, type ZXingFullModule, type ZXingModuleOverrides, - getZXingModuleWithFactory, - readBarcodesFromImageDataWithFactory, - readBarcodesFromImageFileWithFactory, - setZXingModuleOverridesWithFactory, - writeBarcodeToImageFileWithFactory, + prepareZXingModuleWithFactory, + purgeZXingModuleWithFactory, + readBarcodesWithFactory, + writeBarcodeWithFactory, } from "../core.js"; import zxingModuleFactory from "./zxing_full.js"; +export function prepareZXingModule( + options?: Merge, +): void; + +export function prepareZXingModule( + options: Merge, +): Promise; + +export function prepareZXingModule( + options?: PrepareZXingModuleOptions, +): void | Promise; + +export function prepareZXingModule(options?: PrepareZXingModuleOptions) { + return prepareZXingModuleWithFactory(zxingModuleFactory, options); +} + +export function purgeZXingModule() { + return purgeZXingModuleWithFactory(zxingModuleFactory); +} + +/** + * @deprecated Use {@link prepareZXingModule | `prepareZXingModule`} instead. + * This function is equivalent to the following: + * + * ```ts + * prepareZXingModule({ + * overrides: zxingModuleOverrides, + * equalityFn: Object.is, + * fireImmediately: true, + * }); + */ export function getZXingModule(zxingModuleOverrides?: ZXingModuleOverrides) { - return getZXingModuleWithFactory( - zxingModuleFactory, - zxingModuleOverrides, - ) as Promise; + return prepareZXingModule({ + overrides: zxingModuleOverrides, + equalityFn: Object.is, + fireImmediately: true, + }); } +/** + * @deprecated Use {@link prepareZXingModule | `prepareZXingModule`} instead. + * This function is equivalent to the following: + * + * ```ts + * prepareZXingModule({ + * overrides: zxingModuleOverrides, + * equalityFn: Object.is, + * fireImmediately: false, + * }); + * ``` + */ export function setZXingModuleOverrides( zxingModuleOverrides: ZXingModuleOverrides, ) { - return setZXingModuleOverridesWithFactory( - zxingModuleFactory, - zxingModuleOverrides, - ); + prepareZXingModule({ + overrides: zxingModuleOverrides, + equalityFn: Object.is, + fireImmediately: false, + }); +} + +export async function readBarcodes( + input: Blob | ImageData, + readerOptions?: ReaderOptions, +) { + return readBarcodesWithFactory(zxingModuleFactory, input, readerOptions); } +/** + * @deprecated Use {@link readBarcodes | `readBarcodes`} instead. + */ export async function readBarcodesFromImageFile( imageFile: Blob, readerOptions?: ReaderOptions, ) { - return readBarcodesFromImageFileWithFactory( - zxingModuleFactory, - imageFile, - readerOptions, - ); + return readBarcodes(imageFile, readerOptions); } +/** + * @deprecated Use {@link readBarcodes | `readBarcodes`} instead. + */ export async function readBarcodesFromImageData( imageData: ImageData, readerOptions?: ReaderOptions, ) { - return readBarcodesFromImageDataWithFactory( - zxingModuleFactory, - imageData, - readerOptions, - ); + return readBarcodes(imageData, readerOptions); } -export async function writeBarcodeToImageFile( - text: string, +export async function writeBarcode( + input: string | Uint8Array, writerOptions?: WriterOptions, ) { - return writeBarcodeToImageFileWithFactory( - zxingModuleFactory, - text, - writerOptions, - ); + return writeBarcodeWithFactory(zxingModuleFactory, input, writerOptions); } export * from "../bindings/exposedReaderBindings.js"; export * from "../bindings/exposedWriterBindings.js"; export { - purgeZXingModule, + ZXING_WASM_VERSION, + type PrepareZXingModuleOptions, type ZXingFullModule, type ZXingModuleOverrides, } from "../core.js"; +export const ZXING_WASM_SHA256 = FULL_HASH; diff --git a/src/global.d.ts b/src/global.d.ts index eefeb9b0..9f293525 100644 --- a/src/global.d.ts +++ b/src/global.d.ts @@ -1,2 +1,5 @@ /// declare const NPM_PACKAGE_VERSION: string; +declare const READER_HASH: string; +declare const WRITER_HASH: string; +declare const FULL_HASH: string; diff --git a/src/imageData.d.ts b/src/imageData.d.ts new file mode 100644 index 00000000..b93fe8f4 --- /dev/null +++ b/src/imageData.d.ts @@ -0,0 +1,5 @@ +type _ImageData = typeof globalThis extends { ImageData: unknown } + ? {} + : { data: Uint8ClampedArray; width: number; height: number }; + +interface ImageData extends _ImageData {} diff --git a/src/reader/index.ts b/src/reader/index.ts index 1ffa08e6..8fca105a 100644 --- a/src/reader/index.ts +++ b/src/reader/index.ts @@ -1,55 +1,108 @@ +import type { Merge } from "type-fest"; import type { ReaderOptions } from "../bindings/index.js"; import { + type PrepareZXingModuleOptions, type ZXingModuleOverrides, type ZXingReaderModule, - getZXingModuleWithFactory, - readBarcodesFromImageDataWithFactory, - readBarcodesFromImageFileWithFactory, - setZXingModuleOverridesWithFactory, + prepareZXingModuleWithFactory, + purgeZXingModuleWithFactory, + readBarcodesWithFactory, } from "../core.js"; import zxingModuleFactory from "./zxing_reader.js"; +export function prepareZXingModule( + options?: Merge, +): void; + +export function prepareZXingModule( + options: Merge, +): Promise; + +export function prepareZXingModule( + options?: PrepareZXingModuleOptions, +): void | Promise; + +export function prepareZXingModule(options?: PrepareZXingModuleOptions) { + return prepareZXingModuleWithFactory(zxingModuleFactory, options); +} + +export function purgeZXingModule() { + return purgeZXingModuleWithFactory(zxingModuleFactory); +} + +/** + * @deprecated Use {@link prepareZXingModule | `prepareZXingModule`} instead. + * This function is equivalent to the following: + * + * ```ts + * prepareZXingModule({ + * overrides: zxingModuleOverrides, + * equalityFn: Object.is, + * fireImmediately: true, + * }); + */ export function getZXingModule(zxingModuleOverrides?: ZXingModuleOverrides) { - return getZXingModuleWithFactory( - zxingModuleFactory, - zxingModuleOverrides, - ) as Promise; + return prepareZXingModule({ + overrides: zxingModuleOverrides, + equalityFn: Object.is, + fireImmediately: true, + }); } +/** + * @deprecated Use {@link prepareZXingModule | `prepareZXingModule`} instead. + * This function is equivalent to the following: + * + * ```ts + * prepareZXingModule({ + * overrides: zxingModuleOverrides, + * equalityFn: Object.is, + * fireImmediately: false, + * }); + * ``` + */ export function setZXingModuleOverrides( zxingModuleOverrides: ZXingModuleOverrides, ) { - return setZXingModuleOverridesWithFactory( - zxingModuleFactory, - zxingModuleOverrides, - ); + prepareZXingModule({ + overrides: zxingModuleOverrides, + equalityFn: Object.is, + fireImmediately: false, + }); +} + +export async function readBarcodes( + input: Blob | ImageData, + readerOptions?: ReaderOptions, +) { + return readBarcodesWithFactory(zxingModuleFactory, input, readerOptions); } +/** + * @deprecated Use {@link readBarcodes | `readBarcodes`} instead. + */ export async function readBarcodesFromImageFile( imageFile: Blob, readerOptions?: ReaderOptions, ) { - return readBarcodesFromImageFileWithFactory( - zxingModuleFactory, - imageFile, - readerOptions, - ); + return readBarcodes(imageFile, readerOptions); } +/** + * @deprecated Use {@link readBarcodes | `readBarcodes`} instead. + */ export async function readBarcodesFromImageData( imageData: ImageData, readerOptions?: ReaderOptions, ) { - return readBarcodesFromImageDataWithFactory( - zxingModuleFactory, - imageData, - readerOptions, - ); + return readBarcodes(imageData, readerOptions); } export * from "../bindings/exposedReaderBindings.js"; export { - purgeZXingModule, + ZXING_WASM_VERSION, + type PrepareZXingModuleOptions, type ZXingReaderModule, type ZXingModuleOverrides, } from "../core.js"; +export const ZXING_WASM_SHA256 = READER_HASH; diff --git a/src/writer/index.ts b/src/writer/index.ts index 0d43db84..509788dc 100644 --- a/src/writer/index.ts +++ b/src/writer/index.ts @@ -5,46 +5,91 @@ * @packageDocumentation */ +import type { Merge } from "type-fest"; import type { WriterOptions } from "../bindings/index.js"; import { + type PrepareZXingModuleOptions, type ZXingModuleOverrides, type ZXingWriterModule, - getZXingModuleWithFactory, - setZXingModuleOverridesWithFactory, - writeBarcodeToImageFileWithFactory, + prepareZXingModuleWithFactory, + purgeZXingModuleWithFactory, + writeBarcodeWithFactory, } from "../core.js"; import zxingModuleFactory from "./zxing_writer.js"; +export function prepareZXingModule( + options?: Merge, +): void; + +export function prepareZXingModule( + options: Merge, +): Promise; + +export function prepareZXingModule( + options?: PrepareZXingModuleOptions, +): void | Promise; + +export function prepareZXingModule(options?: PrepareZXingModuleOptions) { + return prepareZXingModuleWithFactory(zxingModuleFactory, options); +} + +export function purgeZXingModule() { + return purgeZXingModuleWithFactory(zxingModuleFactory); +} + +/** + * @deprecated Use {@link prepareZXingModule | `prepareZXingModule`} instead. + * This function is equivalent to the following: + * + * ```ts + * prepareZXingModule({ + * overrides: zxingModuleOverrides, + * equalityFn: Object.is, + * fireImmediately: true, + * }); + */ export function getZXingModule(zxingModuleOverrides?: ZXingModuleOverrides) { - return getZXingModuleWithFactory( - zxingModuleFactory, - zxingModuleOverrides, - ) as Promise; + return prepareZXingModule({ + overrides: zxingModuleOverrides, + equalityFn: Object.is, + fireImmediately: true, + }); } +/** + * @deprecated Use {@link prepareZXingModule | `prepareZXingModule`} instead. + * This function is equivalent to the following: + * + * ```ts + * prepareZXingModule({ + * overrides: zxingModuleOverrides, + * equalityFn: Object.is, + * fireImmediately: false, + * }); + * ``` + */ export function setZXingModuleOverrides( zxingModuleOverrides: ZXingModuleOverrides, ) { - return setZXingModuleOverridesWithFactory( - zxingModuleFactory, - zxingModuleOverrides, - ); + prepareZXingModule({ + overrides: zxingModuleOverrides, + equalityFn: Object.is, + fireImmediately: false, + }); } -export async function writeBarcodeToImageFile( - text: string, +export async function writeBarcode( + input: string | Uint8Array, writerOptions?: WriterOptions, ) { - return writeBarcodeToImageFileWithFactory( - zxingModuleFactory, - text, - writerOptions, - ); + return writeBarcodeWithFactory(zxingModuleFactory, input, writerOptions); } export * from "../bindings/exposedWriterBindings.js"; export { - purgeZXingModule, + ZXING_WASM_VERSION, + type PrepareZXingModuleOptions, type ZXingWriterModule, type ZXingModuleOverrides, } from "../core.js"; +export const ZXING_WASM_SHA256 = WRITER_HASH; diff --git a/tests/__snapshots__/aztec-1/#128/fast-0.json b/tests/__snapshots__/aztec-1/#128/fast-0.json index b78af1eb..840f1a59 100644 --- a/tests/__snapshots__/aztec-1/#128/fast-0.json +++ b/tests/__snapshots__/aztec-1/#128/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f9a6acb", "bytesECI": "b554ded", "text": "This is an example Aztec symbol for Wikipedia.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#128/fast-180.json b/tests/__snapshots__/aztec-1/#128/fast-180.json index 61a62b8b..0d076427 100644 --- a/tests/__snapshots__/aztec-1/#128/fast-180.json +++ b/tests/__snapshots__/aztec-1/#128/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f9a6acb", "bytesECI": "b554ded", "text": "This is an example Aztec symbol for Wikipedia.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#128/fast-270.json b/tests/__snapshots__/aztec-1/#128/fast-270.json index 85e57d3a..fa8a7cac 100644 --- a/tests/__snapshots__/aztec-1/#128/fast-270.json +++ b/tests/__snapshots__/aztec-1/#128/fast-270.json @@ -5,7 +5,7 @@ "bytes": "f9a6acb", "bytesECI": "b554ded", "text": "This is an example Aztec symbol for Wikipedia.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#128/fast-90.json b/tests/__snapshots__/aztec-1/#128/fast-90.json index a84c608a..177d16b3 100644 --- a/tests/__snapshots__/aztec-1/#128/fast-90.json +++ b/tests/__snapshots__/aztec-1/#128/fast-90.json @@ -5,7 +5,7 @@ "bytes": "f9a6acb", "bytesECI": "b554ded", "text": "This is an example Aztec symbol for Wikipedia.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#128/pure-0.json b/tests/__snapshots__/aztec-1/#128/pure-0.json index b78af1eb..840f1a59 100644 --- a/tests/__snapshots__/aztec-1/#128/pure-0.json +++ b/tests/__snapshots__/aztec-1/#128/pure-0.json @@ -5,7 +5,7 @@ "bytes": "f9a6acb", "bytesECI": "b554ded", "text": "This is an example Aztec symbol for Wikipedia.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#128/slow-0.json b/tests/__snapshots__/aztec-1/#128/slow-0.json index b78af1eb..840f1a59 100644 --- a/tests/__snapshots__/aztec-1/#128/slow-0.json +++ b/tests/__snapshots__/aztec-1/#128/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f9a6acb", "bytesECI": "b554ded", "text": "This is an example Aztec symbol for Wikipedia.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#128/slow-180.json b/tests/__snapshots__/aztec-1/#128/slow-180.json index 61a62b8b..0d076427 100644 --- a/tests/__snapshots__/aztec-1/#128/slow-180.json +++ b/tests/__snapshots__/aztec-1/#128/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f9a6acb", "bytesECI": "b554ded", "text": "This is an example Aztec symbol for Wikipedia.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#128/slow-270.json b/tests/__snapshots__/aztec-1/#128/slow-270.json index 85e57d3a..fa8a7cac 100644 --- a/tests/__snapshots__/aztec-1/#128/slow-270.json +++ b/tests/__snapshots__/aztec-1/#128/slow-270.json @@ -5,7 +5,7 @@ "bytes": "f9a6acb", "bytesECI": "b554ded", "text": "This is an example Aztec symbol for Wikipedia.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#128/slow-90.json b/tests/__snapshots__/aztec-1/#128/slow-90.json index a84c608a..177d16b3 100644 --- a/tests/__snapshots__/aztec-1/#128/slow-90.json +++ b/tests/__snapshots__/aztec-1/#128/slow-90.json @@ -5,7 +5,7 @@ "bytes": "f9a6acb", "bytesECI": "b554ded", "text": "This is an example Aztec symbol for Wikipedia.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#217/fast-0.json b/tests/__snapshots__/aztec-1/#217/fast-0.json index 6619e94d..836a727f 100644 --- a/tests/__snapshots__/aztec-1/#217/fast-0.json +++ b/tests/__snapshots__/aztec-1/#217/fast-0.json @@ -5,7 +5,7 @@ "bytes": "577a6f6", "bytesECI": "17f8f0b", "text": "I have the best words.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#217/fast-180.json b/tests/__snapshots__/aztec-1/#217/fast-180.json index e0750b09..eecd95e3 100644 --- a/tests/__snapshots__/aztec-1/#217/fast-180.json +++ b/tests/__snapshots__/aztec-1/#217/fast-180.json @@ -5,7 +5,7 @@ "bytes": "577a6f6", "bytesECI": "17f8f0b", "text": "I have the best words.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#217/fast-270.json b/tests/__snapshots__/aztec-1/#217/fast-270.json index 1696c412..98df442e 100644 --- a/tests/__snapshots__/aztec-1/#217/fast-270.json +++ b/tests/__snapshots__/aztec-1/#217/fast-270.json @@ -5,7 +5,7 @@ "bytes": "577a6f6", "bytesECI": "17f8f0b", "text": "I have the best words.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#217/fast-90.json b/tests/__snapshots__/aztec-1/#217/fast-90.json index b1aa0ded..710fd8db 100644 --- a/tests/__snapshots__/aztec-1/#217/fast-90.json +++ b/tests/__snapshots__/aztec-1/#217/fast-90.json @@ -5,7 +5,7 @@ "bytes": "577a6f6", "bytesECI": "17f8f0b", "text": "I have the best words.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#217/pure-0.json b/tests/__snapshots__/aztec-1/#217/pure-0.json index 6619e94d..836a727f 100644 --- a/tests/__snapshots__/aztec-1/#217/pure-0.json +++ b/tests/__snapshots__/aztec-1/#217/pure-0.json @@ -5,7 +5,7 @@ "bytes": "577a6f6", "bytesECI": "17f8f0b", "text": "I have the best words.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#217/slow-0.json b/tests/__snapshots__/aztec-1/#217/slow-0.json index 6619e94d..836a727f 100644 --- a/tests/__snapshots__/aztec-1/#217/slow-0.json +++ b/tests/__snapshots__/aztec-1/#217/slow-0.json @@ -5,7 +5,7 @@ "bytes": "577a6f6", "bytesECI": "17f8f0b", "text": "I have the best words.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#217/slow-180.json b/tests/__snapshots__/aztec-1/#217/slow-180.json index e0750b09..eecd95e3 100644 --- a/tests/__snapshots__/aztec-1/#217/slow-180.json +++ b/tests/__snapshots__/aztec-1/#217/slow-180.json @@ -5,7 +5,7 @@ "bytes": "577a6f6", "bytesECI": "17f8f0b", "text": "I have the best words.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#217/slow-270.json b/tests/__snapshots__/aztec-1/#217/slow-270.json index 1696c412..98df442e 100644 --- a/tests/__snapshots__/aztec-1/#217/slow-270.json +++ b/tests/__snapshots__/aztec-1/#217/slow-270.json @@ -5,7 +5,7 @@ "bytes": "577a6f6", "bytesECI": "17f8f0b", "text": "I have the best words.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/#217/slow-90.json b/tests/__snapshots__/aztec-1/#217/slow-90.json index b1aa0ded..710fd8db 100644 --- a/tests/__snapshots__/aztec-1/#217/slow-90.json +++ b/tests/__snapshots__/aztec-1/#217/slow-90.json @@ -5,7 +5,7 @@ "bytes": "577a6f6", "bytesECI": "17f8f0b", "text": "I have the best words.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/7/fast-0.json b/tests/__snapshots__/aztec-1/7/fast-0.json index cd6eabe2..ca12adf3 100644 --- a/tests/__snapshots__/aztec-1/7/fast-0.json +++ b/tests/__snapshots__/aztec-1/7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "fb891ef", "bytesECI": "6bbbf03", "text": "Code 2D!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/7/fast-180.json b/tests/__snapshots__/aztec-1/7/fast-180.json index 2f5039fa..551795b7 100644 --- a/tests/__snapshots__/aztec-1/7/fast-180.json +++ b/tests/__snapshots__/aztec-1/7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "fb891ef", "bytesECI": "6bbbf03", "text": "Code 2D!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/7/fast-270.json b/tests/__snapshots__/aztec-1/7/fast-270.json index 3c1113e2..a624721d 100644 --- a/tests/__snapshots__/aztec-1/7/fast-270.json +++ b/tests/__snapshots__/aztec-1/7/fast-270.json @@ -5,7 +5,7 @@ "bytes": "fb891ef", "bytesECI": "6bbbf03", "text": "Code 2D!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/7/fast-90.json b/tests/__snapshots__/aztec-1/7/fast-90.json index a093b9db..55c45a36 100644 --- a/tests/__snapshots__/aztec-1/7/fast-90.json +++ b/tests/__snapshots__/aztec-1/7/fast-90.json @@ -5,7 +5,7 @@ "bytes": "fb891ef", "bytesECI": "6bbbf03", "text": "Code 2D!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/7/pure-0.json b/tests/__snapshots__/aztec-1/7/pure-0.json index cd6eabe2..ca12adf3 100644 --- a/tests/__snapshots__/aztec-1/7/pure-0.json +++ b/tests/__snapshots__/aztec-1/7/pure-0.json @@ -5,7 +5,7 @@ "bytes": "fb891ef", "bytesECI": "6bbbf03", "text": "Code 2D!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/7/slow-0.json b/tests/__snapshots__/aztec-1/7/slow-0.json index cd6eabe2..ca12adf3 100644 --- a/tests/__snapshots__/aztec-1/7/slow-0.json +++ b/tests/__snapshots__/aztec-1/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "fb891ef", "bytesECI": "6bbbf03", "text": "Code 2D!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/7/slow-180.json b/tests/__snapshots__/aztec-1/7/slow-180.json index 2f5039fa..551795b7 100644 --- a/tests/__snapshots__/aztec-1/7/slow-180.json +++ b/tests/__snapshots__/aztec-1/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "fb891ef", "bytesECI": "6bbbf03", "text": "Code 2D!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/7/slow-270.json b/tests/__snapshots__/aztec-1/7/slow-270.json index 3c1113e2..a624721d 100644 --- a/tests/__snapshots__/aztec-1/7/slow-270.json +++ b/tests/__snapshots__/aztec-1/7/slow-270.json @@ -5,7 +5,7 @@ "bytes": "fb891ef", "bytesECI": "6bbbf03", "text": "Code 2D!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/7/slow-90.json b/tests/__snapshots__/aztec-1/7/slow-90.json index a093b9db..55c45a36 100644 --- a/tests/__snapshots__/aztec-1/7/slow-90.json +++ b/tests/__snapshots__/aztec-1/7/slow-90.json @@ -5,7 +5,7 @@ "bytes": "fb891ef", "bytesECI": "6bbbf03", "text": "Code 2D!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Historico/fast-0.json b/tests/__snapshots__/aztec-1/Historico/fast-0.json index 88a86d4e..e6be6947 100644 --- a/tests/__snapshots__/aztec-1/Historico/fast-0.json +++ b/tests/__snapshots__/aztec-1/Historico/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d1ee605", "bytesECI": "af49480", "text": "Histórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Historico/fast-180.json b/tests/__snapshots__/aztec-1/Historico/fast-180.json index 741e8883..2e030bec 100644 --- a/tests/__snapshots__/aztec-1/Historico/fast-180.json +++ b/tests/__snapshots__/aztec-1/Historico/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d1ee605", "bytesECI": "af49480", "text": "Histórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Historico/fast-270.json b/tests/__snapshots__/aztec-1/Historico/fast-270.json index 1841401f..e2f5b91a 100644 --- a/tests/__snapshots__/aztec-1/Historico/fast-270.json +++ b/tests/__snapshots__/aztec-1/Historico/fast-270.json @@ -5,7 +5,7 @@ "bytes": "d1ee605", "bytesECI": "af49480", "text": "Histórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Historico/fast-90.json b/tests/__snapshots__/aztec-1/Historico/fast-90.json index c5dda706..e9330140 100644 --- a/tests/__snapshots__/aztec-1/Historico/fast-90.json +++ b/tests/__snapshots__/aztec-1/Historico/fast-90.json @@ -5,7 +5,7 @@ "bytes": "d1ee605", "bytesECI": "af49480", "text": "Histórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Historico/pure-0.json b/tests/__snapshots__/aztec-1/Historico/pure-0.json index 88a86d4e..e6be6947 100644 --- a/tests/__snapshots__/aztec-1/Historico/pure-0.json +++ b/tests/__snapshots__/aztec-1/Historico/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d1ee605", "bytesECI": "af49480", "text": "Histórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Historico/slow-0.json b/tests/__snapshots__/aztec-1/Historico/slow-0.json index 88a86d4e..e6be6947 100644 --- a/tests/__snapshots__/aztec-1/Historico/slow-0.json +++ b/tests/__snapshots__/aztec-1/Historico/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d1ee605", "bytesECI": "af49480", "text": "Histórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Historico/slow-180.json b/tests/__snapshots__/aztec-1/Historico/slow-180.json index 741e8883..2e030bec 100644 --- a/tests/__snapshots__/aztec-1/Historico/slow-180.json +++ b/tests/__snapshots__/aztec-1/Historico/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d1ee605", "bytesECI": "af49480", "text": "Histórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Historico/slow-270.json b/tests/__snapshots__/aztec-1/Historico/slow-270.json index 1841401f..e2f5b91a 100644 --- a/tests/__snapshots__/aztec-1/Historico/slow-270.json +++ b/tests/__snapshots__/aztec-1/Historico/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d1ee605", "bytesECI": "af49480", "text": "Histórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Historico/slow-90.json b/tests/__snapshots__/aztec-1/Historico/slow-90.json index c5dda706..e9330140 100644 --- a/tests/__snapshots__/aztec-1/Historico/slow-90.json +++ b/tests/__snapshots__/aztec-1/Historico/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d1ee605", "bytesECI": "af49480", "text": "Histórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/HistoricoLong/fast-0.json b/tests/__snapshots__/aztec-1/HistoricoLong/fast-0.json index 16dd999d..69a12cda 100644 --- a/tests/__snapshots__/aztec-1/HistoricoLong/fast-0.json +++ b/tests/__snapshots__/aztec-1/HistoricoLong/fast-0.json @@ -5,7 +5,7 @@ "bytes": "76525a3", "bytesECI": "14f652e", "text": "Históóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/HistoricoLong/fast-180.json b/tests/__snapshots__/aztec-1/HistoricoLong/fast-180.json index 4f725b79..50e15418 100644 --- a/tests/__snapshots__/aztec-1/HistoricoLong/fast-180.json +++ b/tests/__snapshots__/aztec-1/HistoricoLong/fast-180.json @@ -5,7 +5,7 @@ "bytes": "76525a3", "bytesECI": "14f652e", "text": "Históóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/HistoricoLong/fast-270.json b/tests/__snapshots__/aztec-1/HistoricoLong/fast-270.json index aba7fea4..2b851fe8 100644 --- a/tests/__snapshots__/aztec-1/HistoricoLong/fast-270.json +++ b/tests/__snapshots__/aztec-1/HistoricoLong/fast-270.json @@ -5,7 +5,7 @@ "bytes": "76525a3", "bytesECI": "14f652e", "text": "Históóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/HistoricoLong/fast-90.json b/tests/__snapshots__/aztec-1/HistoricoLong/fast-90.json index 82442ea0..e2d1602a 100644 --- a/tests/__snapshots__/aztec-1/HistoricoLong/fast-90.json +++ b/tests/__snapshots__/aztec-1/HistoricoLong/fast-90.json @@ -5,7 +5,7 @@ "bytes": "76525a3", "bytesECI": "14f652e", "text": "Históóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/HistoricoLong/pure-0.json b/tests/__snapshots__/aztec-1/HistoricoLong/pure-0.json index 16dd999d..69a12cda 100644 --- a/tests/__snapshots__/aztec-1/HistoricoLong/pure-0.json +++ b/tests/__snapshots__/aztec-1/HistoricoLong/pure-0.json @@ -5,7 +5,7 @@ "bytes": "76525a3", "bytesECI": "14f652e", "text": "Históóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/HistoricoLong/slow-0.json b/tests/__snapshots__/aztec-1/HistoricoLong/slow-0.json index 16dd999d..69a12cda 100644 --- a/tests/__snapshots__/aztec-1/HistoricoLong/slow-0.json +++ b/tests/__snapshots__/aztec-1/HistoricoLong/slow-0.json @@ -5,7 +5,7 @@ "bytes": "76525a3", "bytesECI": "14f652e", "text": "Históóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/HistoricoLong/slow-180.json b/tests/__snapshots__/aztec-1/HistoricoLong/slow-180.json index 4f725b79..50e15418 100644 --- a/tests/__snapshots__/aztec-1/HistoricoLong/slow-180.json +++ b/tests/__snapshots__/aztec-1/HistoricoLong/slow-180.json @@ -5,7 +5,7 @@ "bytes": "76525a3", "bytesECI": "14f652e", "text": "Históóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/HistoricoLong/slow-270.json b/tests/__snapshots__/aztec-1/HistoricoLong/slow-270.json index aba7fea4..2b851fe8 100644 --- a/tests/__snapshots__/aztec-1/HistoricoLong/slow-270.json +++ b/tests/__snapshots__/aztec-1/HistoricoLong/slow-270.json @@ -5,7 +5,7 @@ "bytes": "76525a3", "bytesECI": "14f652e", "text": "Históóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/HistoricoLong/slow-90.json b/tests/__snapshots__/aztec-1/HistoricoLong/slow-90.json index 82442ea0..e2d1602a 100644 --- a/tests/__snapshots__/aztec-1/HistoricoLong/slow-90.json +++ b/tests/__snapshots__/aztec-1/HistoricoLong/slow-90.json @@ -5,7 +5,7 @@ "bytes": "76525a3", "bytesECI": "14f652e", "text": "Históóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóóórico", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-0.json b/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-0.json index 6faa7160..708773d8 100644 --- a/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-0.json +++ b/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ceaa28b", "bytesECI": "999a12a", "text": "3456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "Z1.txt", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-180.json b/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-180.json index 32bb47cd..8caf47c5 100644 --- a/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-180.json +++ b/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ceaa28b", "bytesECI": "999a12a", "text": "3456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "Z1.txt", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-270.json b/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-270.json index f6174754..a26b9257 100644 --- a/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-270.json +++ b/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-270.json @@ -5,7 +5,7 @@ "bytes": "ceaa28b", "bytesECI": "999a12a", "text": "3456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "Z1.txt", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-90.json b/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-90.json index 31262b96..c4d42b7d 100644 --- a/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-90.json +++ b/tests/__snapshots__/aztec-1/Z1-sequence4of7/fast-90.json @@ -5,7 +5,7 @@ "bytes": "ceaa28b", "bytesECI": "999a12a", "text": "3456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "Z1.txt", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Z1-sequence4of7/pure-0.json b/tests/__snapshots__/aztec-1/Z1-sequence4of7/pure-0.json index 6faa7160..708773d8 100644 --- a/tests/__snapshots__/aztec-1/Z1-sequence4of7/pure-0.json +++ b/tests/__snapshots__/aztec-1/Z1-sequence4of7/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ceaa28b", "bytesECI": "999a12a", "text": "3456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "Z1.txt", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-0.json b/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-0.json index 6faa7160..708773d8 100644 --- a/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-0.json +++ b/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ceaa28b", "bytesECI": "999a12a", "text": "3456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "Z1.txt", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-180.json b/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-180.json index 32bb47cd..8caf47c5 100644 --- a/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-180.json +++ b/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ceaa28b", "bytesECI": "999a12a", "text": "3456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "Z1.txt", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-270.json b/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-270.json index f6174754..a26b9257 100644 --- a/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-270.json +++ b/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ceaa28b", "bytesECI": "999a12a", "text": "3456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "Z1.txt", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-90.json b/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-90.json index 31262b96..c4d42b7d 100644 --- a/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-90.json +++ b/tests/__snapshots__/aztec-1/Z1-sequence4of7/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ceaa28b", "bytesECI": "999a12a", "text": "3456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "Z1.txt", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-19x19C/fast-0.json b/tests/__snapshots__/aztec-1/abc-19x19C/fast-0.json index bd70b8af..2e2c6379 100644 --- a/tests/__snapshots__/aztec-1/abc-19x19C/fast-0.json +++ b/tests/__snapshots__/aztec-1/abc-19x19C/fast-0.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-19x19C/fast-180.json b/tests/__snapshots__/aztec-1/abc-19x19C/fast-180.json index 79a5de01..f8b27430 100644 --- a/tests/__snapshots__/aztec-1/abc-19x19C/fast-180.json +++ b/tests/__snapshots__/aztec-1/abc-19x19C/fast-180.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-19x19C/fast-270.json b/tests/__snapshots__/aztec-1/abc-19x19C/fast-270.json index d14604aa..b0e3543a 100644 --- a/tests/__snapshots__/aztec-1/abc-19x19C/fast-270.json +++ b/tests/__snapshots__/aztec-1/abc-19x19C/fast-270.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-19x19C/fast-90.json b/tests/__snapshots__/aztec-1/abc-19x19C/fast-90.json index 8f42422c..f3e66b88 100644 --- a/tests/__snapshots__/aztec-1/abc-19x19C/fast-90.json +++ b/tests/__snapshots__/aztec-1/abc-19x19C/fast-90.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-19x19C/pure-0.json b/tests/__snapshots__/aztec-1/abc-19x19C/pure-0.json index bd70b8af..2e2c6379 100644 --- a/tests/__snapshots__/aztec-1/abc-19x19C/pure-0.json +++ b/tests/__snapshots__/aztec-1/abc-19x19C/pure-0.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-19x19C/slow-0.json b/tests/__snapshots__/aztec-1/abc-19x19C/slow-0.json index bd70b8af..2e2c6379 100644 --- a/tests/__snapshots__/aztec-1/abc-19x19C/slow-0.json +++ b/tests/__snapshots__/aztec-1/abc-19x19C/slow-0.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-19x19C/slow-180.json b/tests/__snapshots__/aztec-1/abc-19x19C/slow-180.json index 79a5de01..f8b27430 100644 --- a/tests/__snapshots__/aztec-1/abc-19x19C/slow-180.json +++ b/tests/__snapshots__/aztec-1/abc-19x19C/slow-180.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-19x19C/slow-270.json b/tests/__snapshots__/aztec-1/abc-19x19C/slow-270.json index d14604aa..b0e3543a 100644 --- a/tests/__snapshots__/aztec-1/abc-19x19C/slow-270.json +++ b/tests/__snapshots__/aztec-1/abc-19x19C/slow-270.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-19x19C/slow-90.json b/tests/__snapshots__/aztec-1/abc-19x19C/slow-90.json index 8f42422c..f3e66b88 100644 --- a/tests/__snapshots__/aztec-1/abc-19x19C/slow-90.json +++ b/tests/__snapshots__/aztec-1/abc-19x19C/slow-90.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-37x37/fast-0.json b/tests/__snapshots__/aztec-1/abc-37x37/fast-0.json index b09ae1a7..4e0cd271 100644 --- a/tests/__snapshots__/aztec-1/abc-37x37/fast-0.json +++ b/tests/__snapshots__/aztec-1/abc-37x37/fast-0.json @@ -5,7 +5,7 @@ "bytes": "db70853", "bytesECI": "ba1ffe2", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-37x37/fast-180.json b/tests/__snapshots__/aztec-1/abc-37x37/fast-180.json index be1bc2b2..0bec0000 100644 --- a/tests/__snapshots__/aztec-1/abc-37x37/fast-180.json +++ b/tests/__snapshots__/aztec-1/abc-37x37/fast-180.json @@ -5,7 +5,7 @@ "bytes": "db70853", "bytesECI": "ba1ffe2", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-37x37/fast-270.json b/tests/__snapshots__/aztec-1/abc-37x37/fast-270.json index 8f80e2db..db61addb 100644 --- a/tests/__snapshots__/aztec-1/abc-37x37/fast-270.json +++ b/tests/__snapshots__/aztec-1/abc-37x37/fast-270.json @@ -5,7 +5,7 @@ "bytes": "db70853", "bytesECI": "ba1ffe2", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-37x37/fast-90.json b/tests/__snapshots__/aztec-1/abc-37x37/fast-90.json index 134919f8..18dad83d 100644 --- a/tests/__snapshots__/aztec-1/abc-37x37/fast-90.json +++ b/tests/__snapshots__/aztec-1/abc-37x37/fast-90.json @@ -5,7 +5,7 @@ "bytes": "db70853", "bytesECI": "ba1ffe2", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-37x37/pure-0.json b/tests/__snapshots__/aztec-1/abc-37x37/pure-0.json index b09ae1a7..4e0cd271 100644 --- a/tests/__snapshots__/aztec-1/abc-37x37/pure-0.json +++ b/tests/__snapshots__/aztec-1/abc-37x37/pure-0.json @@ -5,7 +5,7 @@ "bytes": "db70853", "bytesECI": "ba1ffe2", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-37x37/slow-0.json b/tests/__snapshots__/aztec-1/abc-37x37/slow-0.json index b09ae1a7..4e0cd271 100644 --- a/tests/__snapshots__/aztec-1/abc-37x37/slow-0.json +++ b/tests/__snapshots__/aztec-1/abc-37x37/slow-0.json @@ -5,7 +5,7 @@ "bytes": "db70853", "bytesECI": "ba1ffe2", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-37x37/slow-180.json b/tests/__snapshots__/aztec-1/abc-37x37/slow-180.json index be1bc2b2..0bec0000 100644 --- a/tests/__snapshots__/aztec-1/abc-37x37/slow-180.json +++ b/tests/__snapshots__/aztec-1/abc-37x37/slow-180.json @@ -5,7 +5,7 @@ "bytes": "db70853", "bytesECI": "ba1ffe2", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-37x37/slow-270.json b/tests/__snapshots__/aztec-1/abc-37x37/slow-270.json index 8f80e2db..db61addb 100644 --- a/tests/__snapshots__/aztec-1/abc-37x37/slow-270.json +++ b/tests/__snapshots__/aztec-1/abc-37x37/slow-270.json @@ -5,7 +5,7 @@ "bytes": "db70853", "bytesECI": "ba1ffe2", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-37x37/slow-90.json b/tests/__snapshots__/aztec-1/abc-37x37/slow-90.json index 134919f8..18dad83d 100644 --- a/tests/__snapshots__/aztec-1/abc-37x37/slow-90.json +++ b/tests/__snapshots__/aztec-1/abc-37x37/slow-90.json @@ -5,7 +5,7 @@ "bytes": "db70853", "bytesECI": "ba1ffe2", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-inverted/pure-0.json b/tests/__snapshots__/aztec-1/abc-inverted/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/aztec-1/abc-inverted/pure-0.json +++ b/tests/__snapshots__/aztec-1/abc-inverted/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-inverted/slow-0.json b/tests/__snapshots__/aztec-1/abc-inverted/slow-0.json index 63656133..3683a172 100644 --- a/tests/__snapshots__/aztec-1/abc-inverted/slow-0.json +++ b/tests/__snapshots__/aztec-1/abc-inverted/slow-0.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-inverted/slow-180.json b/tests/__snapshots__/aztec-1/abc-inverted/slow-180.json index 23b06d23..d8d72be7 100644 --- a/tests/__snapshots__/aztec-1/abc-inverted/slow-180.json +++ b/tests/__snapshots__/aztec-1/abc-inverted/slow-180.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-inverted/slow-270.json b/tests/__snapshots__/aztec-1/abc-inverted/slow-270.json index 38e6b2c3..f2128189 100644 --- a/tests/__snapshots__/aztec-1/abc-inverted/slow-270.json +++ b/tests/__snapshots__/aztec-1/abc-inverted/slow-270.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-inverted/slow-90.json b/tests/__snapshots__/aztec-1/abc-inverted/slow-90.json index 707dfd1d..897559b2 100644 --- a/tests/__snapshots__/aztec-1/abc-inverted/slow-90.json +++ b/tests/__snapshots__/aztec-1/abc-inverted/slow-90.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-mirrored/fast-0.json b/tests/__snapshots__/aztec-1/abc-mirrored/fast-0.json index 390f4482..2308af04 100644 --- a/tests/__snapshots__/aztec-1/abc-mirrored/fast-0.json +++ b/tests/__snapshots__/aztec-1/abc-mirrored/fast-0.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-mirrored/fast-180.json b/tests/__snapshots__/aztec-1/abc-mirrored/fast-180.json index 6b9c45a5..e38f9d81 100644 --- a/tests/__snapshots__/aztec-1/abc-mirrored/fast-180.json +++ b/tests/__snapshots__/aztec-1/abc-mirrored/fast-180.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-mirrored/fast-270.json b/tests/__snapshots__/aztec-1/abc-mirrored/fast-270.json index a227f9c8..768f87c2 100644 --- a/tests/__snapshots__/aztec-1/abc-mirrored/fast-270.json +++ b/tests/__snapshots__/aztec-1/abc-mirrored/fast-270.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-mirrored/fast-90.json b/tests/__snapshots__/aztec-1/abc-mirrored/fast-90.json index b4dab667..5816b83a 100644 --- a/tests/__snapshots__/aztec-1/abc-mirrored/fast-90.json +++ b/tests/__snapshots__/aztec-1/abc-mirrored/fast-90.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-mirrored/pure-0.json b/tests/__snapshots__/aztec-1/abc-mirrored/pure-0.json index 390f4482..2308af04 100644 --- a/tests/__snapshots__/aztec-1/abc-mirrored/pure-0.json +++ b/tests/__snapshots__/aztec-1/abc-mirrored/pure-0.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-mirrored/slow-0.json b/tests/__snapshots__/aztec-1/abc-mirrored/slow-0.json index 390f4482..2308af04 100644 --- a/tests/__snapshots__/aztec-1/abc-mirrored/slow-0.json +++ b/tests/__snapshots__/aztec-1/abc-mirrored/slow-0.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-mirrored/slow-180.json b/tests/__snapshots__/aztec-1/abc-mirrored/slow-180.json index 6b9c45a5..e38f9d81 100644 --- a/tests/__snapshots__/aztec-1/abc-mirrored/slow-180.json +++ b/tests/__snapshots__/aztec-1/abc-mirrored/slow-180.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-mirrored/slow-270.json b/tests/__snapshots__/aztec-1/abc-mirrored/slow-270.json index a227f9c8..768f87c2 100644 --- a/tests/__snapshots__/aztec-1/abc-mirrored/slow-270.json +++ b/tests/__snapshots__/aztec-1/abc-mirrored/slow-270.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/abc-mirrored/slow-90.json b/tests/__snapshots__/aztec-1/abc-mirrored/slow-90.json index b4dab667..5816b83a 100644 --- a/tests/__snapshots__/aztec-1/abc-mirrored/slow-90.json +++ b/tests/__snapshots__/aztec-1/abc-mirrored/slow-90.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "dba50ba", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thick/fast-0.json b/tests/__snapshots__/aztec-1/az-thick/fast-0.json index 38e815a4..d14e3c8b 100644 --- a/tests/__snapshots__/aztec-1/az-thick/fast-0.json +++ b/tests/__snapshots__/aztec-1/az-thick/fast-0.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thick/fast-180.json b/tests/__snapshots__/aztec-1/az-thick/fast-180.json index 4ac56810..82b7b9fc 100644 --- a/tests/__snapshots__/aztec-1/az-thick/fast-180.json +++ b/tests/__snapshots__/aztec-1/az-thick/fast-180.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thick/fast-270.json b/tests/__snapshots__/aztec-1/az-thick/fast-270.json index e8306cd6..2a572ba4 100644 --- a/tests/__snapshots__/aztec-1/az-thick/fast-270.json +++ b/tests/__snapshots__/aztec-1/az-thick/fast-270.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thick/fast-90.json b/tests/__snapshots__/aztec-1/az-thick/fast-90.json index c0887951..57bd8d7e 100644 --- a/tests/__snapshots__/aztec-1/az-thick/fast-90.json +++ b/tests/__snapshots__/aztec-1/az-thick/fast-90.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thick/pure-0.json b/tests/__snapshots__/aztec-1/az-thick/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/aztec-1/az-thick/pure-0.json +++ b/tests/__snapshots__/aztec-1/az-thick/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thick/slow-0.json b/tests/__snapshots__/aztec-1/az-thick/slow-0.json index 38e815a4..d14e3c8b 100644 --- a/tests/__snapshots__/aztec-1/az-thick/slow-0.json +++ b/tests/__snapshots__/aztec-1/az-thick/slow-0.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thick/slow-180.json b/tests/__snapshots__/aztec-1/az-thick/slow-180.json index 4ac56810..82b7b9fc 100644 --- a/tests/__snapshots__/aztec-1/az-thick/slow-180.json +++ b/tests/__snapshots__/aztec-1/az-thick/slow-180.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thick/slow-270.json b/tests/__snapshots__/aztec-1/az-thick/slow-270.json index e8306cd6..2a572ba4 100644 --- a/tests/__snapshots__/aztec-1/az-thick/slow-270.json +++ b/tests/__snapshots__/aztec-1/az-thick/slow-270.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thick/slow-90.json b/tests/__snapshots__/aztec-1/az-thick/slow-90.json index c0887951..57bd8d7e 100644 --- a/tests/__snapshots__/aztec-1/az-thick/slow-90.json +++ b/tests/__snapshots__/aztec-1/az-thick/slow-90.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thin/fast-0.json b/tests/__snapshots__/aztec-1/az-thin/fast-0.json index 38e815a4..d14e3c8b 100644 --- a/tests/__snapshots__/aztec-1/az-thin/fast-0.json +++ b/tests/__snapshots__/aztec-1/az-thin/fast-0.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thin/fast-180.json b/tests/__snapshots__/aztec-1/az-thin/fast-180.json index 4ac56810..82b7b9fc 100644 --- a/tests/__snapshots__/aztec-1/az-thin/fast-180.json +++ b/tests/__snapshots__/aztec-1/az-thin/fast-180.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thin/fast-270.json b/tests/__snapshots__/aztec-1/az-thin/fast-270.json index e8306cd6..2a572ba4 100644 --- a/tests/__snapshots__/aztec-1/az-thin/fast-270.json +++ b/tests/__snapshots__/aztec-1/az-thin/fast-270.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thin/fast-90.json b/tests/__snapshots__/aztec-1/az-thin/fast-90.json index c0887951..57bd8d7e 100644 --- a/tests/__snapshots__/aztec-1/az-thin/fast-90.json +++ b/tests/__snapshots__/aztec-1/az-thin/fast-90.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thin/pure-0.json b/tests/__snapshots__/aztec-1/az-thin/pure-0.json index 38e815a4..d14e3c8b 100644 --- a/tests/__snapshots__/aztec-1/az-thin/pure-0.json +++ b/tests/__snapshots__/aztec-1/az-thin/pure-0.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thin/slow-0.json b/tests/__snapshots__/aztec-1/az-thin/slow-0.json index 38e815a4..d14e3c8b 100644 --- a/tests/__snapshots__/aztec-1/az-thin/slow-0.json +++ b/tests/__snapshots__/aztec-1/az-thin/slow-0.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thin/slow-180.json b/tests/__snapshots__/aztec-1/az-thin/slow-180.json index 4ac56810..82b7b9fc 100644 --- a/tests/__snapshots__/aztec-1/az-thin/slow-180.json +++ b/tests/__snapshots__/aztec-1/az-thin/slow-180.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thin/slow-270.json b/tests/__snapshots__/aztec-1/az-thin/slow-270.json index e8306cd6..2a572ba4 100644 --- a/tests/__snapshots__/aztec-1/az-thin/slow-270.json +++ b/tests/__snapshots__/aztec-1/az-thin/slow-270.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/az-thin/slow-90.json b/tests/__snapshots__/aztec-1/az-thin/slow-90.json index c0887951..57bd8d7e 100644 --- a/tests/__snapshots__/aztec-1/az-thin/slow-90.json +++ b/tests/__snapshots__/aztec-1/az-thin/slow-90.json @@ -5,7 +5,7 @@ "bytes": "29767a7", "bytesECI": "ea087f0", "text": "Aztec Code is a public domain 2D matrix barcode symbology of nominally square symbols built on a square grid with a distinctive square bullseye pattern at their center.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/dlusbs/fast-0.json b/tests/__snapshots__/aztec-1/dlusbs/fast-0.json index 9262ce23..c8075f60 100644 --- a/tests/__snapshots__/aztec-1/dlusbs/fast-0.json +++ b/tests/__snapshots__/aztec-1/dlusbs/fast-0.json @@ -5,7 +5,7 @@ "bytes": "bf34e37", "bytesECI": "fc968a9", "text": "3333h3i3jITIT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/dlusbs/fast-180.json b/tests/__snapshots__/aztec-1/dlusbs/fast-180.json index 6ea6b8a6..a8cf86a7 100644 --- a/tests/__snapshots__/aztec-1/dlusbs/fast-180.json +++ b/tests/__snapshots__/aztec-1/dlusbs/fast-180.json @@ -5,7 +5,7 @@ "bytes": "bf34e37", "bytesECI": "fc968a9", "text": "3333h3i3jITIT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/dlusbs/fast-270.json b/tests/__snapshots__/aztec-1/dlusbs/fast-270.json index d3c11425..c65be06b 100644 --- a/tests/__snapshots__/aztec-1/dlusbs/fast-270.json +++ b/tests/__snapshots__/aztec-1/dlusbs/fast-270.json @@ -5,7 +5,7 @@ "bytes": "bf34e37", "bytesECI": "fc968a9", "text": "3333h3i3jITIT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/dlusbs/fast-90.json b/tests/__snapshots__/aztec-1/dlusbs/fast-90.json index 59da9814..076cee23 100644 --- a/tests/__snapshots__/aztec-1/dlusbs/fast-90.json +++ b/tests/__snapshots__/aztec-1/dlusbs/fast-90.json @@ -5,7 +5,7 @@ "bytes": "bf34e37", "bytesECI": "fc968a9", "text": "3333h3i3jITIT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/dlusbs/pure-0.json b/tests/__snapshots__/aztec-1/dlusbs/pure-0.json index 9262ce23..c8075f60 100644 --- a/tests/__snapshots__/aztec-1/dlusbs/pure-0.json +++ b/tests/__snapshots__/aztec-1/dlusbs/pure-0.json @@ -5,7 +5,7 @@ "bytes": "bf34e37", "bytesECI": "fc968a9", "text": "3333h3i3jITIT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/dlusbs/slow-0.json b/tests/__snapshots__/aztec-1/dlusbs/slow-0.json index 9262ce23..c8075f60 100644 --- a/tests/__snapshots__/aztec-1/dlusbs/slow-0.json +++ b/tests/__snapshots__/aztec-1/dlusbs/slow-0.json @@ -5,7 +5,7 @@ "bytes": "bf34e37", "bytesECI": "fc968a9", "text": "3333h3i3jITIT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/dlusbs/slow-180.json b/tests/__snapshots__/aztec-1/dlusbs/slow-180.json index 6ea6b8a6..a8cf86a7 100644 --- a/tests/__snapshots__/aztec-1/dlusbs/slow-180.json +++ b/tests/__snapshots__/aztec-1/dlusbs/slow-180.json @@ -5,7 +5,7 @@ "bytes": "bf34e37", "bytesECI": "fc968a9", "text": "3333h3i3jITIT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/dlusbs/slow-270.json b/tests/__snapshots__/aztec-1/dlusbs/slow-270.json index d3c11425..c65be06b 100644 --- a/tests/__snapshots__/aztec-1/dlusbs/slow-270.json +++ b/tests/__snapshots__/aztec-1/dlusbs/slow-270.json @@ -5,7 +5,7 @@ "bytes": "bf34e37", "bytesECI": "fc968a9", "text": "3333h3i3jITIT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/dlusbs/slow-90.json b/tests/__snapshots__/aztec-1/dlusbs/slow-90.json index 59da9814..076cee23 100644 --- a/tests/__snapshots__/aztec-1/dlusbs/slow-90.json +++ b/tests/__snapshots__/aztec-1/dlusbs/slow-90.json @@ -5,7 +5,7 @@ "bytes": "bf34e37", "bytesECI": "fc968a9", "text": "3333h3i3jITIT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-0.json b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-0.json index ce840893..6681cd76 100644 --- a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-0.json +++ b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "b61e457", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-180.json b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-180.json index e29e57bf..f6755325 100644 --- a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-180.json +++ b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "b61e457", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-270.json b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-270.json index f0eb3ff5..392651d6 100644 --- a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-270.json +++ b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-270.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "b61e457", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-90.json b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-90.json index e206b77f..f173c4d0 100644 --- a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-90.json +++ b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/fast-90.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "b61e457", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/pure-0.json b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/pure-0.json index ce840893..6681cd76 100644 --- a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/pure-0.json +++ b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "b61e457", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-0.json b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-0.json index ce840893..6681cd76 100644 --- a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-0.json +++ b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "b61e457", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-180.json b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-180.json index e29e57bf..f6755325 100644 --- a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-180.json +++ b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "b61e457", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-270.json b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-270.json index f0eb3ff5..392651d6 100644 --- a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-270.json +++ b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-270.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "b61e457", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-90.json b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-90.json index e206b77f..f173c4d0 100644 --- a/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-90.json +++ b/tests/__snapshots__/aztec-1/gs1-figure-4.15.1-2-31x31/slow-90.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "b61e457", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/hello/fast-0.json b/tests/__snapshots__/aztec-1/hello/fast-0.json index 4aeee653..c7ef0047 100644 --- a/tests/__snapshots__/aztec-1/hello/fast-0.json +++ b/tests/__snapshots__/aztec-1/hello/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2cf24db", "bytesECI": "0da95b5", "text": "hello", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/hello/fast-180.json b/tests/__snapshots__/aztec-1/hello/fast-180.json index ced9510a..06d7b216 100644 --- a/tests/__snapshots__/aztec-1/hello/fast-180.json +++ b/tests/__snapshots__/aztec-1/hello/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2cf24db", "bytesECI": "0da95b5", "text": "hello", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/hello/fast-270.json b/tests/__snapshots__/aztec-1/hello/fast-270.json index 467b5531..0f96fed7 100644 --- a/tests/__snapshots__/aztec-1/hello/fast-270.json +++ b/tests/__snapshots__/aztec-1/hello/fast-270.json @@ -5,7 +5,7 @@ "bytes": "2cf24db", "bytesECI": "0da95b5", "text": "hello", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/hello/fast-90.json b/tests/__snapshots__/aztec-1/hello/fast-90.json index 3e4353a7..ea119196 100644 --- a/tests/__snapshots__/aztec-1/hello/fast-90.json +++ b/tests/__snapshots__/aztec-1/hello/fast-90.json @@ -5,7 +5,7 @@ "bytes": "2cf24db", "bytesECI": "0da95b5", "text": "hello", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/hello/pure-0.json b/tests/__snapshots__/aztec-1/hello/pure-0.json index 4aeee653..c7ef0047 100644 --- a/tests/__snapshots__/aztec-1/hello/pure-0.json +++ b/tests/__snapshots__/aztec-1/hello/pure-0.json @@ -5,7 +5,7 @@ "bytes": "2cf24db", "bytesECI": "0da95b5", "text": "hello", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/hello/slow-0.json b/tests/__snapshots__/aztec-1/hello/slow-0.json index 4aeee653..c7ef0047 100644 --- a/tests/__snapshots__/aztec-1/hello/slow-0.json +++ b/tests/__snapshots__/aztec-1/hello/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2cf24db", "bytesECI": "0da95b5", "text": "hello", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/hello/slow-180.json b/tests/__snapshots__/aztec-1/hello/slow-180.json index ced9510a..06d7b216 100644 --- a/tests/__snapshots__/aztec-1/hello/slow-180.json +++ b/tests/__snapshots__/aztec-1/hello/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2cf24db", "bytesECI": "0da95b5", "text": "hello", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/hello/slow-270.json b/tests/__snapshots__/aztec-1/hello/slow-270.json index 467b5531..0f96fed7 100644 --- a/tests/__snapshots__/aztec-1/hello/slow-270.json +++ b/tests/__snapshots__/aztec-1/hello/slow-270.json @@ -5,7 +5,7 @@ "bytes": "2cf24db", "bytesECI": "0da95b5", "text": "hello", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/hello/slow-90.json b/tests/__snapshots__/aztec-1/hello/slow-90.json index 3e4353a7..ea119196 100644 --- a/tests/__snapshots__/aztec-1/hello/slow-90.json +++ b/tests/__snapshots__/aztec-1/hello/slow-90.json @@ -5,7 +5,7 @@ "bytes": "2cf24db", "bytesECI": "0da95b5", "text": "hello", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-075x075/fast-0.json b/tests/__snapshots__/aztec-1/lorem-075x075/fast-0.json index 365d8bf5..45921155 100644 --- a/tests/__snapshots__/aztec-1/lorem-075x075/fast-0.json +++ b/tests/__snapshots__/aztec-1/lorem-075x075/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d6b913a", "bytesECI": "ea2c64b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "14" + "version": "14", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-075x075/fast-180.json b/tests/__snapshots__/aztec-1/lorem-075x075/fast-180.json index 345c11ca..17efc664 100644 --- a/tests/__snapshots__/aztec-1/lorem-075x075/fast-180.json +++ b/tests/__snapshots__/aztec-1/lorem-075x075/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d6b913a", "bytesECI": "ea2c64b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "14" + "version": "14", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-075x075/fast-270.json b/tests/__snapshots__/aztec-1/lorem-075x075/fast-270.json index fa810754..63ceae3d 100644 --- a/tests/__snapshots__/aztec-1/lorem-075x075/fast-270.json +++ b/tests/__snapshots__/aztec-1/lorem-075x075/fast-270.json @@ -5,7 +5,7 @@ "bytes": "d6b913a", "bytesECI": "ea2c64b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "14" + "version": "14", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-075x075/fast-90.json b/tests/__snapshots__/aztec-1/lorem-075x075/fast-90.json index 17592a96..f788ac27 100644 --- a/tests/__snapshots__/aztec-1/lorem-075x075/fast-90.json +++ b/tests/__snapshots__/aztec-1/lorem-075x075/fast-90.json @@ -5,7 +5,7 @@ "bytes": "d6b913a", "bytesECI": "ea2c64b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "14" + "version": "14", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-075x075/pure-0.json b/tests/__snapshots__/aztec-1/lorem-075x075/pure-0.json index 365d8bf5..45921155 100644 --- a/tests/__snapshots__/aztec-1/lorem-075x075/pure-0.json +++ b/tests/__snapshots__/aztec-1/lorem-075x075/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d6b913a", "bytesECI": "ea2c64b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "14" + "version": "14", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-075x075/slow-0.json b/tests/__snapshots__/aztec-1/lorem-075x075/slow-0.json index 365d8bf5..45921155 100644 --- a/tests/__snapshots__/aztec-1/lorem-075x075/slow-0.json +++ b/tests/__snapshots__/aztec-1/lorem-075x075/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d6b913a", "bytesECI": "ea2c64b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "14" + "version": "14", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-075x075/slow-180.json b/tests/__snapshots__/aztec-1/lorem-075x075/slow-180.json index 345c11ca..17efc664 100644 --- a/tests/__snapshots__/aztec-1/lorem-075x075/slow-180.json +++ b/tests/__snapshots__/aztec-1/lorem-075x075/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d6b913a", "bytesECI": "ea2c64b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "14" + "version": "14", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-075x075/slow-270.json b/tests/__snapshots__/aztec-1/lorem-075x075/slow-270.json index fa810754..63ceae3d 100644 --- a/tests/__snapshots__/aztec-1/lorem-075x075/slow-270.json +++ b/tests/__snapshots__/aztec-1/lorem-075x075/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d6b913a", "bytesECI": "ea2c64b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "14" + "version": "14", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-075x075/slow-90.json b/tests/__snapshots__/aztec-1/lorem-075x075/slow-90.json index 17592a96..f788ac27 100644 --- a/tests/__snapshots__/aztec-1/lorem-075x075/slow-90.json +++ b/tests/__snapshots__/aztec-1/lorem-075x075/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d6b913a", "bytesECI": "ea2c64b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "14" + "version": "14", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-105x105/fast-0.json b/tests/__snapshots__/aztec-1/lorem-105x105/fast-0.json index 788618b7..9eb05463 100644 --- a/tests/__snapshots__/aztec-1/lorem-105x105/fast-0.json +++ b/tests/__snapshots__/aztec-1/lorem-105x105/fast-0.json @@ -5,7 +5,7 @@ "bytes": "93c10fc", "bytesECI": "cec6683", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "21" + "version": "21", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-105x105/fast-180.json b/tests/__snapshots__/aztec-1/lorem-105x105/fast-180.json index bf63a92d..34e1eef6 100644 --- a/tests/__snapshots__/aztec-1/lorem-105x105/fast-180.json +++ b/tests/__snapshots__/aztec-1/lorem-105x105/fast-180.json @@ -5,7 +5,7 @@ "bytes": "93c10fc", "bytesECI": "cec6683", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "21" + "version": "21", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-105x105/fast-270.json b/tests/__snapshots__/aztec-1/lorem-105x105/fast-270.json index ce27c5b3..2d612a05 100644 --- a/tests/__snapshots__/aztec-1/lorem-105x105/fast-270.json +++ b/tests/__snapshots__/aztec-1/lorem-105x105/fast-270.json @@ -5,7 +5,7 @@ "bytes": "93c10fc", "bytesECI": "cec6683", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "21" + "version": "21", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-105x105/fast-90.json b/tests/__snapshots__/aztec-1/lorem-105x105/fast-90.json index d2908898..d5bc49b4 100644 --- a/tests/__snapshots__/aztec-1/lorem-105x105/fast-90.json +++ b/tests/__snapshots__/aztec-1/lorem-105x105/fast-90.json @@ -5,7 +5,7 @@ "bytes": "93c10fc", "bytesECI": "cec6683", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "21" + "version": "21", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-105x105/pure-0.json b/tests/__snapshots__/aztec-1/lorem-105x105/pure-0.json index 788618b7..9eb05463 100644 --- a/tests/__snapshots__/aztec-1/lorem-105x105/pure-0.json +++ b/tests/__snapshots__/aztec-1/lorem-105x105/pure-0.json @@ -5,7 +5,7 @@ "bytes": "93c10fc", "bytesECI": "cec6683", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "21" + "version": "21", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-105x105/slow-0.json b/tests/__snapshots__/aztec-1/lorem-105x105/slow-0.json index 788618b7..9eb05463 100644 --- a/tests/__snapshots__/aztec-1/lorem-105x105/slow-0.json +++ b/tests/__snapshots__/aztec-1/lorem-105x105/slow-0.json @@ -5,7 +5,7 @@ "bytes": "93c10fc", "bytesECI": "cec6683", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "21" + "version": "21", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-105x105/slow-180.json b/tests/__snapshots__/aztec-1/lorem-105x105/slow-180.json index bf63a92d..34e1eef6 100644 --- a/tests/__snapshots__/aztec-1/lorem-105x105/slow-180.json +++ b/tests/__snapshots__/aztec-1/lorem-105x105/slow-180.json @@ -5,7 +5,7 @@ "bytes": "93c10fc", "bytesECI": "cec6683", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "21" + "version": "21", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-105x105/slow-270.json b/tests/__snapshots__/aztec-1/lorem-105x105/slow-270.json index ce27c5b3..2d612a05 100644 --- a/tests/__snapshots__/aztec-1/lorem-105x105/slow-270.json +++ b/tests/__snapshots__/aztec-1/lorem-105x105/slow-270.json @@ -5,7 +5,7 @@ "bytes": "93c10fc", "bytesECI": "cec6683", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "21" + "version": "21", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-105x105/slow-90.json b/tests/__snapshots__/aztec-1/lorem-105x105/slow-90.json index d2908898..d5bc49b4 100644 --- a/tests/__snapshots__/aztec-1/lorem-105x105/slow-90.json +++ b/tests/__snapshots__/aztec-1/lorem-105x105/slow-90.json @@ -5,7 +5,7 @@ "bytes": "93c10fc", "bytesECI": "cec6683", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "21" + "version": "21", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-131x131/fast-0.json b/tests/__snapshots__/aztec-1/lorem-131x131/fast-0.json index 4007d026..4a76c045 100644 --- a/tests/__snapshots__/aztec-1/lorem-131x131/fast-0.json +++ b/tests/__snapshots__/aztec-1/lorem-131x131/fast-0.json @@ -5,7 +5,7 @@ "bytes": "cdead19", "bytesECI": "899721b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo e.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-131x131/fast-180.json b/tests/__snapshots__/aztec-1/lorem-131x131/fast-180.json index 4ca8c43d..2b61927f 100644 --- a/tests/__snapshots__/aztec-1/lorem-131x131/fast-180.json +++ b/tests/__snapshots__/aztec-1/lorem-131x131/fast-180.json @@ -5,7 +5,7 @@ "bytes": "cdead19", "bytesECI": "899721b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo e.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-131x131/fast-270.json b/tests/__snapshots__/aztec-1/lorem-131x131/fast-270.json index c2b38eac..da5d35ee 100644 --- a/tests/__snapshots__/aztec-1/lorem-131x131/fast-270.json +++ b/tests/__snapshots__/aztec-1/lorem-131x131/fast-270.json @@ -5,7 +5,7 @@ "bytes": "cdead19", "bytesECI": "899721b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo e.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-131x131/fast-90.json b/tests/__snapshots__/aztec-1/lorem-131x131/fast-90.json index d9a8883f..a7a5fa71 100644 --- a/tests/__snapshots__/aztec-1/lorem-131x131/fast-90.json +++ b/tests/__snapshots__/aztec-1/lorem-131x131/fast-90.json @@ -5,7 +5,7 @@ "bytes": "cdead19", "bytesECI": "899721b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo e.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-131x131/pure-0.json b/tests/__snapshots__/aztec-1/lorem-131x131/pure-0.json index 4007d026..4a76c045 100644 --- a/tests/__snapshots__/aztec-1/lorem-131x131/pure-0.json +++ b/tests/__snapshots__/aztec-1/lorem-131x131/pure-0.json @@ -5,7 +5,7 @@ "bytes": "cdead19", "bytesECI": "899721b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo e.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-131x131/slow-0.json b/tests/__snapshots__/aztec-1/lorem-131x131/slow-0.json index 4007d026..4a76c045 100644 --- a/tests/__snapshots__/aztec-1/lorem-131x131/slow-0.json +++ b/tests/__snapshots__/aztec-1/lorem-131x131/slow-0.json @@ -5,7 +5,7 @@ "bytes": "cdead19", "bytesECI": "899721b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo e.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-131x131/slow-180.json b/tests/__snapshots__/aztec-1/lorem-131x131/slow-180.json index 4ca8c43d..2b61927f 100644 --- a/tests/__snapshots__/aztec-1/lorem-131x131/slow-180.json +++ b/tests/__snapshots__/aztec-1/lorem-131x131/slow-180.json @@ -5,7 +5,7 @@ "bytes": "cdead19", "bytesECI": "899721b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo e.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-131x131/slow-270.json b/tests/__snapshots__/aztec-1/lorem-131x131/slow-270.json index c2b38eac..da5d35ee 100644 --- a/tests/__snapshots__/aztec-1/lorem-131x131/slow-270.json +++ b/tests/__snapshots__/aztec-1/lorem-131x131/slow-270.json @@ -5,7 +5,7 @@ "bytes": "cdead19", "bytesECI": "899721b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo e.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-131x131/slow-90.json b/tests/__snapshots__/aztec-1/lorem-131x131/slow-90.json index d9a8883f..a7a5fa71 100644 --- a/tests/__snapshots__/aztec-1/lorem-131x131/slow-90.json +++ b/tests/__snapshots__/aztec-1/lorem-131x131/slow-90.json @@ -5,7 +5,7 @@ "bytes": "cdead19", "bytesECI": "899721b", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo e.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-151x151/fast-0.json b/tests/__snapshots__/aztec-1/lorem-151x151/fast-0.json index aeccb05b..d50e14ac 100644 --- a/tests/__snapshots__/aztec-1/lorem-151x151/fast-0.json +++ b/tests/__snapshots__/aztec-1/lorem-151x151/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d1e5cc0", "bytesECI": "7611120", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-151x151/fast-180.json b/tests/__snapshots__/aztec-1/lorem-151x151/fast-180.json index d367a30f..56da67b5 100644 --- a/tests/__snapshots__/aztec-1/lorem-151x151/fast-180.json +++ b/tests/__snapshots__/aztec-1/lorem-151x151/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d1e5cc0", "bytesECI": "7611120", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-151x151/fast-270.json b/tests/__snapshots__/aztec-1/lorem-151x151/fast-270.json index fe310151..070c43f4 100644 --- a/tests/__snapshots__/aztec-1/lorem-151x151/fast-270.json +++ b/tests/__snapshots__/aztec-1/lorem-151x151/fast-270.json @@ -5,7 +5,7 @@ "bytes": "d1e5cc0", "bytesECI": "7611120", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-151x151/fast-90.json b/tests/__snapshots__/aztec-1/lorem-151x151/fast-90.json index 566e3dd2..122f2f47 100644 --- a/tests/__snapshots__/aztec-1/lorem-151x151/fast-90.json +++ b/tests/__snapshots__/aztec-1/lorem-151x151/fast-90.json @@ -5,7 +5,7 @@ "bytes": "d1e5cc0", "bytesECI": "7611120", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-151x151/pure-0.json b/tests/__snapshots__/aztec-1/lorem-151x151/pure-0.json index aeccb05b..d50e14ac 100644 --- a/tests/__snapshots__/aztec-1/lorem-151x151/pure-0.json +++ b/tests/__snapshots__/aztec-1/lorem-151x151/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d1e5cc0", "bytesECI": "7611120", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-151x151/slow-0.json b/tests/__snapshots__/aztec-1/lorem-151x151/slow-0.json index aeccb05b..d50e14ac 100644 --- a/tests/__snapshots__/aztec-1/lorem-151x151/slow-0.json +++ b/tests/__snapshots__/aztec-1/lorem-151x151/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d1e5cc0", "bytesECI": "7611120", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-151x151/slow-180.json b/tests/__snapshots__/aztec-1/lorem-151x151/slow-180.json index d367a30f..56da67b5 100644 --- a/tests/__snapshots__/aztec-1/lorem-151x151/slow-180.json +++ b/tests/__snapshots__/aztec-1/lorem-151x151/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d1e5cc0", "bytesECI": "7611120", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-151x151/slow-270.json b/tests/__snapshots__/aztec-1/lorem-151x151/slow-270.json index fe310151..070c43f4 100644 --- a/tests/__snapshots__/aztec-1/lorem-151x151/slow-270.json +++ b/tests/__snapshots__/aztec-1/lorem-151x151/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d1e5cc0", "bytesECI": "7611120", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/lorem-151x151/slow-90.json b/tests/__snapshots__/aztec-1/lorem-151x151/slow-90.json index 566e3dd2..122f2f47 100644 --- a/tests/__snapshots__/aztec-1/lorem-151x151/slow-90.json +++ b/tests/__snapshots__/aztec-1/lorem-151x151/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d1e5cc0", "bytesECI": "7611120", "text": "In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tristique ac, p.In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem. Nulla ultrices, elit pellentesque aliquet laoreet, justo erat pulvinar nisi, id elementum sapien dolor et diam. Donec ac nunc sodales elit placerat eleifend. Sed ornare luctus ornare. Vestibulum vehicula, massa at pharetra fringilla, risus justo faucibus erat, nec porttitor nibh tellus sed est. Ut justo diam, lobortis eu tris. In ut magna vel mauris malesuada dictum. Nulla ullamcorper metus quis diam cursus facilisis. Sed mollis quam id justo rutrum sagittis. Donec laoreet rutrum est, nec convallis mauris condimentum sit amet. Phasellus gravida, justo et congue auctor, nisi ipsum viverra erat, eget hendrerit felis turpis nec lorem.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-0.json b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-0.json index 0f00600e..2b5a9d55 100644 --- a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-0.json +++ b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e438471", "bytesECI": "c73080e", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-180.json b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-180.json index c68bb1e0..f0469879 100644 --- a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-180.json +++ b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e438471", "bytesECI": "c73080e", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-270.json b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-270.json index c7eab20e..e9f433d0 100644 --- a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-270.json +++ b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-270.json @@ -5,7 +5,7 @@ "bytes": "e438471", "bytesECI": "c73080e", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-90.json b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-90.json index 90543c47..bb8f6265 100644 --- a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-90.json +++ b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/fast-90.json @@ -5,7 +5,7 @@ "bytes": "e438471", "bytesECI": "c73080e", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/pure-0.json b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/pure-0.json index 0f00600e..2b5a9d55 100644 --- a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/pure-0.json +++ b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e438471", "bytesECI": "c73080e", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-0.json b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-0.json index 0f00600e..2b5a9d55 100644 --- a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-0.json +++ b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e438471", "bytesECI": "c73080e", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-180.json b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-180.json index c68bb1e0..f0469879 100644 --- a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-180.json +++ b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e438471", "bytesECI": "c73080e", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-270.json b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-270.json index c7eab20e..e9f433d0 100644 --- a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-270.json +++ b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-270.json @@ -5,7 +5,7 @@ "bytes": "e438471", "bytesECI": "c73080e", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-90.json b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-90.json index 90543c47..bb8f6265 100644 --- a/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-90.json +++ b/tests/__snapshots__/aztec-1/mixed-ecis-41x41/slow-90.json @@ -5,7 +5,7 @@ "bytes": "e438471", "bytesECI": "c73080e", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/padding_bs/fast-0.json b/tests/__snapshots__/aztec-1/padding_bs/fast-0.json index d1c6229c..a0929c2d 100644 --- a/tests/__snapshots__/aztec-1/padding_bs/fast-0.json +++ b/tests/__snapshots__/aztec-1/padding_bs/fast-0.json @@ -5,7 +5,7 @@ "bytes": "af5c8e3", "bytesECI": "ae85d09", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/padding_bs/fast-180.json b/tests/__snapshots__/aztec-1/padding_bs/fast-180.json index 328ca969..14b8e54e 100644 --- a/tests/__snapshots__/aztec-1/padding_bs/fast-180.json +++ b/tests/__snapshots__/aztec-1/padding_bs/fast-180.json @@ -5,7 +5,7 @@ "bytes": "af5c8e3", "bytesECI": "ae85d09", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/padding_bs/fast-270.json b/tests/__snapshots__/aztec-1/padding_bs/fast-270.json index da4f5c61..23396d3c 100644 --- a/tests/__snapshots__/aztec-1/padding_bs/fast-270.json +++ b/tests/__snapshots__/aztec-1/padding_bs/fast-270.json @@ -5,7 +5,7 @@ "bytes": "af5c8e3", "bytesECI": "ae85d09", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/padding_bs/fast-90.json b/tests/__snapshots__/aztec-1/padding_bs/fast-90.json index 24610858..2f37dc98 100644 --- a/tests/__snapshots__/aztec-1/padding_bs/fast-90.json +++ b/tests/__snapshots__/aztec-1/padding_bs/fast-90.json @@ -5,7 +5,7 @@ "bytes": "af5c8e3", "bytesECI": "ae85d09", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/padding_bs/pure-0.json b/tests/__snapshots__/aztec-1/padding_bs/pure-0.json index d1c6229c..a0929c2d 100644 --- a/tests/__snapshots__/aztec-1/padding_bs/pure-0.json +++ b/tests/__snapshots__/aztec-1/padding_bs/pure-0.json @@ -5,7 +5,7 @@ "bytes": "af5c8e3", "bytesECI": "ae85d09", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/padding_bs/slow-0.json b/tests/__snapshots__/aztec-1/padding_bs/slow-0.json index d1c6229c..a0929c2d 100644 --- a/tests/__snapshots__/aztec-1/padding_bs/slow-0.json +++ b/tests/__snapshots__/aztec-1/padding_bs/slow-0.json @@ -5,7 +5,7 @@ "bytes": "af5c8e3", "bytesECI": "ae85d09", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/padding_bs/slow-180.json b/tests/__snapshots__/aztec-1/padding_bs/slow-180.json index 328ca969..14b8e54e 100644 --- a/tests/__snapshots__/aztec-1/padding_bs/slow-180.json +++ b/tests/__snapshots__/aztec-1/padding_bs/slow-180.json @@ -5,7 +5,7 @@ "bytes": "af5c8e3", "bytesECI": "ae85d09", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/padding_bs/slow-270.json b/tests/__snapshots__/aztec-1/padding_bs/slow-270.json index da4f5c61..23396d3c 100644 --- a/tests/__snapshots__/aztec-1/padding_bs/slow-270.json +++ b/tests/__snapshots__/aztec-1/padding_bs/slow-270.json @@ -5,7 +5,7 @@ "bytes": "af5c8e3", "bytesECI": "ae85d09", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/padding_bs/slow-90.json b/tests/__snapshots__/aztec-1/padding_bs/slow-90.json index 24610858..2f37dc98 100644 --- a/tests/__snapshots__/aztec-1/padding_bs/slow-90.json +++ b/tests/__snapshots__/aztec-1/padding_bs/slow-90.json @@ -5,7 +5,7 @@ "bytes": "af5c8e3", "bytesECI": "ae85d09", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-0.json b/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-0.json index 69f45f0f..0a1a689e 100644 --- a/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-0.json +++ b/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-0.json @@ -5,7 +5,7 @@ "bytes": "bddb16b", "bytesECI": "60bb97b", "text": "KF5::Prison - The KDE barcode generation framework.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-180.json b/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-180.json index ddc91bc7..9a06a87a 100644 --- a/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-180.json +++ b/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-180.json @@ -5,7 +5,7 @@ "bytes": "bddb16b", "bytesECI": "60bb97b", "text": "KF5::Prison - The KDE barcode generation framework.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-270.json b/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-270.json index f9fa9a16..e6f8bb67 100644 --- a/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-270.json +++ b/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-270.json @@ -5,7 +5,7 @@ "bytes": "bddb16b", "bytesECI": "60bb97b", "text": "KF5::Prison - The KDE barcode generation framework.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-90.json b/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-90.json index 8b6a1bb0..c3db0c21 100644 --- a/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-90.json +++ b/tests/__snapshots__/aztec-1/partial-quiet-zone/fast-90.json @@ -5,7 +5,7 @@ "bytes": "bddb16b", "bytesECI": "60bb97b", "text": "KF5::Prison - The KDE barcode generation framework.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/partial-quiet-zone/pure-0.json b/tests/__snapshots__/aztec-1/partial-quiet-zone/pure-0.json index 69f45f0f..0a1a689e 100644 --- a/tests/__snapshots__/aztec-1/partial-quiet-zone/pure-0.json +++ b/tests/__snapshots__/aztec-1/partial-quiet-zone/pure-0.json @@ -5,7 +5,7 @@ "bytes": "bddb16b", "bytesECI": "60bb97b", "text": "KF5::Prison - The KDE barcode generation framework.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-0.json b/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-0.json index 69f45f0f..0a1a689e 100644 --- a/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-0.json +++ b/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-0.json @@ -5,7 +5,7 @@ "bytes": "bddb16b", "bytesECI": "60bb97b", "text": "KF5::Prison - The KDE barcode generation framework.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-180.json b/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-180.json index ddc91bc7..9a06a87a 100644 --- a/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-180.json +++ b/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-180.json @@ -5,7 +5,7 @@ "bytes": "bddb16b", "bytesECI": "60bb97b", "text": "KF5::Prison - The KDE barcode generation framework.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-270.json b/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-270.json index f9fa9a16..e6f8bb67 100644 --- a/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-270.json +++ b/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-270.json @@ -5,7 +5,7 @@ "bytes": "bddb16b", "bytesECI": "60bb97b", "text": "KF5::Prison - The KDE barcode generation framework.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-90.json b/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-90.json index 8b6a1bb0..c3db0c21 100644 --- a/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-90.json +++ b/tests/__snapshots__/aztec-1/partial-quiet-zone/slow-90.json @@ -5,7 +5,7 @@ "bytes": "bddb16b", "bytesECI": "60bb97b", "text": "KF5::Prison - The KDE barcode generation framework.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-0.json b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-0.json index fc39b47c..528eb33e 100644 --- a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-0.json +++ b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-180.json b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-180.json index 7e57ce78..c55c0b76 100644 --- a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-180.json +++ b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-270.json b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-270.json index b6026f35..4dab7d84 100644 --- a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-270.json +++ b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-270.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-90.json b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-90.json index 308dd0d7..53084a34 100644 --- a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-90.json +++ b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/fast-90.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/pure-0.json b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/pure-0.json index fc39b47c..528eb33e 100644 --- a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/pure-0.json +++ b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/pure-0.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-0.json b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-0.json index fc39b47c..528eb33e 100644 --- a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-0.json +++ b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-180.json b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-180.json index 7e57ce78..c55c0b76 100644 --- a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-180.json +++ b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-270.json b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-270.json index b6026f35..4dab7d84 100644 --- a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-270.json +++ b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-270.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-90.json b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-90.json index 308dd0d7..53084a34 100644 --- a/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-90.json +++ b/tests/__snapshots__/aztec-1/readerinit-compact-15x15/slow-90.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-0.json b/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-0.json index 88396336..4e39bd59 100644 --- a/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-0.json +++ b/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-180.json b/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-180.json index 900a3cc8..796cf5ab 100644 --- a/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-180.json +++ b/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-270.json b/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-270.json index e85200e9..663d3fcd 100644 --- a/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-270.json +++ b/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-270.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-90.json b/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-90.json index 8ef71f15..8c48b589 100644 --- a/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-90.json +++ b/tests/__snapshots__/aztec-1/readerinit-full-19x19/fast-90.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-full-19x19/pure-0.json b/tests/__snapshots__/aztec-1/readerinit-full-19x19/pure-0.json index 88396336..4e39bd59 100644 --- a/tests/__snapshots__/aztec-1/readerinit-full-19x19/pure-0.json +++ b/tests/__snapshots__/aztec-1/readerinit-full-19x19/pure-0.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-0.json b/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-0.json index 88396336..4e39bd59 100644 --- a/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-0.json +++ b/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-180.json b/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-180.json index 900a3cc8..796cf5ab 100644 --- a/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-180.json +++ b/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-270.json b/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-270.json index e85200e9..663d3fcd 100644 --- a/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-270.json +++ b/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-270.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-90.json b/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-90.json index 8ef71f15..8c48b589 100644 --- a/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-90.json +++ b/tests/__snapshots__/aztec-1/readerinit-full-19x19/slow-90.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "0afbf53", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-1/fast-0.json b/tests/__snapshots__/aztec-1/rune-1/fast-0.json index 73a66760..6af19ca7 100644 --- a/tests/__snapshots__/aztec-1/rune-1/fast-0.json +++ b/tests/__snapshots__/aztec-1/rune-1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7a3e6b1", "bytesECI": "4b29239", "text": "001", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-1/fast-180.json b/tests/__snapshots__/aztec-1/rune-1/fast-180.json index e2f3c8f7..da1826e5 100644 --- a/tests/__snapshots__/aztec-1/rune-1/fast-180.json +++ b/tests/__snapshots__/aztec-1/rune-1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7a3e6b1", "bytesECI": "4b29239", "text": "001", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-1/fast-270.json b/tests/__snapshots__/aztec-1/rune-1/fast-270.json index 4498210c..98cbae5d 100644 --- a/tests/__snapshots__/aztec-1/rune-1/fast-270.json +++ b/tests/__snapshots__/aztec-1/rune-1/fast-270.json @@ -5,7 +5,7 @@ "bytes": "7a3e6b1", "bytesECI": "4b29239", "text": "001", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-1/fast-90.json b/tests/__snapshots__/aztec-1/rune-1/fast-90.json index 917a1120..7ca73a22 100644 --- a/tests/__snapshots__/aztec-1/rune-1/fast-90.json +++ b/tests/__snapshots__/aztec-1/rune-1/fast-90.json @@ -5,7 +5,7 @@ "bytes": "7a3e6b1", "bytesECI": "4b29239", "text": "001", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-1/pure-0.json b/tests/__snapshots__/aztec-1/rune-1/pure-0.json index 73a66760..6af19ca7 100644 --- a/tests/__snapshots__/aztec-1/rune-1/pure-0.json +++ b/tests/__snapshots__/aztec-1/rune-1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "7a3e6b1", "bytesECI": "4b29239", "text": "001", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-1/slow-0.json b/tests/__snapshots__/aztec-1/rune-1/slow-0.json index 73a66760..6af19ca7 100644 --- a/tests/__snapshots__/aztec-1/rune-1/slow-0.json +++ b/tests/__snapshots__/aztec-1/rune-1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7a3e6b1", "bytesECI": "4b29239", "text": "001", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-1/slow-180.json b/tests/__snapshots__/aztec-1/rune-1/slow-180.json index e2f3c8f7..da1826e5 100644 --- a/tests/__snapshots__/aztec-1/rune-1/slow-180.json +++ b/tests/__snapshots__/aztec-1/rune-1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7a3e6b1", "bytesECI": "4b29239", "text": "001", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-1/slow-270.json b/tests/__snapshots__/aztec-1/rune-1/slow-270.json index 4498210c..98cbae5d 100644 --- a/tests/__snapshots__/aztec-1/rune-1/slow-270.json +++ b/tests/__snapshots__/aztec-1/rune-1/slow-270.json @@ -5,7 +5,7 @@ "bytes": "7a3e6b1", "bytesECI": "4b29239", "text": "001", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-1/slow-90.json b/tests/__snapshots__/aztec-1/rune-1/slow-90.json index 917a1120..7ca73a22 100644 --- a/tests/__snapshots__/aztec-1/rune-1/slow-90.json +++ b/tests/__snapshots__/aztec-1/rune-1/slow-90.json @@ -5,7 +5,7 @@ "bytes": "7a3e6b1", "bytesECI": "4b29239", "text": "001", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-223/fast-0.json b/tests/__snapshots__/aztec-1/rune-223/fast-0.json index b87931fe..96ec4f1e 100644 --- a/tests/__snapshots__/aztec-1/rune-223/fast-0.json +++ b/tests/__snapshots__/aztec-1/rune-223/fast-0.json @@ -5,7 +5,7 @@ "bytes": "56f4da2", "bytesECI": "3f865ef", "text": "223", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-223/fast-180.json b/tests/__snapshots__/aztec-1/rune-223/fast-180.json index 4bbda324..2e3d248e 100644 --- a/tests/__snapshots__/aztec-1/rune-223/fast-180.json +++ b/tests/__snapshots__/aztec-1/rune-223/fast-180.json @@ -5,7 +5,7 @@ "bytes": "56f4da2", "bytesECI": "3f865ef", "text": "223", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-223/fast-270.json b/tests/__snapshots__/aztec-1/rune-223/fast-270.json index a2686653..7318f18c 100644 --- a/tests/__snapshots__/aztec-1/rune-223/fast-270.json +++ b/tests/__snapshots__/aztec-1/rune-223/fast-270.json @@ -5,7 +5,7 @@ "bytes": "56f4da2", "bytesECI": "3f865ef", "text": "223", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-223/fast-90.json b/tests/__snapshots__/aztec-1/rune-223/fast-90.json index 5d60381d..ebcc21c9 100644 --- a/tests/__snapshots__/aztec-1/rune-223/fast-90.json +++ b/tests/__snapshots__/aztec-1/rune-223/fast-90.json @@ -5,7 +5,7 @@ "bytes": "56f4da2", "bytesECI": "3f865ef", "text": "223", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-223/pure-0.json b/tests/__snapshots__/aztec-1/rune-223/pure-0.json index b87931fe..96ec4f1e 100644 --- a/tests/__snapshots__/aztec-1/rune-223/pure-0.json +++ b/tests/__snapshots__/aztec-1/rune-223/pure-0.json @@ -5,7 +5,7 @@ "bytes": "56f4da2", "bytesECI": "3f865ef", "text": "223", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-223/slow-0.json b/tests/__snapshots__/aztec-1/rune-223/slow-0.json index b87931fe..96ec4f1e 100644 --- a/tests/__snapshots__/aztec-1/rune-223/slow-0.json +++ b/tests/__snapshots__/aztec-1/rune-223/slow-0.json @@ -5,7 +5,7 @@ "bytes": "56f4da2", "bytesECI": "3f865ef", "text": "223", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-223/slow-180.json b/tests/__snapshots__/aztec-1/rune-223/slow-180.json index 4bbda324..2e3d248e 100644 --- a/tests/__snapshots__/aztec-1/rune-223/slow-180.json +++ b/tests/__snapshots__/aztec-1/rune-223/slow-180.json @@ -5,7 +5,7 @@ "bytes": "56f4da2", "bytesECI": "3f865ef", "text": "223", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-223/slow-270.json b/tests/__snapshots__/aztec-1/rune-223/slow-270.json index a2686653..7318f18c 100644 --- a/tests/__snapshots__/aztec-1/rune-223/slow-270.json +++ b/tests/__snapshots__/aztec-1/rune-223/slow-270.json @@ -5,7 +5,7 @@ "bytes": "56f4da2", "bytesECI": "3f865ef", "text": "223", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-223/slow-90.json b/tests/__snapshots__/aztec-1/rune-223/slow-90.json index 5d60381d..ebcc21c9 100644 --- a/tests/__snapshots__/aztec-1/rune-223/slow-90.json +++ b/tests/__snapshots__/aztec-1/rune-223/slow-90.json @@ -5,7 +5,7 @@ "bytes": "56f4da2", "bytesECI": "3f865ef", "text": "223", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-64/fast-0.json b/tests/__snapshots__/aztec-1/rune-64/fast-0.json index 160e0994..321e05d5 100644 --- a/tests/__snapshots__/aztec-1/rune-64/fast-0.json +++ b/tests/__snapshots__/aztec-1/rune-64/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5e18d34", "bytesECI": "bdcca42", "text": "064", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-64/fast-180.json b/tests/__snapshots__/aztec-1/rune-64/fast-180.json index e185f8f0..db69a230 100644 --- a/tests/__snapshots__/aztec-1/rune-64/fast-180.json +++ b/tests/__snapshots__/aztec-1/rune-64/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5e18d34", "bytesECI": "bdcca42", "text": "064", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-64/fast-270.json b/tests/__snapshots__/aztec-1/rune-64/fast-270.json index b906f7a9..ced3c97d 100644 --- a/tests/__snapshots__/aztec-1/rune-64/fast-270.json +++ b/tests/__snapshots__/aztec-1/rune-64/fast-270.json @@ -5,7 +5,7 @@ "bytes": "5e18d34", "bytesECI": "bdcca42", "text": "064", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-64/fast-90.json b/tests/__snapshots__/aztec-1/rune-64/fast-90.json index 44eed10d..cab7ba95 100644 --- a/tests/__snapshots__/aztec-1/rune-64/fast-90.json +++ b/tests/__snapshots__/aztec-1/rune-64/fast-90.json @@ -5,7 +5,7 @@ "bytes": "5e18d34", "bytesECI": "bdcca42", "text": "064", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-64/pure-0.json b/tests/__snapshots__/aztec-1/rune-64/pure-0.json index 160e0994..321e05d5 100644 --- a/tests/__snapshots__/aztec-1/rune-64/pure-0.json +++ b/tests/__snapshots__/aztec-1/rune-64/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5e18d34", "bytesECI": "bdcca42", "text": "064", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-64/slow-0.json b/tests/__snapshots__/aztec-1/rune-64/slow-0.json index 160e0994..321e05d5 100644 --- a/tests/__snapshots__/aztec-1/rune-64/slow-0.json +++ b/tests/__snapshots__/aztec-1/rune-64/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5e18d34", "bytesECI": "bdcca42", "text": "064", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-64/slow-180.json b/tests/__snapshots__/aztec-1/rune-64/slow-180.json index e185f8f0..db69a230 100644 --- a/tests/__snapshots__/aztec-1/rune-64/slow-180.json +++ b/tests/__snapshots__/aztec-1/rune-64/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5e18d34", "bytesECI": "bdcca42", "text": "064", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-64/slow-270.json b/tests/__snapshots__/aztec-1/rune-64/slow-270.json index b906f7a9..ced3c97d 100644 --- a/tests/__snapshots__/aztec-1/rune-64/slow-270.json +++ b/tests/__snapshots__/aztec-1/rune-64/slow-270.json @@ -5,7 +5,7 @@ "bytes": "5e18d34", "bytesECI": "bdcca42", "text": "064", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-64/slow-90.json b/tests/__snapshots__/aztec-1/rune-64/slow-90.json index 44eed10d..cab7ba95 100644 --- a/tests/__snapshots__/aztec-1/rune-64/slow-90.json +++ b/tests/__snapshots__/aztec-1/rune-64/slow-90.json @@ -5,7 +5,7 @@ "bytes": "5e18d34", "bytesECI": "bdcca42", "text": "064", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-68/fast-0.json b/tests/__snapshots__/aztec-1/rune-68/fast-0.json index baf9644a..9ef416bf 100644 --- a/tests/__snapshots__/aztec-1/rune-68/fast-0.json +++ b/tests/__snapshots__/aztec-1/rune-68/fast-0.json @@ -5,7 +5,7 @@ "bytes": "28a14b9", "bytesECI": "1cd478b", "text": "068", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-68/fast-180.json b/tests/__snapshots__/aztec-1/rune-68/fast-180.json index b945b721..163dc509 100644 --- a/tests/__snapshots__/aztec-1/rune-68/fast-180.json +++ b/tests/__snapshots__/aztec-1/rune-68/fast-180.json @@ -5,7 +5,7 @@ "bytes": "28a14b9", "bytesECI": "1cd478b", "text": "068", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-68/fast-270.json b/tests/__snapshots__/aztec-1/rune-68/fast-270.json index 991549c2..52dbc0ef 100644 --- a/tests/__snapshots__/aztec-1/rune-68/fast-270.json +++ b/tests/__snapshots__/aztec-1/rune-68/fast-270.json @@ -5,7 +5,7 @@ "bytes": "28a14b9", "bytesECI": "1cd478b", "text": "068", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-68/fast-90.json b/tests/__snapshots__/aztec-1/rune-68/fast-90.json index bdcfa17f..50acdab3 100644 --- a/tests/__snapshots__/aztec-1/rune-68/fast-90.json +++ b/tests/__snapshots__/aztec-1/rune-68/fast-90.json @@ -5,7 +5,7 @@ "bytes": "28a14b9", "bytesECI": "1cd478b", "text": "068", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-68/pure-0.json b/tests/__snapshots__/aztec-1/rune-68/pure-0.json index baf9644a..9ef416bf 100644 --- a/tests/__snapshots__/aztec-1/rune-68/pure-0.json +++ b/tests/__snapshots__/aztec-1/rune-68/pure-0.json @@ -5,7 +5,7 @@ "bytes": "28a14b9", "bytesECI": "1cd478b", "text": "068", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-68/slow-0.json b/tests/__snapshots__/aztec-1/rune-68/slow-0.json index baf9644a..9ef416bf 100644 --- a/tests/__snapshots__/aztec-1/rune-68/slow-0.json +++ b/tests/__snapshots__/aztec-1/rune-68/slow-0.json @@ -5,7 +5,7 @@ "bytes": "28a14b9", "bytesECI": "1cd478b", "text": "068", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-68/slow-180.json b/tests/__snapshots__/aztec-1/rune-68/slow-180.json index b945b721..163dc509 100644 --- a/tests/__snapshots__/aztec-1/rune-68/slow-180.json +++ b/tests/__snapshots__/aztec-1/rune-68/slow-180.json @@ -5,7 +5,7 @@ "bytes": "28a14b9", "bytesECI": "1cd478b", "text": "068", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-68/slow-270.json b/tests/__snapshots__/aztec-1/rune-68/slow-270.json index 991549c2..52dbc0ef 100644 --- a/tests/__snapshots__/aztec-1/rune-68/slow-270.json +++ b/tests/__snapshots__/aztec-1/rune-68/slow-270.json @@ -5,7 +5,7 @@ "bytes": "28a14b9", "bytesECI": "1cd478b", "text": "068", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/rune-68/slow-90.json b/tests/__snapshots__/aztec-1/rune-68/slow-90.json index bdcfa17f..50acdab3 100644 --- a/tests/__snapshots__/aztec-1/rune-68/slow-90.json +++ b/tests/__snapshots__/aztec-1/rune-68/slow-90.json @@ -5,7 +5,7 @@ "bytes": "28a14b9", "bytesECI": "1cd478b", "text": "068", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tableShifts/fast-0.json b/tests/__snapshots__/aztec-1/tableShifts/fast-0.json index 361acac0..f5c48c6e 100644 --- a/tests/__snapshots__/aztec-1/tableShifts/fast-0.json +++ b/tests/__snapshots__/aztec-1/tableShifts/fast-0.json @@ -5,7 +5,7 @@ "bytes": "21a73a0", "bytesECI": "5fa8d72", "text": "AhUUDgdy672;..:8KjHH776JHHn3g. 8lm/%22Nn873R2897ks4JKDJ9JJaza2323!::;09UJRrhDQSKJDKdSJSdskjdslkEdjseze:ze", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tableShifts/fast-180.json b/tests/__snapshots__/aztec-1/tableShifts/fast-180.json index 0b338f06..141758ba 100644 --- a/tests/__snapshots__/aztec-1/tableShifts/fast-180.json +++ b/tests/__snapshots__/aztec-1/tableShifts/fast-180.json @@ -5,7 +5,7 @@ "bytes": "21a73a0", "bytesECI": "5fa8d72", "text": "AhUUDgdy672;..:8KjHH776JHHn3g. 8lm/%22Nn873R2897ks4JKDJ9JJaza2323!::;09UJRrhDQSKJDKdSJSdskjdslkEdjseze:ze", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tableShifts/fast-270.json b/tests/__snapshots__/aztec-1/tableShifts/fast-270.json index ef35187d..4ecc6d4e 100644 --- a/tests/__snapshots__/aztec-1/tableShifts/fast-270.json +++ b/tests/__snapshots__/aztec-1/tableShifts/fast-270.json @@ -5,7 +5,7 @@ "bytes": "21a73a0", "bytesECI": "5fa8d72", "text": "AhUUDgdy672;..:8KjHH776JHHn3g. 8lm/%22Nn873R2897ks4JKDJ9JJaza2323!::;09UJRrhDQSKJDKdSJSdskjdslkEdjseze:ze", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tableShifts/fast-90.json b/tests/__snapshots__/aztec-1/tableShifts/fast-90.json index 3a08958d..e033a8ed 100644 --- a/tests/__snapshots__/aztec-1/tableShifts/fast-90.json +++ b/tests/__snapshots__/aztec-1/tableShifts/fast-90.json @@ -5,7 +5,7 @@ "bytes": "21a73a0", "bytesECI": "5fa8d72", "text": "AhUUDgdy672;..:8KjHH776JHHn3g. 8lm/%22Nn873R2897ks4JKDJ9JJaza2323!::;09UJRrhDQSKJDKdSJSdskjdslkEdjseze:ze", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tableShifts/pure-0.json b/tests/__snapshots__/aztec-1/tableShifts/pure-0.json index 361acac0..f5c48c6e 100644 --- a/tests/__snapshots__/aztec-1/tableShifts/pure-0.json +++ b/tests/__snapshots__/aztec-1/tableShifts/pure-0.json @@ -5,7 +5,7 @@ "bytes": "21a73a0", "bytesECI": "5fa8d72", "text": "AhUUDgdy672;..:8KjHH776JHHn3g. 8lm/%22Nn873R2897ks4JKDJ9JJaza2323!::;09UJRrhDQSKJDKdSJSdskjdslkEdjseze:ze", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tableShifts/slow-0.json b/tests/__snapshots__/aztec-1/tableShifts/slow-0.json index 361acac0..f5c48c6e 100644 --- a/tests/__snapshots__/aztec-1/tableShifts/slow-0.json +++ b/tests/__snapshots__/aztec-1/tableShifts/slow-0.json @@ -5,7 +5,7 @@ "bytes": "21a73a0", "bytesECI": "5fa8d72", "text": "AhUUDgdy672;..:8KjHH776JHHn3g. 8lm/%22Nn873R2897ks4JKDJ9JJaza2323!::;09UJRrhDQSKJDKdSJSdskjdslkEdjseze:ze", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tableShifts/slow-180.json b/tests/__snapshots__/aztec-1/tableShifts/slow-180.json index 0b338f06..141758ba 100644 --- a/tests/__snapshots__/aztec-1/tableShifts/slow-180.json +++ b/tests/__snapshots__/aztec-1/tableShifts/slow-180.json @@ -5,7 +5,7 @@ "bytes": "21a73a0", "bytesECI": "5fa8d72", "text": "AhUUDgdy672;..:8KjHH776JHHn3g. 8lm/%22Nn873R2897ks4JKDJ9JJaza2323!::;09UJRrhDQSKJDKdSJSdskjdslkEdjseze:ze", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tableShifts/slow-270.json b/tests/__snapshots__/aztec-1/tableShifts/slow-270.json index ef35187d..4ecc6d4e 100644 --- a/tests/__snapshots__/aztec-1/tableShifts/slow-270.json +++ b/tests/__snapshots__/aztec-1/tableShifts/slow-270.json @@ -5,7 +5,7 @@ "bytes": "21a73a0", "bytesECI": "5fa8d72", "text": "AhUUDgdy672;..:8KjHH776JHHn3g. 8lm/%22Nn873R2897ks4JKDJ9JJaza2323!::;09UJRrhDQSKJDKdSJSdskjdslkEdjseze:ze", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tableShifts/slow-90.json b/tests/__snapshots__/aztec-1/tableShifts/slow-90.json index 3a08958d..e033a8ed 100644 --- a/tests/__snapshots__/aztec-1/tableShifts/slow-90.json +++ b/tests/__snapshots__/aztec-1/tableShifts/slow-90.json @@ -5,7 +5,7 @@ "bytes": "21a73a0", "bytesECI": "5fa8d72", "text": "AhUUDgdy672;..:8KjHH776JHHn3g. 8lm/%22Nn873R2897ks4JKDJ9JJaza2323!::;09UJRrhDQSKJDKdSJSdskjdslkEdjseze:ze", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tag/fast-0.json b/tests/__snapshots__/aztec-1/tag/fast-0.json index 11533bfb..79a3ea38 100644 --- a/tests/__snapshots__/aztec-1/tag/fast-0.json +++ b/tests/__snapshots__/aztec-1/tag/fast-0.json @@ -5,7 +5,7 @@ "bytes": "849592e", "bytesECI": "d1a3f29", "text": "Ceci est un tag.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tag/fast-180.json b/tests/__snapshots__/aztec-1/tag/fast-180.json index 7a1588d3..02ac5735 100644 --- a/tests/__snapshots__/aztec-1/tag/fast-180.json +++ b/tests/__snapshots__/aztec-1/tag/fast-180.json @@ -5,7 +5,7 @@ "bytes": "849592e", "bytesECI": "d1a3f29", "text": "Ceci est un tag.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tag/fast-270.json b/tests/__snapshots__/aztec-1/tag/fast-270.json index fe78ec1f..4b6ac85d 100644 --- a/tests/__snapshots__/aztec-1/tag/fast-270.json +++ b/tests/__snapshots__/aztec-1/tag/fast-270.json @@ -5,7 +5,7 @@ "bytes": "849592e", "bytesECI": "d1a3f29", "text": "Ceci est un tag.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tag/fast-90.json b/tests/__snapshots__/aztec-1/tag/fast-90.json index 36fd7cf4..be6eb642 100644 --- a/tests/__snapshots__/aztec-1/tag/fast-90.json +++ b/tests/__snapshots__/aztec-1/tag/fast-90.json @@ -5,7 +5,7 @@ "bytes": "849592e", "bytesECI": "d1a3f29", "text": "Ceci est un tag.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tag/pure-0.json b/tests/__snapshots__/aztec-1/tag/pure-0.json index 11533bfb..79a3ea38 100644 --- a/tests/__snapshots__/aztec-1/tag/pure-0.json +++ b/tests/__snapshots__/aztec-1/tag/pure-0.json @@ -5,7 +5,7 @@ "bytes": "849592e", "bytesECI": "d1a3f29", "text": "Ceci est un tag.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tag/slow-0.json b/tests/__snapshots__/aztec-1/tag/slow-0.json index 11533bfb..79a3ea38 100644 --- a/tests/__snapshots__/aztec-1/tag/slow-0.json +++ b/tests/__snapshots__/aztec-1/tag/slow-0.json @@ -5,7 +5,7 @@ "bytes": "849592e", "bytesECI": "d1a3f29", "text": "Ceci est un tag.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tag/slow-180.json b/tests/__snapshots__/aztec-1/tag/slow-180.json index 7a1588d3..02ac5735 100644 --- a/tests/__snapshots__/aztec-1/tag/slow-180.json +++ b/tests/__snapshots__/aztec-1/tag/slow-180.json @@ -5,7 +5,7 @@ "bytes": "849592e", "bytesECI": "d1a3f29", "text": "Ceci est un tag.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tag/slow-270.json b/tests/__snapshots__/aztec-1/tag/slow-270.json index fe78ec1f..4b6ac85d 100644 --- a/tests/__snapshots__/aztec-1/tag/slow-270.json +++ b/tests/__snapshots__/aztec-1/tag/slow-270.json @@ -5,7 +5,7 @@ "bytes": "849592e", "bytesECI": "d1a3f29", "text": "Ceci est un tag.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/tag/slow-90.json b/tests/__snapshots__/aztec-1/tag/slow-90.json index 36fd7cf4..be6eb642 100644 --- a/tests/__snapshots__/aztec-1/tag/slow-90.json +++ b/tests/__snapshots__/aztec-1/tag/slow-90.json @@ -5,7 +5,7 @@ "bytes": "849592e", "bytesECI": "d1a3f29", "text": "Ceci est un tag.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/texte/fast-0.json b/tests/__snapshots__/aztec-1/texte/fast-0.json index 25020cef..8897882e 100644 --- a/tests/__snapshots__/aztec-1/texte/fast-0.json +++ b/tests/__snapshots__/aztec-1/texte/fast-0.json @@ -5,7 +5,7 @@ "bytes": "114f00d", "bytesECI": "67d5f42", "text": "Ceci est un texte!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/texte/fast-180.json b/tests/__snapshots__/aztec-1/texte/fast-180.json index 8f0704d8..e9718100 100644 --- a/tests/__snapshots__/aztec-1/texte/fast-180.json +++ b/tests/__snapshots__/aztec-1/texte/fast-180.json @@ -5,7 +5,7 @@ "bytes": "114f00d", "bytesECI": "67d5f42", "text": "Ceci est un texte!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/texte/fast-270.json b/tests/__snapshots__/aztec-1/texte/fast-270.json index c28d3ef7..9e54a21a 100644 --- a/tests/__snapshots__/aztec-1/texte/fast-270.json +++ b/tests/__snapshots__/aztec-1/texte/fast-270.json @@ -5,7 +5,7 @@ "bytes": "114f00d", "bytesECI": "67d5f42", "text": "Ceci est un texte!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/texte/fast-90.json b/tests/__snapshots__/aztec-1/texte/fast-90.json index 2a49fe9b..2662767f 100644 --- a/tests/__snapshots__/aztec-1/texte/fast-90.json +++ b/tests/__snapshots__/aztec-1/texte/fast-90.json @@ -5,7 +5,7 @@ "bytes": "114f00d", "bytesECI": "67d5f42", "text": "Ceci est un texte!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/texte/pure-0.json b/tests/__snapshots__/aztec-1/texte/pure-0.json index 25020cef..8897882e 100644 --- a/tests/__snapshots__/aztec-1/texte/pure-0.json +++ b/tests/__snapshots__/aztec-1/texte/pure-0.json @@ -5,7 +5,7 @@ "bytes": "114f00d", "bytesECI": "67d5f42", "text": "Ceci est un texte!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/texte/slow-0.json b/tests/__snapshots__/aztec-1/texte/slow-0.json index 25020cef..8897882e 100644 --- a/tests/__snapshots__/aztec-1/texte/slow-0.json +++ b/tests/__snapshots__/aztec-1/texte/slow-0.json @@ -5,7 +5,7 @@ "bytes": "114f00d", "bytesECI": "67d5f42", "text": "Ceci est un texte!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/texte/slow-180.json b/tests/__snapshots__/aztec-1/texte/slow-180.json index 8f0704d8..e9718100 100644 --- a/tests/__snapshots__/aztec-1/texte/slow-180.json +++ b/tests/__snapshots__/aztec-1/texte/slow-180.json @@ -5,7 +5,7 @@ "bytes": "114f00d", "bytesECI": "67d5f42", "text": "Ceci est un texte!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/texte/slow-270.json b/tests/__snapshots__/aztec-1/texte/slow-270.json index c28d3ef7..9e54a21a 100644 --- a/tests/__snapshots__/aztec-1/texte/slow-270.json +++ b/tests/__snapshots__/aztec-1/texte/slow-270.json @@ -5,7 +5,7 @@ "bytes": "114f00d", "bytesECI": "67d5f42", "text": "Ceci est un texte!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-1/texte/slow-90.json b/tests/__snapshots__/aztec-1/texte/slow-90.json index 2a49fe9b..2662767f 100644 --- a/tests/__snapshots__/aztec-1/texte/slow-90.json +++ b/tests/__snapshots__/aztec-1/texte/slow-90.json @@ -5,7 +5,7 @@ "bytes": "114f00d", "bytesECI": "67d5f42", "text": "Ceci est un texte!", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/01/fast-0.json b/tests/__snapshots__/aztec-2/01/fast-0.json index 5311c148..f3b00206 100644 --- a/tests/__snapshots__/aztec-2/01/fast-0.json +++ b/tests/__snapshots__/aztec-2/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/01/fast-180.json b/tests/__snapshots__/aztec-2/01/fast-180.json index 719564fc..568985a2 100644 --- a/tests/__snapshots__/aztec-2/01/fast-180.json +++ b/tests/__snapshots__/aztec-2/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/01/fast-270.json b/tests/__snapshots__/aztec-2/01/fast-270.json index 80d08042..95a02fcf 100644 --- a/tests/__snapshots__/aztec-2/01/fast-270.json +++ b/tests/__snapshots__/aztec-2/01/fast-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/01/fast-90.json b/tests/__snapshots__/aztec-2/01/fast-90.json index 2ef39439..3f95941b 100644 --- a/tests/__snapshots__/aztec-2/01/fast-90.json +++ b/tests/__snapshots__/aztec-2/01/fast-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/01/slow-0.json b/tests/__snapshots__/aztec-2/01/slow-0.json index 5311c148..f3b00206 100644 --- a/tests/__snapshots__/aztec-2/01/slow-0.json +++ b/tests/__snapshots__/aztec-2/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/01/slow-180.json b/tests/__snapshots__/aztec-2/01/slow-180.json index 719564fc..568985a2 100644 --- a/tests/__snapshots__/aztec-2/01/slow-180.json +++ b/tests/__snapshots__/aztec-2/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/01/slow-270.json b/tests/__snapshots__/aztec-2/01/slow-270.json index 80d08042..95a02fcf 100644 --- a/tests/__snapshots__/aztec-2/01/slow-270.json +++ b/tests/__snapshots__/aztec-2/01/slow-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/01/slow-90.json b/tests/__snapshots__/aztec-2/01/slow-90.json index 2ef39439..3f95941b 100644 --- a/tests/__snapshots__/aztec-2/01/slow-90.json +++ b/tests/__snapshots__/aztec-2/01/slow-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/02/fast-0.json b/tests/__snapshots__/aztec-2/02/fast-0.json index 4c7a4ec5..1bf43a9f 100644 --- a/tests/__snapshots__/aztec-2/02/fast-0.json +++ b/tests/__snapshots__/aztec-2/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/02/fast-180.json b/tests/__snapshots__/aztec-2/02/fast-180.json index f56ee76d..9ed46e6f 100644 --- a/tests/__snapshots__/aztec-2/02/fast-180.json +++ b/tests/__snapshots__/aztec-2/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/02/fast-270.json b/tests/__snapshots__/aztec-2/02/fast-270.json index bc08da54..1d0c470d 100644 --- a/tests/__snapshots__/aztec-2/02/fast-270.json +++ b/tests/__snapshots__/aztec-2/02/fast-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/02/fast-90.json b/tests/__snapshots__/aztec-2/02/fast-90.json index 1160ee15..29dea57d 100644 --- a/tests/__snapshots__/aztec-2/02/fast-90.json +++ b/tests/__snapshots__/aztec-2/02/fast-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/02/slow-0.json b/tests/__snapshots__/aztec-2/02/slow-0.json index 4c7a4ec5..1bf43a9f 100644 --- a/tests/__snapshots__/aztec-2/02/slow-0.json +++ b/tests/__snapshots__/aztec-2/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/02/slow-180.json b/tests/__snapshots__/aztec-2/02/slow-180.json index f56ee76d..9ed46e6f 100644 --- a/tests/__snapshots__/aztec-2/02/slow-180.json +++ b/tests/__snapshots__/aztec-2/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/02/slow-270.json b/tests/__snapshots__/aztec-2/02/slow-270.json index bc08da54..1d0c470d 100644 --- a/tests/__snapshots__/aztec-2/02/slow-270.json +++ b/tests/__snapshots__/aztec-2/02/slow-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/02/slow-90.json b/tests/__snapshots__/aztec-2/02/slow-90.json index 1160ee15..29dea57d 100644 --- a/tests/__snapshots__/aztec-2/02/slow-90.json +++ b/tests/__snapshots__/aztec-2/02/slow-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/03/fast-0.json b/tests/__snapshots__/aztec-2/03/fast-0.json index 8ddb492e..463b03ba 100644 --- a/tests/__snapshots__/aztec-2/03/fast-0.json +++ b/tests/__snapshots__/aztec-2/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/03/fast-180.json b/tests/__snapshots__/aztec-2/03/fast-180.json index 3269db7d..1247e21f 100644 --- a/tests/__snapshots__/aztec-2/03/fast-180.json +++ b/tests/__snapshots__/aztec-2/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/03/fast-270.json b/tests/__snapshots__/aztec-2/03/fast-270.json index 209580e8..dc6e50a6 100644 --- a/tests/__snapshots__/aztec-2/03/fast-270.json +++ b/tests/__snapshots__/aztec-2/03/fast-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/03/fast-90.json b/tests/__snapshots__/aztec-2/03/fast-90.json index c63ca8e2..120032f4 100644 --- a/tests/__snapshots__/aztec-2/03/fast-90.json +++ b/tests/__snapshots__/aztec-2/03/fast-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/03/slow-0.json b/tests/__snapshots__/aztec-2/03/slow-0.json index 8ddb492e..463b03ba 100644 --- a/tests/__snapshots__/aztec-2/03/slow-0.json +++ b/tests/__snapshots__/aztec-2/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/03/slow-180.json b/tests/__snapshots__/aztec-2/03/slow-180.json index 3269db7d..1247e21f 100644 --- a/tests/__snapshots__/aztec-2/03/slow-180.json +++ b/tests/__snapshots__/aztec-2/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/03/slow-270.json b/tests/__snapshots__/aztec-2/03/slow-270.json index 209580e8..dc6e50a6 100644 --- a/tests/__snapshots__/aztec-2/03/slow-270.json +++ b/tests/__snapshots__/aztec-2/03/slow-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/03/slow-90.json b/tests/__snapshots__/aztec-2/03/slow-90.json index c63ca8e2..120032f4 100644 --- a/tests/__snapshots__/aztec-2/03/slow-90.json +++ b/tests/__snapshots__/aztec-2/03/slow-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/04/fast-0.json b/tests/__snapshots__/aztec-2/04/fast-0.json index 4923c625..970ae696 100644 --- a/tests/__snapshots__/aztec-2/04/fast-0.json +++ b/tests/__snapshots__/aztec-2/04/fast-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/04/fast-180.json b/tests/__snapshots__/aztec-2/04/fast-180.json index 43cc07e5..cf0660b7 100644 --- a/tests/__snapshots__/aztec-2/04/fast-180.json +++ b/tests/__snapshots__/aztec-2/04/fast-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/04/fast-270.json b/tests/__snapshots__/aztec-2/04/fast-270.json index 0bbfbce3..96531217 100644 --- a/tests/__snapshots__/aztec-2/04/fast-270.json +++ b/tests/__snapshots__/aztec-2/04/fast-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/04/fast-90.json b/tests/__snapshots__/aztec-2/04/fast-90.json index cba4258b..5be687fe 100644 --- a/tests/__snapshots__/aztec-2/04/fast-90.json +++ b/tests/__snapshots__/aztec-2/04/fast-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/04/slow-0.json b/tests/__snapshots__/aztec-2/04/slow-0.json index 4923c625..970ae696 100644 --- a/tests/__snapshots__/aztec-2/04/slow-0.json +++ b/tests/__snapshots__/aztec-2/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/04/slow-180.json b/tests/__snapshots__/aztec-2/04/slow-180.json index 43cc07e5..cf0660b7 100644 --- a/tests/__snapshots__/aztec-2/04/slow-180.json +++ b/tests/__snapshots__/aztec-2/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/04/slow-270.json b/tests/__snapshots__/aztec-2/04/slow-270.json index 0bbfbce3..96531217 100644 --- a/tests/__snapshots__/aztec-2/04/slow-270.json +++ b/tests/__snapshots__/aztec-2/04/slow-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/04/slow-90.json b/tests/__snapshots__/aztec-2/04/slow-90.json index cba4258b..5be687fe 100644 --- a/tests/__snapshots__/aztec-2/04/slow-90.json +++ b/tests/__snapshots__/aztec-2/04/slow-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/05/fast-0.json b/tests/__snapshots__/aztec-2/05/fast-0.json index ea22365d..7e0a4b2f 100644 --- a/tests/__snapshots__/aztec-2/05/fast-0.json +++ b/tests/__snapshots__/aztec-2/05/fast-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/05/fast-180.json b/tests/__snapshots__/aztec-2/05/fast-180.json index accdc3c5..665c93c2 100644 --- a/tests/__snapshots__/aztec-2/05/fast-180.json +++ b/tests/__snapshots__/aztec-2/05/fast-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/05/fast-270.json b/tests/__snapshots__/aztec-2/05/fast-270.json index 68eba7f9..921dc805 100644 --- a/tests/__snapshots__/aztec-2/05/fast-270.json +++ b/tests/__snapshots__/aztec-2/05/fast-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/05/fast-90.json b/tests/__snapshots__/aztec-2/05/fast-90.json index dbf724a2..382dc338 100644 --- a/tests/__snapshots__/aztec-2/05/fast-90.json +++ b/tests/__snapshots__/aztec-2/05/fast-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/05/slow-0.json b/tests/__snapshots__/aztec-2/05/slow-0.json index ea22365d..7e0a4b2f 100644 --- a/tests/__snapshots__/aztec-2/05/slow-0.json +++ b/tests/__snapshots__/aztec-2/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/05/slow-180.json b/tests/__snapshots__/aztec-2/05/slow-180.json index accdc3c5..665c93c2 100644 --- a/tests/__snapshots__/aztec-2/05/slow-180.json +++ b/tests/__snapshots__/aztec-2/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/05/slow-270.json b/tests/__snapshots__/aztec-2/05/slow-270.json index 68eba7f9..921dc805 100644 --- a/tests/__snapshots__/aztec-2/05/slow-270.json +++ b/tests/__snapshots__/aztec-2/05/slow-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/05/slow-90.json b/tests/__snapshots__/aztec-2/05/slow-90.json index dbf724a2..382dc338 100644 --- a/tests/__snapshots__/aztec-2/05/slow-90.json +++ b/tests/__snapshots__/aztec-2/05/slow-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/06/fast-0.json b/tests/__snapshots__/aztec-2/06/fast-0.json index 5b2fd73e..db001964 100644 --- a/tests/__snapshots__/aztec-2/06/fast-0.json +++ b/tests/__snapshots__/aztec-2/06/fast-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/06/fast-180.json b/tests/__snapshots__/aztec-2/06/fast-180.json index 2a3549d5..9ada3a80 100644 --- a/tests/__snapshots__/aztec-2/06/fast-180.json +++ b/tests/__snapshots__/aztec-2/06/fast-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/06/fast-270.json b/tests/__snapshots__/aztec-2/06/fast-270.json index e1f1f88b..0ce681cb 100644 --- a/tests/__snapshots__/aztec-2/06/fast-270.json +++ b/tests/__snapshots__/aztec-2/06/fast-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/06/fast-90.json b/tests/__snapshots__/aztec-2/06/fast-90.json index 1002fe07..6a908ded 100644 --- a/tests/__snapshots__/aztec-2/06/fast-90.json +++ b/tests/__snapshots__/aztec-2/06/fast-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/06/slow-0.json b/tests/__snapshots__/aztec-2/06/slow-0.json index 5b2fd73e..db001964 100644 --- a/tests/__snapshots__/aztec-2/06/slow-0.json +++ b/tests/__snapshots__/aztec-2/06/slow-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/06/slow-180.json b/tests/__snapshots__/aztec-2/06/slow-180.json index 2a3549d5..9ada3a80 100644 --- a/tests/__snapshots__/aztec-2/06/slow-180.json +++ b/tests/__snapshots__/aztec-2/06/slow-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/06/slow-270.json b/tests/__snapshots__/aztec-2/06/slow-270.json index e1f1f88b..0ce681cb 100644 --- a/tests/__snapshots__/aztec-2/06/slow-270.json +++ b/tests/__snapshots__/aztec-2/06/slow-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/06/slow-90.json b/tests/__snapshots__/aztec-2/06/slow-90.json index 1002fe07..6a908ded 100644 --- a/tests/__snapshots__/aztec-2/06/slow-90.json +++ b/tests/__snapshots__/aztec-2/06/slow-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/07/fast-0.json b/tests/__snapshots__/aztec-2/07/fast-0.json index a21fbccd..fa77c4aa 100644 --- a/tests/__snapshots__/aztec-2/07/fast-0.json +++ b/tests/__snapshots__/aztec-2/07/fast-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/07/fast-180.json b/tests/__snapshots__/aztec-2/07/fast-180.json index e81e217e..676bec3a 100644 --- a/tests/__snapshots__/aztec-2/07/fast-180.json +++ b/tests/__snapshots__/aztec-2/07/fast-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/07/fast-270.json b/tests/__snapshots__/aztec-2/07/fast-270.json index ae34f078..265e770f 100644 --- a/tests/__snapshots__/aztec-2/07/fast-270.json +++ b/tests/__snapshots__/aztec-2/07/fast-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/07/fast-90.json b/tests/__snapshots__/aztec-2/07/fast-90.json index 5098b957..55cfb9bd 100644 --- a/tests/__snapshots__/aztec-2/07/fast-90.json +++ b/tests/__snapshots__/aztec-2/07/fast-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/07/slow-0.json b/tests/__snapshots__/aztec-2/07/slow-0.json index a21fbccd..fa77c4aa 100644 --- a/tests/__snapshots__/aztec-2/07/slow-0.json +++ b/tests/__snapshots__/aztec-2/07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/07/slow-180.json b/tests/__snapshots__/aztec-2/07/slow-180.json index e81e217e..676bec3a 100644 --- a/tests/__snapshots__/aztec-2/07/slow-180.json +++ b/tests/__snapshots__/aztec-2/07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/07/slow-270.json b/tests/__snapshots__/aztec-2/07/slow-270.json index ae34f078..265e770f 100644 --- a/tests/__snapshots__/aztec-2/07/slow-270.json +++ b/tests/__snapshots__/aztec-2/07/slow-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/07/slow-90.json b/tests/__snapshots__/aztec-2/07/slow-90.json index 5098b957..55cfb9bd 100644 --- a/tests/__snapshots__/aztec-2/07/slow-90.json +++ b/tests/__snapshots__/aztec-2/07/slow-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/08/fast-0.json b/tests/__snapshots__/aztec-2/08/fast-0.json index bdbcfaf7..4b5d02f1 100644 --- a/tests/__snapshots__/aztec-2/08/fast-0.json +++ b/tests/__snapshots__/aztec-2/08/fast-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/08/fast-180.json b/tests/__snapshots__/aztec-2/08/fast-180.json index a0d162b5..28713aed 100644 --- a/tests/__snapshots__/aztec-2/08/fast-180.json +++ b/tests/__snapshots__/aztec-2/08/fast-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/08/fast-270.json b/tests/__snapshots__/aztec-2/08/fast-270.json index c1f619e1..ed25c64f 100644 --- a/tests/__snapshots__/aztec-2/08/fast-270.json +++ b/tests/__snapshots__/aztec-2/08/fast-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/08/fast-90.json b/tests/__snapshots__/aztec-2/08/fast-90.json index f29163a0..bfd22cfa 100644 --- a/tests/__snapshots__/aztec-2/08/fast-90.json +++ b/tests/__snapshots__/aztec-2/08/fast-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/08/slow-0.json b/tests/__snapshots__/aztec-2/08/slow-0.json index bdbcfaf7..4b5d02f1 100644 --- a/tests/__snapshots__/aztec-2/08/slow-0.json +++ b/tests/__snapshots__/aztec-2/08/slow-0.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/08/slow-180.json b/tests/__snapshots__/aztec-2/08/slow-180.json index a0d162b5..28713aed 100644 --- a/tests/__snapshots__/aztec-2/08/slow-180.json +++ b/tests/__snapshots__/aztec-2/08/slow-180.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/08/slow-270.json b/tests/__snapshots__/aztec-2/08/slow-270.json index c1f619e1..ed25c64f 100644 --- a/tests/__snapshots__/aztec-2/08/slow-270.json +++ b/tests/__snapshots__/aztec-2/08/slow-270.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/08/slow-90.json b/tests/__snapshots__/aztec-2/08/slow-90.json index f29163a0..bfd22cfa 100644 --- a/tests/__snapshots__/aztec-2/08/slow-90.json +++ b/tests/__snapshots__/aztec-2/08/slow-90.json @@ -5,7 +5,7 @@ "bytes": "55ed3ad", "bytesECI": "d5af4fa", "text": "This is a real world Aztec barcode test.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/09/fast-0.json b/tests/__snapshots__/aztec-2/09/fast-0.json index 7053563d..685f6851 100644 --- a/tests/__snapshots__/aztec-2/09/fast-0.json +++ b/tests/__snapshots__/aztec-2/09/fast-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/09/fast-180.json b/tests/__snapshots__/aztec-2/09/fast-180.json index 25cdbe4e..e80c1fb7 100644 --- a/tests/__snapshots__/aztec-2/09/fast-180.json +++ b/tests/__snapshots__/aztec-2/09/fast-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/09/fast-270.json b/tests/__snapshots__/aztec-2/09/fast-270.json index 0fafe37f..9abe8ddc 100644 --- a/tests/__snapshots__/aztec-2/09/fast-270.json +++ b/tests/__snapshots__/aztec-2/09/fast-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/09/fast-90.json b/tests/__snapshots__/aztec-2/09/fast-90.json index 05285587..2bcec13b 100644 --- a/tests/__snapshots__/aztec-2/09/fast-90.json +++ b/tests/__snapshots__/aztec-2/09/fast-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/09/slow-0.json b/tests/__snapshots__/aztec-2/09/slow-0.json index 7053563d..685f6851 100644 --- a/tests/__snapshots__/aztec-2/09/slow-0.json +++ b/tests/__snapshots__/aztec-2/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/09/slow-180.json b/tests/__snapshots__/aztec-2/09/slow-180.json index 25cdbe4e..e80c1fb7 100644 --- a/tests/__snapshots__/aztec-2/09/slow-180.json +++ b/tests/__snapshots__/aztec-2/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/09/slow-270.json b/tests/__snapshots__/aztec-2/09/slow-270.json index 0fafe37f..9abe8ddc 100644 --- a/tests/__snapshots__/aztec-2/09/slow-270.json +++ b/tests/__snapshots__/aztec-2/09/slow-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/09/slow-90.json b/tests/__snapshots__/aztec-2/09/slow-90.json index 05285587..2bcec13b 100644 --- a/tests/__snapshots__/aztec-2/09/slow-90.json +++ b/tests/__snapshots__/aztec-2/09/slow-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/10/fast-0.json b/tests/__snapshots__/aztec-2/10/fast-0.json index 46c9a931..44aaadc9 100644 --- a/tests/__snapshots__/aztec-2/10/fast-0.json +++ b/tests/__snapshots__/aztec-2/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/10/fast-180.json b/tests/__snapshots__/aztec-2/10/fast-180.json index 0033b429..03090c84 100644 --- a/tests/__snapshots__/aztec-2/10/fast-180.json +++ b/tests/__snapshots__/aztec-2/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/10/fast-270.json b/tests/__snapshots__/aztec-2/10/fast-270.json index 4694ce57..f42b8a8c 100644 --- a/tests/__snapshots__/aztec-2/10/fast-270.json +++ b/tests/__snapshots__/aztec-2/10/fast-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/10/fast-90.json b/tests/__snapshots__/aztec-2/10/fast-90.json index 337326c2..198d4237 100644 --- a/tests/__snapshots__/aztec-2/10/fast-90.json +++ b/tests/__snapshots__/aztec-2/10/fast-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/10/slow-0.json b/tests/__snapshots__/aztec-2/10/slow-0.json index 46c9a931..44aaadc9 100644 --- a/tests/__snapshots__/aztec-2/10/slow-0.json +++ b/tests/__snapshots__/aztec-2/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/10/slow-180.json b/tests/__snapshots__/aztec-2/10/slow-180.json index 0033b429..03090c84 100644 --- a/tests/__snapshots__/aztec-2/10/slow-180.json +++ b/tests/__snapshots__/aztec-2/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/10/slow-270.json b/tests/__snapshots__/aztec-2/10/slow-270.json index 3b5e2e59..50ff5ecf 100644 --- a/tests/__snapshots__/aztec-2/10/slow-270.json +++ b/tests/__snapshots__/aztec-2/10/slow-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/10/slow-90.json b/tests/__snapshots__/aztec-2/10/slow-90.json index 337326c2..198d4237 100644 --- a/tests/__snapshots__/aztec-2/10/slow-90.json +++ b/tests/__snapshots__/aztec-2/10/slow-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/11/fast-0.json b/tests/__snapshots__/aztec-2/11/fast-0.json index e5951851..18c2875f 100644 --- a/tests/__snapshots__/aztec-2/11/fast-0.json +++ b/tests/__snapshots__/aztec-2/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/11/fast-180.json b/tests/__snapshots__/aztec-2/11/fast-180.json index 8e1e6bdd..0310a2a4 100644 --- a/tests/__snapshots__/aztec-2/11/fast-180.json +++ b/tests/__snapshots__/aztec-2/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/11/fast-270.json b/tests/__snapshots__/aztec-2/11/fast-270.json index bcecd494..b6dab636 100644 --- a/tests/__snapshots__/aztec-2/11/fast-270.json +++ b/tests/__snapshots__/aztec-2/11/fast-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/11/fast-90.json b/tests/__snapshots__/aztec-2/11/fast-90.json index 38677720..3960a56f 100644 --- a/tests/__snapshots__/aztec-2/11/fast-90.json +++ b/tests/__snapshots__/aztec-2/11/fast-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/11/slow-0.json b/tests/__snapshots__/aztec-2/11/slow-0.json index e5951851..18c2875f 100644 --- a/tests/__snapshots__/aztec-2/11/slow-0.json +++ b/tests/__snapshots__/aztec-2/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/11/slow-180.json b/tests/__snapshots__/aztec-2/11/slow-180.json index 8e1e6bdd..0310a2a4 100644 --- a/tests/__snapshots__/aztec-2/11/slow-180.json +++ b/tests/__snapshots__/aztec-2/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/11/slow-270.json b/tests/__snapshots__/aztec-2/11/slow-270.json index bcecd494..b6dab636 100644 --- a/tests/__snapshots__/aztec-2/11/slow-270.json +++ b/tests/__snapshots__/aztec-2/11/slow-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/11/slow-90.json b/tests/__snapshots__/aztec-2/11/slow-90.json index 38677720..3960a56f 100644 --- a/tests/__snapshots__/aztec-2/11/slow-90.json +++ b/tests/__snapshots__/aztec-2/11/slow-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/12/fast-0.json b/tests/__snapshots__/aztec-2/12/fast-0.json index 7afd9d41..2070641d 100644 --- a/tests/__snapshots__/aztec-2/12/fast-0.json +++ b/tests/__snapshots__/aztec-2/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/12/fast-180.json b/tests/__snapshots__/aztec-2/12/fast-180.json index 9e91de56..46d947c6 100644 --- a/tests/__snapshots__/aztec-2/12/fast-180.json +++ b/tests/__snapshots__/aztec-2/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/12/fast-270.json b/tests/__snapshots__/aztec-2/12/fast-270.json index 5d01b3ed..5ddeac27 100644 --- a/tests/__snapshots__/aztec-2/12/fast-270.json +++ b/tests/__snapshots__/aztec-2/12/fast-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/12/fast-90.json b/tests/__snapshots__/aztec-2/12/fast-90.json index 8397342d..567e025e 100644 --- a/tests/__snapshots__/aztec-2/12/fast-90.json +++ b/tests/__snapshots__/aztec-2/12/fast-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/12/slow-0.json b/tests/__snapshots__/aztec-2/12/slow-0.json index 7afd9d41..2070641d 100644 --- a/tests/__snapshots__/aztec-2/12/slow-0.json +++ b/tests/__snapshots__/aztec-2/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/12/slow-180.json b/tests/__snapshots__/aztec-2/12/slow-180.json index 9e91de56..46d947c6 100644 --- a/tests/__snapshots__/aztec-2/12/slow-180.json +++ b/tests/__snapshots__/aztec-2/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/12/slow-270.json b/tests/__snapshots__/aztec-2/12/slow-270.json index 5d01b3ed..5ddeac27 100644 --- a/tests/__snapshots__/aztec-2/12/slow-270.json +++ b/tests/__snapshots__/aztec-2/12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/12/slow-90.json b/tests/__snapshots__/aztec-2/12/slow-90.json index 8397342d..567e025e 100644 --- a/tests/__snapshots__/aztec-2/12/slow-90.json +++ b/tests/__snapshots__/aztec-2/12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/13/fast-0.json b/tests/__snapshots__/aztec-2/13/fast-0.json index 25d397af..033da6a2 100644 --- a/tests/__snapshots__/aztec-2/13/fast-0.json +++ b/tests/__snapshots__/aztec-2/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/13/fast-180.json b/tests/__snapshots__/aztec-2/13/fast-180.json index 320c3970..9d97cb1c 100644 --- a/tests/__snapshots__/aztec-2/13/fast-180.json +++ b/tests/__snapshots__/aztec-2/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/13/fast-270.json b/tests/__snapshots__/aztec-2/13/fast-270.json index a0402aa2..63e7d0bc 100644 --- a/tests/__snapshots__/aztec-2/13/fast-270.json +++ b/tests/__snapshots__/aztec-2/13/fast-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/13/fast-90.json b/tests/__snapshots__/aztec-2/13/fast-90.json index 3ffffafe..8ed96f52 100644 --- a/tests/__snapshots__/aztec-2/13/fast-90.json +++ b/tests/__snapshots__/aztec-2/13/fast-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/13/slow-0.json b/tests/__snapshots__/aztec-2/13/slow-0.json index 25d397af..033da6a2 100644 --- a/tests/__snapshots__/aztec-2/13/slow-0.json +++ b/tests/__snapshots__/aztec-2/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/13/slow-180.json b/tests/__snapshots__/aztec-2/13/slow-180.json index 320c3970..9d97cb1c 100644 --- a/tests/__snapshots__/aztec-2/13/slow-180.json +++ b/tests/__snapshots__/aztec-2/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/13/slow-270.json b/tests/__snapshots__/aztec-2/13/slow-270.json index a0402aa2..63e7d0bc 100644 --- a/tests/__snapshots__/aztec-2/13/slow-270.json +++ b/tests/__snapshots__/aztec-2/13/slow-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/13/slow-90.json b/tests/__snapshots__/aztec-2/13/slow-90.json index 3ffffafe..8ed96f52 100644 --- a/tests/__snapshots__/aztec-2/13/slow-90.json +++ b/tests/__snapshots__/aztec-2/13/slow-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/14/fast-0.json b/tests/__snapshots__/aztec-2/14/fast-0.json index 9f0ece53..76d60381 100644 --- a/tests/__snapshots__/aztec-2/14/fast-0.json +++ b/tests/__snapshots__/aztec-2/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/14/fast-180.json b/tests/__snapshots__/aztec-2/14/fast-180.json index c0a8e47b..27e0251e 100644 --- a/tests/__snapshots__/aztec-2/14/fast-180.json +++ b/tests/__snapshots__/aztec-2/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/14/fast-270.json b/tests/__snapshots__/aztec-2/14/fast-270.json index ad76ec93..abf6eac9 100644 --- a/tests/__snapshots__/aztec-2/14/fast-270.json +++ b/tests/__snapshots__/aztec-2/14/fast-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/14/fast-90.json b/tests/__snapshots__/aztec-2/14/fast-90.json index 4ccbe023..2b4f1f9e 100644 --- a/tests/__snapshots__/aztec-2/14/fast-90.json +++ b/tests/__snapshots__/aztec-2/14/fast-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/14/slow-0.json b/tests/__snapshots__/aztec-2/14/slow-0.json index 9f0ece53..76d60381 100644 --- a/tests/__snapshots__/aztec-2/14/slow-0.json +++ b/tests/__snapshots__/aztec-2/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/14/slow-180.json b/tests/__snapshots__/aztec-2/14/slow-180.json index c0a8e47b..27e0251e 100644 --- a/tests/__snapshots__/aztec-2/14/slow-180.json +++ b/tests/__snapshots__/aztec-2/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/14/slow-270.json b/tests/__snapshots__/aztec-2/14/slow-270.json index ad76ec93..abf6eac9 100644 --- a/tests/__snapshots__/aztec-2/14/slow-270.json +++ b/tests/__snapshots__/aztec-2/14/slow-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/14/slow-90.json b/tests/__snapshots__/aztec-2/14/slow-90.json index 4ccbe023..2b4f1f9e 100644 --- a/tests/__snapshots__/aztec-2/14/slow-90.json +++ b/tests/__snapshots__/aztec-2/14/slow-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/15/fast-0.json b/tests/__snapshots__/aztec-2/15/fast-0.json index ab5daf37..dd4b25b7 100644 --- a/tests/__snapshots__/aztec-2/15/fast-0.json +++ b/tests/__snapshots__/aztec-2/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/15/fast-180.json b/tests/__snapshots__/aztec-2/15/fast-180.json index 87779944..8edde718 100644 --- a/tests/__snapshots__/aztec-2/15/fast-180.json +++ b/tests/__snapshots__/aztec-2/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/15/fast-270.json b/tests/__snapshots__/aztec-2/15/fast-270.json index 4b07d397..85d1e473 100644 --- a/tests/__snapshots__/aztec-2/15/fast-270.json +++ b/tests/__snapshots__/aztec-2/15/fast-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/15/fast-90.json b/tests/__snapshots__/aztec-2/15/fast-90.json index f695d83e..1646e8c6 100644 --- a/tests/__snapshots__/aztec-2/15/fast-90.json +++ b/tests/__snapshots__/aztec-2/15/fast-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/15/slow-0.json b/tests/__snapshots__/aztec-2/15/slow-0.json index ab5daf37..dd4b25b7 100644 --- a/tests/__snapshots__/aztec-2/15/slow-0.json +++ b/tests/__snapshots__/aztec-2/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/15/slow-180.json b/tests/__snapshots__/aztec-2/15/slow-180.json index 87779944..8edde718 100644 --- a/tests/__snapshots__/aztec-2/15/slow-180.json +++ b/tests/__snapshots__/aztec-2/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/15/slow-270.json b/tests/__snapshots__/aztec-2/15/slow-270.json index 4b07d397..85d1e473 100644 --- a/tests/__snapshots__/aztec-2/15/slow-270.json +++ b/tests/__snapshots__/aztec-2/15/slow-270.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/15/slow-90.json b/tests/__snapshots__/aztec-2/15/slow-90.json index f695d83e..1646e8c6 100644 --- a/tests/__snapshots__/aztec-2/15/slow-90.json +++ b/tests/__snapshots__/aztec-2/15/slow-90.json @@ -5,7 +5,7 @@ "bytes": "150bd79", "bytesECI": "5e4ff84", "text": "mailto:zxing@googlegroups.com", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/16/fast-0.json b/tests/__snapshots__/aztec-2/16/fast-0.json index ee1fae24..3594609b 100644 --- a/tests/__snapshots__/aztec-2/16/fast-0.json +++ b/tests/__snapshots__/aztec-2/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/16/fast-180.json b/tests/__snapshots__/aztec-2/16/fast-180.json index 8a6f2c61..d2d710ac 100644 --- a/tests/__snapshots__/aztec-2/16/fast-180.json +++ b/tests/__snapshots__/aztec-2/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/16/fast-270.json b/tests/__snapshots__/aztec-2/16/fast-270.json index 24891813..373e1234 100644 --- a/tests/__snapshots__/aztec-2/16/fast-270.json +++ b/tests/__snapshots__/aztec-2/16/fast-270.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/16/fast-90.json b/tests/__snapshots__/aztec-2/16/fast-90.json index a2d5879d..0d7acea8 100644 --- a/tests/__snapshots__/aztec-2/16/fast-90.json +++ b/tests/__snapshots__/aztec-2/16/fast-90.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/16/slow-0.json b/tests/__snapshots__/aztec-2/16/slow-0.json index ee1fae24..3594609b 100644 --- a/tests/__snapshots__/aztec-2/16/slow-0.json +++ b/tests/__snapshots__/aztec-2/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/16/slow-180.json b/tests/__snapshots__/aztec-2/16/slow-180.json index 8a6f2c61..d2d710ac 100644 --- a/tests/__snapshots__/aztec-2/16/slow-180.json +++ b/tests/__snapshots__/aztec-2/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/16/slow-270.json b/tests/__snapshots__/aztec-2/16/slow-270.json index 24891813..373e1234 100644 --- a/tests/__snapshots__/aztec-2/16/slow-270.json +++ b/tests/__snapshots__/aztec-2/16/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/16/slow-90.json b/tests/__snapshots__/aztec-2/16/slow-90.json index a2d5879d..0d7acea8 100644 --- a/tests/__snapshots__/aztec-2/16/slow-90.json +++ b/tests/__snapshots__/aztec-2/16/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/17/fast-0.json b/tests/__snapshots__/aztec-2/17/fast-0.json index e0d152e9..86e400a4 100644 --- a/tests/__snapshots__/aztec-2/17/fast-0.json +++ b/tests/__snapshots__/aztec-2/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/17/fast-180.json b/tests/__snapshots__/aztec-2/17/fast-180.json index da44aa07..99ffee60 100644 --- a/tests/__snapshots__/aztec-2/17/fast-180.json +++ b/tests/__snapshots__/aztec-2/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/17/fast-270.json b/tests/__snapshots__/aztec-2/17/fast-270.json index 640108c9..f72f6be0 100644 --- a/tests/__snapshots__/aztec-2/17/fast-270.json +++ b/tests/__snapshots__/aztec-2/17/fast-270.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/17/fast-90.json b/tests/__snapshots__/aztec-2/17/fast-90.json index 20135e8f..f2b2bc9d 100644 --- a/tests/__snapshots__/aztec-2/17/fast-90.json +++ b/tests/__snapshots__/aztec-2/17/fast-90.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/17/slow-0.json b/tests/__snapshots__/aztec-2/17/slow-0.json index e0d152e9..86e400a4 100644 --- a/tests/__snapshots__/aztec-2/17/slow-0.json +++ b/tests/__snapshots__/aztec-2/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/17/slow-180.json b/tests/__snapshots__/aztec-2/17/slow-180.json index da44aa07..99ffee60 100644 --- a/tests/__snapshots__/aztec-2/17/slow-180.json +++ b/tests/__snapshots__/aztec-2/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/17/slow-270.json b/tests/__snapshots__/aztec-2/17/slow-270.json index 640108c9..f72f6be0 100644 --- a/tests/__snapshots__/aztec-2/17/slow-270.json +++ b/tests/__snapshots__/aztec-2/17/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/17/slow-90.json b/tests/__snapshots__/aztec-2/17/slow-90.json index 20135e8f..f2b2bc9d 100644 --- a/tests/__snapshots__/aztec-2/17/slow-90.json +++ b/tests/__snapshots__/aztec-2/17/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/18/fast-0.json b/tests/__snapshots__/aztec-2/18/fast-0.json index 899348af..de5184ed 100644 --- a/tests/__snapshots__/aztec-2/18/fast-0.json +++ b/tests/__snapshots__/aztec-2/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/18/fast-180.json b/tests/__snapshots__/aztec-2/18/fast-180.json index 823aa97b..19cda9d5 100644 --- a/tests/__snapshots__/aztec-2/18/fast-180.json +++ b/tests/__snapshots__/aztec-2/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/18/fast-270.json b/tests/__snapshots__/aztec-2/18/fast-270.json index 77315b74..d9fcd9ad 100644 --- a/tests/__snapshots__/aztec-2/18/fast-270.json +++ b/tests/__snapshots__/aztec-2/18/fast-270.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/18/fast-90.json b/tests/__snapshots__/aztec-2/18/fast-90.json index 0d2e3c3b..cb645b18 100644 --- a/tests/__snapshots__/aztec-2/18/fast-90.json +++ b/tests/__snapshots__/aztec-2/18/fast-90.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/18/slow-0.json b/tests/__snapshots__/aztec-2/18/slow-0.json index 899348af..de5184ed 100644 --- a/tests/__snapshots__/aztec-2/18/slow-0.json +++ b/tests/__snapshots__/aztec-2/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/18/slow-180.json b/tests/__snapshots__/aztec-2/18/slow-180.json index 823aa97b..19cda9d5 100644 --- a/tests/__snapshots__/aztec-2/18/slow-180.json +++ b/tests/__snapshots__/aztec-2/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/18/slow-270.json b/tests/__snapshots__/aztec-2/18/slow-270.json index 77315b74..d9fcd9ad 100644 --- a/tests/__snapshots__/aztec-2/18/slow-270.json +++ b/tests/__snapshots__/aztec-2/18/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/18/slow-90.json b/tests/__snapshots__/aztec-2/18/slow-90.json index 0d2e3c3b..cb645b18 100644 --- a/tests/__snapshots__/aztec-2/18/slow-90.json +++ b/tests/__snapshots__/aztec-2/18/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/19/fast-0.json b/tests/__snapshots__/aztec-2/19/fast-0.json index 4bb9875c..dda51c53 100644 --- a/tests/__snapshots__/aztec-2/19/fast-0.json +++ b/tests/__snapshots__/aztec-2/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/19/fast-180.json b/tests/__snapshots__/aztec-2/19/fast-180.json index 9b39cbcb..ec51c139 100644 --- a/tests/__snapshots__/aztec-2/19/fast-180.json +++ b/tests/__snapshots__/aztec-2/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/19/fast-270.json b/tests/__snapshots__/aztec-2/19/fast-270.json index 1c95c77a..24010bad 100644 --- a/tests/__snapshots__/aztec-2/19/fast-270.json +++ b/tests/__snapshots__/aztec-2/19/fast-270.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/19/fast-90.json b/tests/__snapshots__/aztec-2/19/fast-90.json index ceac4d95..9f10c04c 100644 --- a/tests/__snapshots__/aztec-2/19/fast-90.json +++ b/tests/__snapshots__/aztec-2/19/fast-90.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/19/slow-0.json b/tests/__snapshots__/aztec-2/19/slow-0.json index 4bb9875c..dda51c53 100644 --- a/tests/__snapshots__/aztec-2/19/slow-0.json +++ b/tests/__snapshots__/aztec-2/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/19/slow-180.json b/tests/__snapshots__/aztec-2/19/slow-180.json index 9b39cbcb..ec51c139 100644 --- a/tests/__snapshots__/aztec-2/19/slow-180.json +++ b/tests/__snapshots__/aztec-2/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/19/slow-270.json b/tests/__snapshots__/aztec-2/19/slow-270.json index 1c95c77a..24010bad 100644 --- a/tests/__snapshots__/aztec-2/19/slow-270.json +++ b/tests/__snapshots__/aztec-2/19/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/19/slow-90.json b/tests/__snapshots__/aztec-2/19/slow-90.json index ceac4d95..9f10c04c 100644 --- a/tests/__snapshots__/aztec-2/19/slow-90.json +++ b/tests/__snapshots__/aztec-2/19/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/21/fast-0.json b/tests/__snapshots__/aztec-2/21/fast-0.json index 6ec4e371..74aa74fd 100644 --- a/tests/__snapshots__/aztec-2/21/fast-0.json +++ b/tests/__snapshots__/aztec-2/21/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/21/fast-180.json b/tests/__snapshots__/aztec-2/21/fast-180.json index d63e6044..2ba60415 100644 --- a/tests/__snapshots__/aztec-2/21/fast-180.json +++ b/tests/__snapshots__/aztec-2/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/21/fast-270.json b/tests/__snapshots__/aztec-2/21/fast-270.json index 20257632..43afaceb 100644 --- a/tests/__snapshots__/aztec-2/21/fast-270.json +++ b/tests/__snapshots__/aztec-2/21/fast-270.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/21/fast-90.json b/tests/__snapshots__/aztec-2/21/fast-90.json index 2ea98b99..bbb53b55 100644 --- a/tests/__snapshots__/aztec-2/21/fast-90.json +++ b/tests/__snapshots__/aztec-2/21/fast-90.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/21/slow-0.json b/tests/__snapshots__/aztec-2/21/slow-0.json index 6ec4e371..74aa74fd 100644 --- a/tests/__snapshots__/aztec-2/21/slow-0.json +++ b/tests/__snapshots__/aztec-2/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/21/slow-180.json b/tests/__snapshots__/aztec-2/21/slow-180.json index d63e6044..2ba60415 100644 --- a/tests/__snapshots__/aztec-2/21/slow-180.json +++ b/tests/__snapshots__/aztec-2/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/21/slow-270.json b/tests/__snapshots__/aztec-2/21/slow-270.json index 20257632..43afaceb 100644 --- a/tests/__snapshots__/aztec-2/21/slow-270.json +++ b/tests/__snapshots__/aztec-2/21/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/21/slow-90.json b/tests/__snapshots__/aztec-2/21/slow-90.json index 2ea98b99..bbb53b55 100644 --- a/tests/__snapshots__/aztec-2/21/slow-90.json +++ b/tests/__snapshots__/aztec-2/21/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/22/fast-0.json b/tests/__snapshots__/aztec-2/22/fast-0.json index d3843843..b45ec34b 100644 --- a/tests/__snapshots__/aztec-2/22/fast-0.json +++ b/tests/__snapshots__/aztec-2/22/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/22/fast-180.json b/tests/__snapshots__/aztec-2/22/fast-180.json index 9f4749f9..b8bf5825 100644 --- a/tests/__snapshots__/aztec-2/22/fast-180.json +++ b/tests/__snapshots__/aztec-2/22/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/22/fast-270.json b/tests/__snapshots__/aztec-2/22/fast-270.json index 609dc547..b001e82b 100644 --- a/tests/__snapshots__/aztec-2/22/fast-270.json +++ b/tests/__snapshots__/aztec-2/22/fast-270.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/22/fast-90.json b/tests/__snapshots__/aztec-2/22/fast-90.json index 43deba25..2b576dda 100644 --- a/tests/__snapshots__/aztec-2/22/fast-90.json +++ b/tests/__snapshots__/aztec-2/22/fast-90.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/22/slow-0.json b/tests/__snapshots__/aztec-2/22/slow-0.json index d3843843..b45ec34b 100644 --- a/tests/__snapshots__/aztec-2/22/slow-0.json +++ b/tests/__snapshots__/aztec-2/22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/22/slow-180.json b/tests/__snapshots__/aztec-2/22/slow-180.json index 9f4749f9..b8bf5825 100644 --- a/tests/__snapshots__/aztec-2/22/slow-180.json +++ b/tests/__snapshots__/aztec-2/22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/22/slow-270.json b/tests/__snapshots__/aztec-2/22/slow-270.json index 609dc547..b001e82b 100644 --- a/tests/__snapshots__/aztec-2/22/slow-270.json +++ b/tests/__snapshots__/aztec-2/22/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/aztec-2/22/slow-90.json b/tests/__snapshots__/aztec-2/22/slow-90.json index 43deba25..2b576dda 100644 --- a/tests/__snapshots__/aztec-2/22/slow-90.json +++ b/tests/__snapshots__/aztec-2/22/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8517347", "bytesECI": "e1c8aa8", "text": "http://code.google.com/p/zxing/source/browse/trunk/android/src/com/google/zxing/client/android/result/URIResultHandler.java", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/01/fast-0.json b/tests/__snapshots__/codabar-1/01/fast-0.json index 8caccd1b..c23fbea0 100644 --- a/tests/__snapshots__/codabar-1/01/fast-0.json +++ b/tests/__snapshots__/codabar-1/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "523d8ca", "bytesECI": "736a922", "text": "A1234567890A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/01/fast-180.json b/tests/__snapshots__/codabar-1/01/fast-180.json index e74a5439..2f898fc6 100644 --- a/tests/__snapshots__/codabar-1/01/fast-180.json +++ b/tests/__snapshots__/codabar-1/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "523d8ca", "bytesECI": "736a922", "text": "A1234567890A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/01/slow-0.json b/tests/__snapshots__/codabar-1/01/slow-0.json index f771e0b3..70c0aecd 100644 --- a/tests/__snapshots__/codabar-1/01/slow-0.json +++ b/tests/__snapshots__/codabar-1/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "523d8ca", "bytesECI": "736a922", "text": "A1234567890A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/01/slow-180.json b/tests/__snapshots__/codabar-1/01/slow-180.json index cd948d03..002c22b6 100644 --- a/tests/__snapshots__/codabar-1/01/slow-180.json +++ b/tests/__snapshots__/codabar-1/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "523d8ca", "bytesECI": "736a922", "text": "A1234567890A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/02/fast-0.json b/tests/__snapshots__/codabar-1/02/fast-0.json index 82d77e30..51430538 100644 --- a/tests/__snapshots__/codabar-1/02/fast-0.json +++ b/tests/__snapshots__/codabar-1/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "523d8ca", "bytesECI": "736a922", "text": "A1234567890A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/02/fast-180.json b/tests/__snapshots__/codabar-1/02/fast-180.json index 394e777f..76abe519 100644 --- a/tests/__snapshots__/codabar-1/02/fast-180.json +++ b/tests/__snapshots__/codabar-1/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "523d8ca", "bytesECI": "736a922", "text": "A1234567890A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/02/slow-0.json b/tests/__snapshots__/codabar-1/02/slow-0.json index 13d71e78..a3600f36 100644 --- a/tests/__snapshots__/codabar-1/02/slow-0.json +++ b/tests/__snapshots__/codabar-1/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "523d8ca", "bytesECI": "736a922", "text": "A1234567890A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/02/slow-180.json b/tests/__snapshots__/codabar-1/02/slow-180.json index 3acac93a..85f69d54 100644 --- a/tests/__snapshots__/codabar-1/02/slow-180.json +++ b/tests/__snapshots__/codabar-1/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "523d8ca", "bytesECI": "736a922", "text": "A1234567890A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/03/fast-0.json b/tests/__snapshots__/codabar-1/03/fast-0.json index f529bdef..bc8eaedb 100644 --- a/tests/__snapshots__/codabar-1/03/fast-0.json +++ b/tests/__snapshots__/codabar-1/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a215207", "bytesECI": "8fa619c", "text": "A294/586B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/03/fast-180.json b/tests/__snapshots__/codabar-1/03/fast-180.json index 400fcc01..15f61452 100644 --- a/tests/__snapshots__/codabar-1/03/fast-180.json +++ b/tests/__snapshots__/codabar-1/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a215207", "bytesECI": "8fa619c", "text": "A294/586B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/03/slow-0.json b/tests/__snapshots__/codabar-1/03/slow-0.json index 354490f0..ef438bac 100644 --- a/tests/__snapshots__/codabar-1/03/slow-0.json +++ b/tests/__snapshots__/codabar-1/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a215207", "bytesECI": "8fa619c", "text": "A294/586B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/03/slow-180.json b/tests/__snapshots__/codabar-1/03/slow-180.json index 281803a9..0de84884 100644 --- a/tests/__snapshots__/codabar-1/03/slow-180.json +++ b/tests/__snapshots__/codabar-1/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a215207", "bytesECI": "8fa619c", "text": "A294/586B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/04/fast-0.json b/tests/__snapshots__/codabar-1/04/fast-0.json index fa46b0a5..139d01b0 100644 --- a/tests/__snapshots__/codabar-1/04/fast-0.json +++ b/tests/__snapshots__/codabar-1/04/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a0fd6c7", "bytesECI": "dc72789", "text": "A123455C", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/04/fast-180.json b/tests/__snapshots__/codabar-1/04/fast-180.json index 6d22840b..effac99b 100644 --- a/tests/__snapshots__/codabar-1/04/fast-180.json +++ b/tests/__snapshots__/codabar-1/04/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a0fd6c7", "bytesECI": "dc72789", "text": "A123455C", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/04/slow-0.json b/tests/__snapshots__/codabar-1/04/slow-0.json index 5aa648f1..3e4c4a8b 100644 --- a/tests/__snapshots__/codabar-1/04/slow-0.json +++ b/tests/__snapshots__/codabar-1/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a0fd6c7", "bytesECI": "dc72789", "text": "A123455C", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/04/slow-180.json b/tests/__snapshots__/codabar-1/04/slow-180.json index 3c2c5987..c0173c9e 100644 --- a/tests/__snapshots__/codabar-1/04/slow-180.json +++ b/tests/__snapshots__/codabar-1/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a0fd6c7", "bytesECI": "dc72789", "text": "A123455C", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/09/fast-0.json b/tests/__snapshots__/codabar-1/09/fast-0.json index c23a443b..daf76992 100644 --- a/tests/__snapshots__/codabar-1/09/fast-0.json +++ b/tests/__snapshots__/codabar-1/09/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9872351", "bytesECI": "ef35ba7", "text": "A12345A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/09/fast-180.json b/tests/__snapshots__/codabar-1/09/fast-180.json index 8cbdd70b..4d8cf13c 100644 --- a/tests/__snapshots__/codabar-1/09/fast-180.json +++ b/tests/__snapshots__/codabar-1/09/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9872351", "bytesECI": "ef35ba7", "text": "A12345A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/09/slow-0.json b/tests/__snapshots__/codabar-1/09/slow-0.json index 5ed4a448..a80ff476 100644 --- a/tests/__snapshots__/codabar-1/09/slow-0.json +++ b/tests/__snapshots__/codabar-1/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9872351", "bytesECI": "ef35ba7", "text": "A12345A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/09/slow-180.json b/tests/__snapshots__/codabar-1/09/slow-180.json index 279b99d9..e6e321fb 100644 --- a/tests/__snapshots__/codabar-1/09/slow-180.json +++ b/tests/__snapshots__/codabar-1/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9872351", "bytesECI": "ef35ba7", "text": "A12345A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/10/fast-0.json b/tests/__snapshots__/codabar-1/10/fast-0.json index 7b1767e8..3d2ed782 100644 --- a/tests/__snapshots__/codabar-1/10/fast-0.json +++ b/tests/__snapshots__/codabar-1/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2b94923", "bytesECI": "56e4749", "text": "A123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/10/fast-180.json b/tests/__snapshots__/codabar-1/10/fast-180.json index 61eb3e22..c8b09ebd 100644 --- a/tests/__snapshots__/codabar-1/10/fast-180.json +++ b/tests/__snapshots__/codabar-1/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2b94923", "bytesECI": "56e4749", "text": "A123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/10/slow-0.json b/tests/__snapshots__/codabar-1/10/slow-0.json index 56dae97c..e424a5af 100644 --- a/tests/__snapshots__/codabar-1/10/slow-0.json +++ b/tests/__snapshots__/codabar-1/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2b94923", "bytesECI": "56e4749", "text": "A123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/10/slow-180.json b/tests/__snapshots__/codabar-1/10/slow-180.json index 793cfc27..d28d393d 100644 --- a/tests/__snapshots__/codabar-1/10/slow-180.json +++ b/tests/__snapshots__/codabar-1/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2b94923", "bytesECI": "56e4749", "text": "A123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/11/fast-0.json b/tests/__snapshots__/codabar-1/11/fast-0.json index e1f16542..b5e9a2f1 100644 --- a/tests/__snapshots__/codabar-1/11/fast-0.json +++ b/tests/__snapshots__/codabar-1/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "70bd8e8", "bytesECI": "f43c9f9", "text": "A3419500A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/11/fast-180.json b/tests/__snapshots__/codabar-1/11/fast-180.json index 4c5afe0c..003165bd 100644 --- a/tests/__snapshots__/codabar-1/11/fast-180.json +++ b/tests/__snapshots__/codabar-1/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "70bd8e8", "bytesECI": "f43c9f9", "text": "A3419500A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/11/slow-0.json b/tests/__snapshots__/codabar-1/11/slow-0.json index 1884ca7f..6d9ffda3 100644 --- a/tests/__snapshots__/codabar-1/11/slow-0.json +++ b/tests/__snapshots__/codabar-1/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "70bd8e8", "bytesECI": "f43c9f9", "text": "A3419500A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/11/slow-180.json b/tests/__snapshots__/codabar-1/11/slow-180.json index 0c96f429..f5b168c4 100644 --- a/tests/__snapshots__/codabar-1/11/slow-180.json +++ b/tests/__snapshots__/codabar-1/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "70bd8e8", "bytesECI": "f43c9f9", "text": "A3419500A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/12/fast-0.json b/tests/__snapshots__/codabar-1/12/fast-0.json index d4ffa9b6..39afd08b 100644 --- a/tests/__snapshots__/codabar-1/12/fast-0.json +++ b/tests/__snapshots__/codabar-1/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "221d5ed", "bytesECI": "2149027", "text": "A31117013206375B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/12/fast-180.json b/tests/__snapshots__/codabar-1/12/fast-180.json index b496d9b7..c0f8efe8 100644 --- a/tests/__snapshots__/codabar-1/12/fast-180.json +++ b/tests/__snapshots__/codabar-1/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "221d5ed", "bytesECI": "2149027", "text": "A31117013206375B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/12/slow-0.json b/tests/__snapshots__/codabar-1/12/slow-0.json index 375f836a..3f5d14ae 100644 --- a/tests/__snapshots__/codabar-1/12/slow-0.json +++ b/tests/__snapshots__/codabar-1/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "221d5ed", "bytesECI": "2149027", "text": "A31117013206375B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/12/slow-180.json b/tests/__snapshots__/codabar-1/12/slow-180.json index e1adabae..9cd82813 100644 --- a/tests/__snapshots__/codabar-1/12/slow-180.json +++ b/tests/__snapshots__/codabar-1/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "221d5ed", "bytesECI": "2149027", "text": "A31117013206375B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/13/fast-0.json b/tests/__snapshots__/codabar-1/13/fast-0.json index a265bac7..330de8ba 100644 --- a/tests/__snapshots__/codabar-1/13/fast-0.json +++ b/tests/__snapshots__/codabar-1/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7c580c5", "bytesECI": "aa3f715", "text": "A12345B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/13/fast-180.json b/tests/__snapshots__/codabar-1/13/fast-180.json index 6fbfb0ef..665bde36 100644 --- a/tests/__snapshots__/codabar-1/13/fast-180.json +++ b/tests/__snapshots__/codabar-1/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7c580c5", "bytesECI": "aa3f715", "text": "A12345B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/13/slow-0.json b/tests/__snapshots__/codabar-1/13/slow-0.json index 66933b3f..a75d0d6a 100644 --- a/tests/__snapshots__/codabar-1/13/slow-0.json +++ b/tests/__snapshots__/codabar-1/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7c580c5", "bytesECI": "aa3f715", "text": "A12345B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/13/slow-180.json b/tests/__snapshots__/codabar-1/13/slow-180.json index fc41fba7..c07517ff 100644 --- a/tests/__snapshots__/codabar-1/13/slow-180.json +++ b/tests/__snapshots__/codabar-1/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7c580c5", "bytesECI": "aa3f715", "text": "A12345B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/14/fast-0.json b/tests/__snapshots__/codabar-1/14/fast-0.json index e519b755..6ec3be8a 100644 --- a/tests/__snapshots__/codabar-1/14/fast-0.json +++ b/tests/__snapshots__/codabar-1/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2355720", "bytesECI": "072d2eb", "text": "A31117013206375A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/14/fast-180.json b/tests/__snapshots__/codabar-1/14/fast-180.json index 1a87dce1..f34ab97e 100644 --- a/tests/__snapshots__/codabar-1/14/fast-180.json +++ b/tests/__snapshots__/codabar-1/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2355720", "bytesECI": "072d2eb", "text": "A31117013206375A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/14/slow-0.json b/tests/__snapshots__/codabar-1/14/slow-0.json index 971c51a3..c9ac6954 100644 --- a/tests/__snapshots__/codabar-1/14/slow-0.json +++ b/tests/__snapshots__/codabar-1/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2355720", "bytesECI": "072d2eb", "text": "A31117013206375A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/14/slow-180.json b/tests/__snapshots__/codabar-1/14/slow-180.json index 001d4579..aa3de579 100644 --- a/tests/__snapshots__/codabar-1/14/slow-180.json +++ b/tests/__snapshots__/codabar-1/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2355720", "bytesECI": "072d2eb", "text": "A31117013206375A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/15/fast-0.json b/tests/__snapshots__/codabar-1/15/fast-0.json index 4906de36..14f06a23 100644 --- a/tests/__snapshots__/codabar-1/15/fast-0.json +++ b/tests/__snapshots__/codabar-1/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2f74e46", "bytesECI": "1e50e6c", "text": "A123456789012A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/15/fast-180.json b/tests/__snapshots__/codabar-1/15/fast-180.json index dd334454..47848c30 100644 --- a/tests/__snapshots__/codabar-1/15/fast-180.json +++ b/tests/__snapshots__/codabar-1/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2f74e46", "bytesECI": "1e50e6c", "text": "A123456789012A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/15/slow-0.json b/tests/__snapshots__/codabar-1/15/slow-0.json index 092ba6df..5070cdb3 100644 --- a/tests/__snapshots__/codabar-1/15/slow-0.json +++ b/tests/__snapshots__/codabar-1/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2f74e46", "bytesECI": "1e50e6c", "text": "A123456789012A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-1/15/slow-180.json b/tests/__snapshots__/codabar-1/15/slow-180.json index 84fd2410..bc2ae0bd 100644 --- a/tests/__snapshots__/codabar-1/15/slow-180.json +++ b/tests/__snapshots__/codabar-1/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2f74e46", "bytesECI": "1e50e6c", "text": "A123456789012A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-2/01/fast-0.json b/tests/__snapshots__/codabar-2/01/fast-0.json index c14e3cc0..f7cac629 100644 --- a/tests/__snapshots__/codabar-2/01/fast-0.json +++ b/tests/__snapshots__/codabar-2/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c7a9176", "bytesECI": "1c9b6f7", "text": "A80125178+B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-2/01/fast-180.json b/tests/__snapshots__/codabar-2/01/fast-180.json index 44614a98..d2cea4d3 100644 --- a/tests/__snapshots__/codabar-2/01/fast-180.json +++ b/tests/__snapshots__/codabar-2/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c7a9176", "bytesECI": "1c9b6f7", "text": "A80125178+B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-2/01/slow-0.json b/tests/__snapshots__/codabar-2/01/slow-0.json index 6497dde2..9f3d588a 100644 --- a/tests/__snapshots__/codabar-2/01/slow-0.json +++ b/tests/__snapshots__/codabar-2/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c7a9176", "bytesECI": "1c9b6f7", "text": "A80125178+B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-2/01/slow-180.json b/tests/__snapshots__/codabar-2/01/slow-180.json index d3b8d70b..c3eff0fb 100644 --- a/tests/__snapshots__/codabar-2/01/slow-180.json +++ b/tests/__snapshots__/codabar-2/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c7a9176", "bytesECI": "1c9b6f7", "text": "A80125178+B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-2/02/fast-0.json b/tests/__snapshots__/codabar-2/02/fast-0.json index 776e16aa..63f16eed 100644 --- a/tests/__snapshots__/codabar-2/02/fast-0.json +++ b/tests/__snapshots__/codabar-2/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c7a9176", "bytesECI": "1c9b6f7", "text": "A80125178+B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-2/02/fast-180.json b/tests/__snapshots__/codabar-2/02/fast-180.json index 781dfd68..356c2843 100644 --- a/tests/__snapshots__/codabar-2/02/fast-180.json +++ b/tests/__snapshots__/codabar-2/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c7a9176", "bytesECI": "1c9b6f7", "text": "A80125178+B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-2/02/slow-0.json b/tests/__snapshots__/codabar-2/02/slow-0.json index 73e9e623..586e1e24 100644 --- a/tests/__snapshots__/codabar-2/02/slow-0.json +++ b/tests/__snapshots__/codabar-2/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c7a9176", "bytesECI": "1c9b6f7", "text": "A80125178+B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-2/02/slow-180.json b/tests/__snapshots__/codabar-2/02/slow-180.json index fd21ecbc..9926fb5e 100644 --- a/tests/__snapshots__/codabar-2/02/slow-180.json +++ b/tests/__snapshots__/codabar-2/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c7a9176", "bytesECI": "1c9b6f7", "text": "A80125178+B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-2/03/slow-0.json b/tests/__snapshots__/codabar-2/03/slow-0.json index c4a38f7c..d5548777 100644 --- a/tests/__snapshots__/codabar-2/03/slow-0.json +++ b/tests/__snapshots__/codabar-2/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ca42639", "bytesECI": "9e60e1b", "text": "A0944416895273A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/codabar-2/03/slow-180.json b/tests/__snapshots__/codabar-2/03/slow-180.json index ffccb10e..c7b39ec4 100644 --- a/tests/__snapshots__/codabar-2/03/slow-180.json +++ b/tests/__snapshots__/codabar-2/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ca42639", "bytesECI": "9e60e1b", "text": "A0944416895273A", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/1/fast-0.json b/tests/__snapshots__/code128-1/1/fast-0.json index 30f35d27..2fc48944 100644 --- a/tests/__snapshots__/code128-1/1/fast-0.json +++ b/tests/__snapshots__/code128-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8b47efa", "bytesECI": "654644e", "text": "168901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/1/fast-180.json b/tests/__snapshots__/code128-1/1/fast-180.json index 618c406c..08d62acd 100644 --- a/tests/__snapshots__/code128-1/1/fast-180.json +++ b/tests/__snapshots__/code128-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8b47efa", "bytesECI": "654644e", "text": "168901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/1/slow-0.json b/tests/__snapshots__/code128-1/1/slow-0.json index a6919a5f..8f75631a 100644 --- a/tests/__snapshots__/code128-1/1/slow-0.json +++ b/tests/__snapshots__/code128-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8b47efa", "bytesECI": "654644e", "text": "168901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/1/slow-180.json b/tests/__snapshots__/code128-1/1/slow-180.json index 3a1f3f06..827ffc2c 100644 --- a/tests/__snapshots__/code128-1/1/slow-180.json +++ b/tests/__snapshots__/code128-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8b47efa", "bytesECI": "654644e", "text": "168901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/2/fast-0.json b/tests/__snapshots__/code128-1/2/fast-0.json index 035856c7..aec48e79 100644 --- a/tests/__snapshots__/code128-1/2/fast-0.json +++ b/tests/__snapshots__/code128-1/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b13c454", "bytesECI": "0aef87b", "text": "Code 128", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/2/fast-180.json b/tests/__snapshots__/code128-1/2/fast-180.json index d13ec064..bddf5cee 100644 --- a/tests/__snapshots__/code128-1/2/fast-180.json +++ b/tests/__snapshots__/code128-1/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b13c454", "bytesECI": "0aef87b", "text": "Code 128", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/2/slow-0.json b/tests/__snapshots__/code128-1/2/slow-0.json index 4c7d211b..b0092f0e 100644 --- a/tests/__snapshots__/code128-1/2/slow-0.json +++ b/tests/__snapshots__/code128-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b13c454", "bytesECI": "0aef87b", "text": "Code 128", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/2/slow-180.json b/tests/__snapshots__/code128-1/2/slow-180.json index b9014db9..b03810ae 100644 --- a/tests/__snapshots__/code128-1/2/slow-180.json +++ b/tests/__snapshots__/code128-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b13c454", "bytesECI": "0aef87b", "text": "Code 128", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/3/fast-0.json b/tests/__snapshots__/code128-1/3/fast-0.json index 2272ea12..b2d6ec39 100644 --- a/tests/__snapshots__/code128-1/3/fast-0.json +++ b/tests/__snapshots__/code128-1/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7090c14", "bytesECI": "97a84d5", "text": "102030405060708090", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/3/fast-180.json b/tests/__snapshots__/code128-1/3/fast-180.json index 0cac8f50..4272c655 100644 --- a/tests/__snapshots__/code128-1/3/fast-180.json +++ b/tests/__snapshots__/code128-1/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7090c14", "bytesECI": "97a84d5", "text": "102030405060708090", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/3/slow-0.json b/tests/__snapshots__/code128-1/3/slow-0.json index fda13d06..40c38ea5 100644 --- a/tests/__snapshots__/code128-1/3/slow-0.json +++ b/tests/__snapshots__/code128-1/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7090c14", "bytesECI": "97a84d5", "text": "102030405060708090", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/3/slow-180.json b/tests/__snapshots__/code128-1/3/slow-180.json index 364a46e8..4c751bf8 100644 --- a/tests/__snapshots__/code128-1/3/slow-180.json +++ b/tests/__snapshots__/code128-1/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7090c14", "bytesECI": "97a84d5", "text": "102030405060708090", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/4/fast-0.json b/tests/__snapshots__/code128-1/4/fast-0.json index 4372c58a..e0dd47ec 100644 --- a/tests/__snapshots__/code128-1/4/fast-0.json +++ b/tests/__snapshots__/code128-1/4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8d969ee", "bytesECI": "4a30e71", "text": "123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/4/fast-180.json b/tests/__snapshots__/code128-1/4/fast-180.json index 0adf4f42..4b39202a 100644 --- a/tests/__snapshots__/code128-1/4/fast-180.json +++ b/tests/__snapshots__/code128-1/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8d969ee", "bytesECI": "4a30e71", "text": "123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/4/slow-0.json b/tests/__snapshots__/code128-1/4/slow-0.json index 4372c58a..e0dd47ec 100644 --- a/tests/__snapshots__/code128-1/4/slow-0.json +++ b/tests/__snapshots__/code128-1/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8d969ee", "bytesECI": "4a30e71", "text": "123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/4/slow-180.json b/tests/__snapshots__/code128-1/4/slow-180.json index 0adf4f42..4b39202a 100644 --- a/tests/__snapshots__/code128-1/4/slow-180.json +++ b/tests/__snapshots__/code128-1/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8d969ee", "bytesECI": "4a30e71", "text": "123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/5/fast-0.json b/tests/__snapshots__/code128-1/5/fast-0.json index 99bec1b4..a2495725 100644 --- a/tests/__snapshots__/code128-1/5/fast-0.json +++ b/tests/__snapshots__/code128-1/5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "05e4265", "bytesECI": "ee5213b", "text": "8101054321120021123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/5/fast-180.json b/tests/__snapshots__/code128-1/5/fast-180.json index 6d42e5d7..b4b7f999 100644 --- a/tests/__snapshots__/code128-1/5/fast-180.json +++ b/tests/__snapshots__/code128-1/5/fast-180.json @@ -5,7 +5,7 @@ "bytes": "05e4265", "bytesECI": "ee5213b", "text": "8101054321120021123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/5/slow-0.json b/tests/__snapshots__/code128-1/5/slow-0.json index 3529804b..3e2ab5cc 100644 --- a/tests/__snapshots__/code128-1/5/slow-0.json +++ b/tests/__snapshots__/code128-1/5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "05e4265", "bytesECI": "ee5213b", "text": "8101054321120021123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/5/slow-180.json b/tests/__snapshots__/code128-1/5/slow-180.json index 29a4ef4f..9663a4b9 100644 --- a/tests/__snapshots__/code128-1/5/slow-180.json +++ b/tests/__snapshots__/code128-1/5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "05e4265", "bytesECI": "ee5213b", "text": "8101054321120021123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/6/fast-0.json b/tests/__snapshots__/code128-1/6/fast-0.json index da070fce..de346e71 100644 --- a/tests/__snapshots__/code128-1/6/fast-0.json +++ b/tests/__snapshots__/code128-1/6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5d25591", "bytesECI": "e284152", "text": "óóóó1234óóabózz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/6/fast-180.json b/tests/__snapshots__/code128-1/6/fast-180.json index 0730b1ab..d92e1098 100644 --- a/tests/__snapshots__/code128-1/6/fast-180.json +++ b/tests/__snapshots__/code128-1/6/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5d25591", "bytesECI": "e284152", "text": "óóóó1234óóabózz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/6/slow-0.json b/tests/__snapshots__/code128-1/6/slow-0.json index da070fce..de346e71 100644 --- a/tests/__snapshots__/code128-1/6/slow-0.json +++ b/tests/__snapshots__/code128-1/6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5d25591", "bytesECI": "e284152", "text": "óóóó1234óóabózz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-1/6/slow-180.json b/tests/__snapshots__/code128-1/6/slow-180.json index 0730b1ab..d92e1098 100644 --- a/tests/__snapshots__/code128-1/6/slow-180.json +++ b/tests/__snapshots__/code128-1/6/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5d25591", "bytesECI": "e284152", "text": "óóóó1234óóabózz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/#444/fast-0.json b/tests/__snapshots__/code128-2/#444/fast-0.json index 6277a154..3571cb35 100644 --- a/tests/__snapshots__/code128-2/#444/fast-0.json +++ b/tests/__snapshots__/code128-2/#444/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f362602", "bytesECI": "9580edf", "text": "2-146-11", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/#444/fast-180.json b/tests/__snapshots__/code128-2/#444/fast-180.json index ccde1ccb..7cc6c504 100644 --- a/tests/__snapshots__/code128-2/#444/fast-180.json +++ b/tests/__snapshots__/code128-2/#444/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f362602", "bytesECI": "9580edf", "text": "2-146-11", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/#444/slow-0.json b/tests/__snapshots__/code128-2/#444/slow-0.json index 6277a154..3571cb35 100644 --- a/tests/__snapshots__/code128-2/#444/slow-0.json +++ b/tests/__snapshots__/code128-2/#444/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f362602", "bytesECI": "9580edf", "text": "2-146-11", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/#444/slow-180.json b/tests/__snapshots__/code128-2/#444/slow-180.json index ae0d3aad..c06710b0 100644 --- a/tests/__snapshots__/code128-2/#444/slow-180.json +++ b/tests/__snapshots__/code128-2/#444/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f362602", "bytesECI": "9580edf", "text": "2-146-11", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/01/fast-0.json b/tests/__snapshots__/code128-2/01/fast-0.json index 1e28dc49..4465eb5b 100644 --- a/tests/__snapshots__/code128-2/01/fast-0.json +++ b/tests/__snapshots__/code128-2/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "732cb66", "bytesECI": "cc6c5a6", "text": "005-3379497200006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/01/fast-180.json b/tests/__snapshots__/code128-2/01/fast-180.json index 9dbfa91f..1a7873ab 100644 --- a/tests/__snapshots__/code128-2/01/fast-180.json +++ b/tests/__snapshots__/code128-2/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "732cb66", "bytesECI": "cc6c5a6", "text": "005-3379497200006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/01/slow-0.json b/tests/__snapshots__/code128-2/01/slow-0.json index 48d8fce4..dcfa8dc1 100644 --- a/tests/__snapshots__/code128-2/01/slow-0.json +++ b/tests/__snapshots__/code128-2/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "732cb66", "bytesECI": "cc6c5a6", "text": "005-3379497200006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/01/slow-180.json b/tests/__snapshots__/code128-2/01/slow-180.json index e9ae0666..88ed7662 100644 --- a/tests/__snapshots__/code128-2/01/slow-180.json +++ b/tests/__snapshots__/code128-2/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "732cb66", "bytesECI": "cc6c5a6", "text": "005-3379497200006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/02/fast-0.json b/tests/__snapshots__/code128-2/02/fast-0.json index 60f25073..8186a973 100644 --- a/tests/__snapshots__/code128-2/02/fast-0.json +++ b/tests/__snapshots__/code128-2/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "732cb66", "bytesECI": "cc6c5a6", "text": "005-3379497200006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/02/fast-180.json b/tests/__snapshots__/code128-2/02/fast-180.json index 0cf49f93..f8597325 100644 --- a/tests/__snapshots__/code128-2/02/fast-180.json +++ b/tests/__snapshots__/code128-2/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "732cb66", "bytesECI": "cc6c5a6", "text": "005-3379497200006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/02/slow-0.json b/tests/__snapshots__/code128-2/02/slow-0.json index 6340d192..996813be 100644 --- a/tests/__snapshots__/code128-2/02/slow-0.json +++ b/tests/__snapshots__/code128-2/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "732cb66", "bytesECI": "cc6c5a6", "text": "005-3379497200006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/02/slow-180.json b/tests/__snapshots__/code128-2/02/slow-180.json index b3bb6792..03e7b95c 100644 --- a/tests/__snapshots__/code128-2/02/slow-180.json +++ b/tests/__snapshots__/code128-2/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "732cb66", "bytesECI": "cc6c5a6", "text": "005-3379497200006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/03/fast-0.json b/tests/__snapshots__/code128-2/03/fast-0.json index 6fd65738..877fa787 100644 --- a/tests/__snapshots__/code128-2/03/fast-0.json +++ b/tests/__snapshots__/code128-2/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "732cb66", "bytesECI": "cc6c5a6", "text": "005-3379497200006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/03/fast-180.json b/tests/__snapshots__/code128-2/03/fast-180.json index 674c3a75..32be1a84 100644 --- a/tests/__snapshots__/code128-2/03/fast-180.json +++ b/tests/__snapshots__/code128-2/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "732cb66", "bytesECI": "cc6c5a6", "text": "005-3379497200006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/03/slow-0.json b/tests/__snapshots__/code128-2/03/slow-0.json index 731fc9c3..da50e0a2 100644 --- a/tests/__snapshots__/code128-2/03/slow-0.json +++ b/tests/__snapshots__/code128-2/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "732cb66", "bytesECI": "cc6c5a6", "text": "005-3379497200006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/03/slow-180.json b/tests/__snapshots__/code128-2/03/slow-180.json index 4182aba2..381f1142 100644 --- a/tests/__snapshots__/code128-2/03/slow-180.json +++ b/tests/__snapshots__/code128-2/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "732cb66", "bytesECI": "cc6c5a6", "text": "005-3379497200006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/05/fast-0.json b/tests/__snapshots__/code128-2/05/fast-0.json index f12487d6..e1208ad1 100644 --- a/tests/__snapshots__/code128-2/05/fast-0.json +++ b/tests/__snapshots__/code128-2/05/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0060ad7", "bytesECI": "3df4180", "text": "15182881", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/05/fast-180.json b/tests/__snapshots__/code128-2/05/fast-180.json index c2c1a011..8fc07376 100644 --- a/tests/__snapshots__/code128-2/05/fast-180.json +++ b/tests/__snapshots__/code128-2/05/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0060ad7", "bytesECI": "3df4180", "text": "15182881", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/05/slow-0.json b/tests/__snapshots__/code128-2/05/slow-0.json index 5b876d70..e95e24df 100644 --- a/tests/__snapshots__/code128-2/05/slow-0.json +++ b/tests/__snapshots__/code128-2/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0060ad7", "bytesECI": "3df4180", "text": "15182881", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/05/slow-180.json b/tests/__snapshots__/code128-2/05/slow-180.json index 9c1c8a32..df01ca14 100644 --- a/tests/__snapshots__/code128-2/05/slow-180.json +++ b/tests/__snapshots__/code128-2/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0060ad7", "bytesECI": "3df4180", "text": "15182881", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/06/fast-0.json b/tests/__snapshots__/code128-2/06/fast-0.json index 562a4dd9..54021137 100644 --- a/tests/__snapshots__/code128-2/06/fast-0.json +++ b/tests/__snapshots__/code128-2/06/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0060ad7", "bytesECI": "3df4180", "text": "15182881", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/06/fast-180.json b/tests/__snapshots__/code128-2/06/fast-180.json index 4104d5e7..6401c71e 100644 --- a/tests/__snapshots__/code128-2/06/fast-180.json +++ b/tests/__snapshots__/code128-2/06/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0060ad7", "bytesECI": "3df4180", "text": "15182881", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/06/slow-0.json b/tests/__snapshots__/code128-2/06/slow-0.json index ce4e811c..c0aa00d1 100644 --- a/tests/__snapshots__/code128-2/06/slow-0.json +++ b/tests/__snapshots__/code128-2/06/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0060ad7", "bytesECI": "3df4180", "text": "15182881", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/06/slow-180.json b/tests/__snapshots__/code128-2/06/slow-180.json index 6dfe5f49..7e9239d3 100644 --- a/tests/__snapshots__/code128-2/06/slow-180.json +++ b/tests/__snapshots__/code128-2/06/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0060ad7", "bytesECI": "3df4180", "text": "15182881", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/10/fast-0.json b/tests/__snapshots__/code128-2/10/fast-0.json index 6343e52a..d823b157 100644 --- a/tests/__snapshots__/code128-2/10/fast-0.json +++ b/tests/__snapshots__/code128-2/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "af86e0f", "bytesECI": "5fdf7af", "text": "CNK8181G2C", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/10/fast-180.json b/tests/__snapshots__/code128-2/10/fast-180.json index 59e5ddd8..6acdd48f 100644 --- a/tests/__snapshots__/code128-2/10/fast-180.json +++ b/tests/__snapshots__/code128-2/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "af86e0f", "bytesECI": "5fdf7af", "text": "CNK8181G2C", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/10/slow-0.json b/tests/__snapshots__/code128-2/10/slow-0.json index 79ef6cc1..7450c992 100644 --- a/tests/__snapshots__/code128-2/10/slow-0.json +++ b/tests/__snapshots__/code128-2/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "af86e0f", "bytesECI": "5fdf7af", "text": "CNK8181G2C", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/10/slow-180.json b/tests/__snapshots__/code128-2/10/slow-180.json index 011941e0..4d0286be 100644 --- a/tests/__snapshots__/code128-2/10/slow-180.json +++ b/tests/__snapshots__/code128-2/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "af86e0f", "bytesECI": "5fdf7af", "text": "CNK8181G2C", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/12/slow-0.json b/tests/__snapshots__/code128-2/12/slow-0.json index 61526539..d185aee2 100644 --- a/tests/__snapshots__/code128-2/12/slow-0.json +++ b/tests/__snapshots__/code128-2/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "af86e0f", "bytesECI": "5fdf7af", "text": "CNK8181G2C", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/12/slow-180.json b/tests/__snapshots__/code128-2/12/slow-180.json index 9e12a043..99df65ae 100644 --- a/tests/__snapshots__/code128-2/12/slow-180.json +++ b/tests/__snapshots__/code128-2/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "af86e0f", "bytesECI": "5fdf7af", "text": "CNK8181G2C", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/14/fast-0.json b/tests/__snapshots__/code128-2/14/fast-0.json index 52b96996..f73a48a7 100644 --- a/tests/__snapshots__/code128-2/14/fast-0.json +++ b/tests/__snapshots__/code128-2/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c65abfe", "bytesECI": "08afb31", "text": "1PEF224A4", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/14/fast-180.json b/tests/__snapshots__/code128-2/14/fast-180.json index 6503b8f8..32db0376 100644 --- a/tests/__snapshots__/code128-2/14/fast-180.json +++ b/tests/__snapshots__/code128-2/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c65abfe", "bytesECI": "08afb31", "text": "1PEF224A4", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/14/slow-0.json b/tests/__snapshots__/code128-2/14/slow-0.json index 426577d1..f0e84a90 100644 --- a/tests/__snapshots__/code128-2/14/slow-0.json +++ b/tests/__snapshots__/code128-2/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c65abfe", "bytesECI": "08afb31", "text": "1PEF224A4", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/14/slow-180.json b/tests/__snapshots__/code128-2/14/slow-180.json index bdf564d5..94129431 100644 --- a/tests/__snapshots__/code128-2/14/slow-180.json +++ b/tests/__snapshots__/code128-2/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c65abfe", "bytesECI": "08afb31", "text": "1PEF224A4", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/16/fast-0.json b/tests/__snapshots__/code128-2/16/fast-0.json index b37e9f6a..bb98df0e 100644 --- a/tests/__snapshots__/code128-2/16/fast-0.json +++ b/tests/__snapshots__/code128-2/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c65abfe", "bytesECI": "08afb31", "text": "1PEF224A4", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/16/fast-180.json b/tests/__snapshots__/code128-2/16/fast-180.json index fc43ce0c..f4a6dbae 100644 --- a/tests/__snapshots__/code128-2/16/fast-180.json +++ b/tests/__snapshots__/code128-2/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c65abfe", "bytesECI": "08afb31", "text": "1PEF224A4", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/16/slow-0.json b/tests/__snapshots__/code128-2/16/slow-0.json index c1117d7f..ca9299f3 100644 --- a/tests/__snapshots__/code128-2/16/slow-0.json +++ b/tests/__snapshots__/code128-2/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c65abfe", "bytesECI": "08afb31", "text": "1PEF224A4", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/16/slow-180.json b/tests/__snapshots__/code128-2/16/slow-180.json index 852dfb31..2781492f 100644 --- a/tests/__snapshots__/code128-2/16/slow-180.json +++ b/tests/__snapshots__/code128-2/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c65abfe", "bytesECI": "08afb31", "text": "1PEF224A4", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/17/fast-0.json b/tests/__snapshots__/code128-2/17/fast-0.json index 3ddb079d..715d5c6c 100644 --- a/tests/__snapshots__/code128-2/17/fast-0.json +++ b/tests/__snapshots__/code128-2/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "89145c9", "bytesECI": "22c4ab8", "text": "FW727", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/17/fast-180.json b/tests/__snapshots__/code128-2/17/fast-180.json index b1444ee2..153db267 100644 --- a/tests/__snapshots__/code128-2/17/fast-180.json +++ b/tests/__snapshots__/code128-2/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "89145c9", "bytesECI": "22c4ab8", "text": "FW727", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/17/slow-0.json b/tests/__snapshots__/code128-2/17/slow-0.json index 7c8ec8c6..395ed33e 100644 --- a/tests/__snapshots__/code128-2/17/slow-0.json +++ b/tests/__snapshots__/code128-2/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89145c9", "bytesECI": "22c4ab8", "text": "FW727", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/17/slow-180.json b/tests/__snapshots__/code128-2/17/slow-180.json index e0b3cc3d..28110a21 100644 --- a/tests/__snapshots__/code128-2/17/slow-180.json +++ b/tests/__snapshots__/code128-2/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89145c9", "bytesECI": "22c4ab8", "text": "FW727", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/19/fast-0.json b/tests/__snapshots__/code128-2/19/fast-0.json index 4594e24a..3ac3f47c 100644 --- a/tests/__snapshots__/code128-2/19/fast-0.json +++ b/tests/__snapshots__/code128-2/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "89145c9", "bytesECI": "22c4ab8", "text": "FW727", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/19/fast-180.json b/tests/__snapshots__/code128-2/19/fast-180.json index 4ed9c1c9..c4b2a10d 100644 --- a/tests/__snapshots__/code128-2/19/fast-180.json +++ b/tests/__snapshots__/code128-2/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "89145c9", "bytesECI": "22c4ab8", "text": "FW727", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/19/slow-0.json b/tests/__snapshots__/code128-2/19/slow-0.json index ad4a4761..31186e2e 100644 --- a/tests/__snapshots__/code128-2/19/slow-0.json +++ b/tests/__snapshots__/code128-2/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89145c9", "bytesECI": "22c4ab8", "text": "FW727", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/19/slow-180.json b/tests/__snapshots__/code128-2/19/slow-180.json index 68f070c1..f91019d4 100644 --- a/tests/__snapshots__/code128-2/19/slow-180.json +++ b/tests/__snapshots__/code128-2/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89145c9", "bytesECI": "22c4ab8", "text": "FW727", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/22/fast-0.json b/tests/__snapshots__/code128-2/22/fast-0.json index 50122dc8..a52ee4ba 100644 --- a/tests/__snapshots__/code128-2/22/fast-0.json +++ b/tests/__snapshots__/code128-2/22/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8300072", "bytesECI": "bf6fe91", "text": "005-3354174500018", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/22/fast-180.json b/tests/__snapshots__/code128-2/22/fast-180.json index 712c73a0..2754b54d 100644 --- a/tests/__snapshots__/code128-2/22/fast-180.json +++ b/tests/__snapshots__/code128-2/22/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8300072", "bytesECI": "bf6fe91", "text": "005-3354174500018", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/22/slow-0.json b/tests/__snapshots__/code128-2/22/slow-0.json index 264f7b05..a357938f 100644 --- a/tests/__snapshots__/code128-2/22/slow-0.json +++ b/tests/__snapshots__/code128-2/22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8300072", "bytesECI": "bf6fe91", "text": "005-3354174500018", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/22/slow-180.json b/tests/__snapshots__/code128-2/22/slow-180.json index fa0ce1ef..5f789e7e 100644 --- a/tests/__snapshots__/code128-2/22/slow-180.json +++ b/tests/__snapshots__/code128-2/22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8300072", "bytesECI": "bf6fe91", "text": "005-3354174500018", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/25/fast-0.json b/tests/__snapshots__/code128-2/25/fast-0.json index 7f7f3164..1cc7a43f 100644 --- a/tests/__snapshots__/code128-2/25/fast-0.json +++ b/tests/__snapshots__/code128-2/25/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ad6e4d0", "bytesECI": "8b5dee3", "text": "31001171800000017989625355702636", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/25/fast-180.json b/tests/__snapshots__/code128-2/25/fast-180.json index 6f5bed17..fce2e6d8 100644 --- a/tests/__snapshots__/code128-2/25/fast-180.json +++ b/tests/__snapshots__/code128-2/25/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ad6e4d0", "bytesECI": "8b5dee3", "text": "31001171800000017989625355702636", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/25/slow-0.json b/tests/__snapshots__/code128-2/25/slow-0.json index 185ad991..8b3243f6 100644 --- a/tests/__snapshots__/code128-2/25/slow-0.json +++ b/tests/__snapshots__/code128-2/25/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad6e4d0", "bytesECI": "8b5dee3", "text": "31001171800000017989625355702636", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/25/slow-180.json b/tests/__snapshots__/code128-2/25/slow-180.json index 28bf1b56..c1faeac3 100644 --- a/tests/__snapshots__/code128-2/25/slow-180.json +++ b/tests/__snapshots__/code128-2/25/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad6e4d0", "bytesECI": "8b5dee3", "text": "31001171800000017989625355702636", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/27/fast-0.json b/tests/__snapshots__/code128-2/27/fast-0.json index 223f18f0..8e52d67e 100644 --- a/tests/__snapshots__/code128-2/27/fast-0.json +++ b/tests/__snapshots__/code128-2/27/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ad6e4d0", "bytesECI": "8b5dee3", "text": "31001171800000017989625355702636", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/27/fast-180.json b/tests/__snapshots__/code128-2/27/fast-180.json index dbd453b0..421d89e7 100644 --- a/tests/__snapshots__/code128-2/27/fast-180.json +++ b/tests/__snapshots__/code128-2/27/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ad6e4d0", "bytesECI": "8b5dee3", "text": "31001171800000017989625355702636", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/27/slow-0.json b/tests/__snapshots__/code128-2/27/slow-0.json index 143d9150..53c143ef 100644 --- a/tests/__snapshots__/code128-2/27/slow-0.json +++ b/tests/__snapshots__/code128-2/27/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad6e4d0", "bytesECI": "8b5dee3", "text": "31001171800000017989625355702636", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/27/slow-180.json b/tests/__snapshots__/code128-2/27/slow-180.json index 2ef51caa..b8d460c2 100644 --- a/tests/__snapshots__/code128-2/27/slow-180.json +++ b/tests/__snapshots__/code128-2/27/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad6e4d0", "bytesECI": "8b5dee3", "text": "31001171800000017989625355702636", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/28/fast-180.json b/tests/__snapshots__/code128-2/28/fast-180.json index e7232b9a..40638623 100644 --- a/tests/__snapshots__/code128-2/28/fast-180.json +++ b/tests/__snapshots__/code128-2/28/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ad6e4d0", "bytesECI": "8b5dee3", "text": "31001171800000017989625355702636", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/28/slow-0.json b/tests/__snapshots__/code128-2/28/slow-0.json index 6e977ac4..2f106153 100644 --- a/tests/__snapshots__/code128-2/28/slow-0.json +++ b/tests/__snapshots__/code128-2/28/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad6e4d0", "bytesECI": "8b5dee3", "text": "31001171800000017989625355702636", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/28/slow-180.json b/tests/__snapshots__/code128-2/28/slow-180.json index fcea636a..f9bf11aa 100644 --- a/tests/__snapshots__/code128-2/28/slow-180.json +++ b/tests/__snapshots__/code128-2/28/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad6e4d0", "bytesECI": "8b5dee3", "text": "31001171800000017989625355702636", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/31/fast-0.json b/tests/__snapshots__/code128-2/31/fast-0.json index f980abbb..e84a922e 100644 --- a/tests/__snapshots__/code128-2/31/fast-0.json +++ b/tests/__snapshots__/code128-2/31/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5494d11", "bytesECI": "dc65547", "text": "42094043", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/31/fast-180.json b/tests/__snapshots__/code128-2/31/fast-180.json index bd6faa3a..91a5c579 100644 --- a/tests/__snapshots__/code128-2/31/fast-180.json +++ b/tests/__snapshots__/code128-2/31/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5494d11", "bytesECI": "dc65547", "text": "42094043", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/31/slow-0.json b/tests/__snapshots__/code128-2/31/slow-0.json index 036752ee..a2c84b9a 100644 --- a/tests/__snapshots__/code128-2/31/slow-0.json +++ b/tests/__snapshots__/code128-2/31/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5494d11", "bytesECI": "dc65547", "text": "42094043", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/31/slow-180.json b/tests/__snapshots__/code128-2/31/slow-180.json index 0855a138..fbef914c 100644 --- a/tests/__snapshots__/code128-2/31/slow-180.json +++ b/tests/__snapshots__/code128-2/31/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5494d11", "bytesECI": "dc65547", "text": "42094043", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/32/fast-0.json b/tests/__snapshots__/code128-2/32/fast-0.json index 1fbc17d5..ac9cdf78 100644 --- a/tests/__snapshots__/code128-2/32/fast-0.json +++ b/tests/__snapshots__/code128-2/32/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5494d11", "bytesECI": "dc65547", "text": "42094043", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/32/fast-180.json b/tests/__snapshots__/code128-2/32/fast-180.json index 1a4e92e0..1ae279ce 100644 --- a/tests/__snapshots__/code128-2/32/fast-180.json +++ b/tests/__snapshots__/code128-2/32/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5494d11", "bytesECI": "dc65547", "text": "42094043", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/32/slow-0.json b/tests/__snapshots__/code128-2/32/slow-0.json index 6564f7ed..98c9baf9 100644 --- a/tests/__snapshots__/code128-2/32/slow-0.json +++ b/tests/__snapshots__/code128-2/32/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5494d11", "bytesECI": "dc65547", "text": "42094043", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/32/slow-180.json b/tests/__snapshots__/code128-2/32/slow-180.json index 73e35f45..1f6193fb 100644 --- a/tests/__snapshots__/code128-2/32/slow-180.json +++ b/tests/__snapshots__/code128-2/32/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5494d11", "bytesECI": "dc65547", "text": "42094043", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/35/fast-0.json b/tests/__snapshots__/code128-2/35/fast-0.json index a0762837..4794da01 100644 --- a/tests/__snapshots__/code128-2/35/fast-0.json +++ b/tests/__snapshots__/code128-2/35/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b48e47c", "bytesECI": "fc19bf7", "text": "30885909173823", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/35/fast-180.json b/tests/__snapshots__/code128-2/35/fast-180.json index 5bb1d6c9..90a21008 100644 --- a/tests/__snapshots__/code128-2/35/fast-180.json +++ b/tests/__snapshots__/code128-2/35/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b48e47c", "bytesECI": "fc19bf7", "text": "30885909173823", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/35/slow-0.json b/tests/__snapshots__/code128-2/35/slow-0.json index ca736558..73959293 100644 --- a/tests/__snapshots__/code128-2/35/slow-0.json +++ b/tests/__snapshots__/code128-2/35/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b48e47c", "bytesECI": "fc19bf7", "text": "30885909173823", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/35/slow-180.json b/tests/__snapshots__/code128-2/35/slow-180.json index 4f3b815e..29667d55 100644 --- a/tests/__snapshots__/code128-2/35/slow-180.json +++ b/tests/__snapshots__/code128-2/35/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b48e47c", "bytesECI": "fc19bf7", "text": "30885909173823", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/36/fast-0.json b/tests/__snapshots__/code128-2/36/fast-0.json index dd67d591..c0c92ec5 100644 --- a/tests/__snapshots__/code128-2/36/fast-0.json +++ b/tests/__snapshots__/code128-2/36/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b48e47c", "bytesECI": "fc19bf7", "text": "30885909173823", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/36/fast-180.json b/tests/__snapshots__/code128-2/36/fast-180.json index 9e56903c..2c139e68 100644 --- a/tests/__snapshots__/code128-2/36/fast-180.json +++ b/tests/__snapshots__/code128-2/36/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b48e47c", "bytesECI": "fc19bf7", "text": "30885909173823", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/36/slow-0.json b/tests/__snapshots__/code128-2/36/slow-0.json index 127be64b..3a2f2149 100644 --- a/tests/__snapshots__/code128-2/36/slow-0.json +++ b/tests/__snapshots__/code128-2/36/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b48e47c", "bytesECI": "fc19bf7", "text": "30885909173823", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/36/slow-180.json b/tests/__snapshots__/code128-2/36/slow-180.json index c35f15ca..964f8d16 100644 --- a/tests/__snapshots__/code128-2/36/slow-180.json +++ b/tests/__snapshots__/code128-2/36/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b48e47c", "bytesECI": "fc19bf7", "text": "30885909173823", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/37/slow-0.json b/tests/__snapshots__/code128-2/37/slow-0.json index dda4f787..c4420037 100644 --- a/tests/__snapshots__/code128-2/37/slow-0.json +++ b/tests/__snapshots__/code128-2/37/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e4de835", "bytesECI": "1e6af12", "text": "FGGQ6D1", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/37/slow-180.json b/tests/__snapshots__/code128-2/37/slow-180.json index 38aec467..dc89c697 100644 --- a/tests/__snapshots__/code128-2/37/slow-180.json +++ b/tests/__snapshots__/code128-2/37/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e4de835", "bytesECI": "1e6af12", "text": "FGGQ6D1", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/38/fast-0.json b/tests/__snapshots__/code128-2/38/fast-0.json index 1a4514f6..1c0aef32 100644 --- a/tests/__snapshots__/code128-2/38/fast-0.json +++ b/tests/__snapshots__/code128-2/38/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e4de835", "bytesECI": "1e6af12", "text": "FGGQ6D1", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/38/fast-180.json b/tests/__snapshots__/code128-2/38/fast-180.json index ea551de4..1d6c7e26 100644 --- a/tests/__snapshots__/code128-2/38/fast-180.json +++ b/tests/__snapshots__/code128-2/38/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e4de835", "bytesECI": "1e6af12", "text": "FGGQ6D1", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/38/slow-0.json b/tests/__snapshots__/code128-2/38/slow-0.json index d981dea1..7b1ea0cb 100644 --- a/tests/__snapshots__/code128-2/38/slow-0.json +++ b/tests/__snapshots__/code128-2/38/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e4de835", "bytesECI": "1e6af12", "text": "FGGQ6D1", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-2/38/slow-180.json b/tests/__snapshots__/code128-2/38/slow-180.json index 9e2a43a8..47e18c49 100644 --- a/tests/__snapshots__/code128-2/38/slow-180.json +++ b/tests/__snapshots__/code128-2/38/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e4de835", "bytesECI": "1e6af12", "text": "FGGQ6D1", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-3/1/fast-0.json b/tests/__snapshots__/code128-3/1/fast-0.json index f46a90a8..0802b3d8 100644 --- a/tests/__snapshots__/code128-3/1/fast-0.json +++ b/tests/__snapshots__/code128-3/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7536b4b", "bytesECI": "f1276e1", "text": "10064908", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-3/1/fast-180.json b/tests/__snapshots__/code128-3/1/fast-180.json index 5b5658b2..d3053160 100644 --- a/tests/__snapshots__/code128-3/1/fast-180.json +++ b/tests/__snapshots__/code128-3/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7536b4b", "bytesECI": "f1276e1", "text": "10064908", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-3/1/slow-0.json b/tests/__snapshots__/code128-3/1/slow-0.json index 51054b8c..278cc830 100644 --- a/tests/__snapshots__/code128-3/1/slow-0.json +++ b/tests/__snapshots__/code128-3/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7536b4b", "bytesECI": "f1276e1", "text": "10064908", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-3/1/slow-180.json b/tests/__snapshots__/code128-3/1/slow-180.json index 5bd66ae3..d74cd8ef 100644 --- a/tests/__snapshots__/code128-3/1/slow-180.json +++ b/tests/__snapshots__/code128-3/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7536b4b", "bytesECI": "f1276e1", "text": "10064908", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-3/2/fast-0.json b/tests/__snapshots__/code128-3/2/fast-0.json index 9b1811e9..7a5b4156 100644 --- a/tests/__snapshots__/code128-3/2/fast-0.json +++ b/tests/__snapshots__/code128-3/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1f32caa", "bytesECI": "4a4ab92", "text": "10068408", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-3/2/fast-180.json b/tests/__snapshots__/code128-3/2/fast-180.json index 2a9a589a..e177c9a4 100644 --- a/tests/__snapshots__/code128-3/2/fast-180.json +++ b/tests/__snapshots__/code128-3/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1f32caa", "bytesECI": "4a4ab92", "text": "10068408", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-3/2/slow-0.json b/tests/__snapshots__/code128-3/2/slow-0.json index 57914881..8a5d87b0 100644 --- a/tests/__snapshots__/code128-3/2/slow-0.json +++ b/tests/__snapshots__/code128-3/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1f32caa", "bytesECI": "4a4ab92", "text": "10068408", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code128-3/2/slow-180.json b/tests/__snapshots__/code128-3/2/slow-180.json index 19808697..f3235c01 100644 --- a/tests/__snapshots__/code128-3/2/slow-180.json +++ b/tests/__snapshots__/code128-3/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1f32caa", "bytesECI": "4a4ab92", "text": "10068408", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/1/fast-0.json b/tests/__snapshots__/code39-1/1/fast-0.json index ee1d032c..53d17dc7 100644 --- a/tests/__snapshots__/code39-1/1/fast-0.json +++ b/tests/__snapshots__/code39-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7209865", "bytesECI": "2a660b7", "text": "TEST-SHEET", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/1/fast-180.json b/tests/__snapshots__/code39-1/1/fast-180.json index f64c6d7b..995e0934 100644 --- a/tests/__snapshots__/code39-1/1/fast-180.json +++ b/tests/__snapshots__/code39-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7209865", "bytesECI": "2a660b7", "text": "TEST-SHEET", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/1/slow-0.json b/tests/__snapshots__/code39-1/1/slow-0.json index bb60b194..93581d8d 100644 --- a/tests/__snapshots__/code39-1/1/slow-0.json +++ b/tests/__snapshots__/code39-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7209865", "bytesECI": "2a660b7", "text": "TEST-SHEET", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/1/slow-180.json b/tests/__snapshots__/code39-1/1/slow-180.json index 6dd5968e..4727cd3a 100644 --- a/tests/__snapshots__/code39-1/1/slow-180.json +++ b/tests/__snapshots__/code39-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7209865", "bytesECI": "2a660b7", "text": "TEST-SHEET", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/2/fast-0.json b/tests/__snapshots__/code39-1/2/fast-0.json index 3cb25135..be46e324 100644 --- a/tests/__snapshots__/code39-1/2/fast-0.json +++ b/tests/__snapshots__/code39-1/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "369ed64", "bytesECI": "3ac509e", "text": " WWW.CITRONSOFT.COM ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/2/fast-180.json b/tests/__snapshots__/code39-1/2/fast-180.json index c9ad13cc..205876b4 100644 --- a/tests/__snapshots__/code39-1/2/fast-180.json +++ b/tests/__snapshots__/code39-1/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "369ed64", "bytesECI": "3ac509e", "text": " WWW.CITRONSOFT.COM ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/2/slow-0.json b/tests/__snapshots__/code39-1/2/slow-0.json index f07a8051..ec38283d 100644 --- a/tests/__snapshots__/code39-1/2/slow-0.json +++ b/tests/__snapshots__/code39-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "369ed64", "bytesECI": "3ac509e", "text": " WWW.CITRONSOFT.COM ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/2/slow-180.json b/tests/__snapshots__/code39-1/2/slow-180.json index e58f5c4b..79152013 100644 --- a/tests/__snapshots__/code39-1/2/slow-180.json +++ b/tests/__snapshots__/code39-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "369ed64", "bytesECI": "3ac509e", "text": " WWW.CITRONSOFT.COM ", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/3/fast-0.json b/tests/__snapshots__/code39-1/3/fast-0.json index 7f972aa9..28e86597 100644 --- a/tests/__snapshots__/code39-1/3/fast-0.json +++ b/tests/__snapshots__/code39-1/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "eb4cefd", "bytesECI": "34fd111", "text": "MOROVIA", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/3/fast-180.json b/tests/__snapshots__/code39-1/3/fast-180.json index d64c8b03..2a30f67a 100644 --- a/tests/__snapshots__/code39-1/3/fast-180.json +++ b/tests/__snapshots__/code39-1/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "eb4cefd", "bytesECI": "34fd111", "text": "MOROVIA", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/3/slow-0.json b/tests/__snapshots__/code39-1/3/slow-0.json index 19c83796..3a563f7a 100644 --- a/tests/__snapshots__/code39-1/3/slow-0.json +++ b/tests/__snapshots__/code39-1/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "eb4cefd", "bytesECI": "34fd111", "text": "MOROVIA", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/3/slow-180.json b/tests/__snapshots__/code39-1/3/slow-180.json index 097e1d09..60ee3763 100644 --- a/tests/__snapshots__/code39-1/3/slow-180.json +++ b/tests/__snapshots__/code39-1/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "eb4cefd", "bytesECI": "34fd111", "text": "MOROVIA", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/4/fast-0.json b/tests/__snapshots__/code39-1/4/fast-0.json index ceacb68b..991821fb 100644 --- a/tests/__snapshots__/code39-1/4/fast-0.json +++ b/tests/__snapshots__/code39-1/4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e0bebd2", "bytesECI": "db76ab2", "text": "ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/4/fast-180.json b/tests/__snapshots__/code39-1/4/fast-180.json index 72793c45..0ffa89af 100644 --- a/tests/__snapshots__/code39-1/4/fast-180.json +++ b/tests/__snapshots__/code39-1/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e0bebd2", "bytesECI": "db76ab2", "text": "ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/4/slow-0.json b/tests/__snapshots__/code39-1/4/slow-0.json index 1342c09c..9013d66c 100644 --- a/tests/__snapshots__/code39-1/4/slow-0.json +++ b/tests/__snapshots__/code39-1/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e0bebd2", "bytesECI": "db76ab2", "text": "ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-1/4/slow-180.json b/tests/__snapshots__/code39-1/4/slow-180.json index fce82cd2..0651314b 100644 --- a/tests/__snapshots__/code39-1/4/slow-180.json +++ b/tests/__snapshots__/code39-1/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e0bebd2", "bytesECI": "db76ab2", "text": "ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-2/1/fast-0.json b/tests/__snapshots__/code39-2/1/fast-0.json index 92b660d6..704b7bd2 100644 --- a/tests/__snapshots__/code39-2/1/fast-0.json +++ b/tests/__snapshots__/code39-2/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c5feedb", "bytesECI": "e447392", "text": "Extended !?*#", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-2/1/fast-180.json b/tests/__snapshots__/code39-2/1/fast-180.json index b83a32ad..aaac044e 100644 --- a/tests/__snapshots__/code39-2/1/fast-180.json +++ b/tests/__snapshots__/code39-2/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c5feedb", "bytesECI": "e447392", "text": "Extended !?*#", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-2/1/slow-0.json b/tests/__snapshots__/code39-2/1/slow-0.json index c7008ab3..6f9bf76d 100644 --- a/tests/__snapshots__/code39-2/1/slow-0.json +++ b/tests/__snapshots__/code39-2/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c5feedb", "bytesECI": "e447392", "text": "Extended !?*#", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-2/1/slow-180.json b/tests/__snapshots__/code39-2/1/slow-180.json index 25b98414..c1b6e4d2 100644 --- a/tests/__snapshots__/code39-2/1/slow-180.json +++ b/tests/__snapshots__/code39-2/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c5feedb", "bytesECI": "e447392", "text": "Extended !?*#", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-2/2/fast-0.json b/tests/__snapshots__/code39-2/2/fast-0.json index e6ec8f0a..42f32716 100644 --- a/tests/__snapshots__/code39-2/2/fast-0.json +++ b/tests/__snapshots__/code39-2/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "337c73a", "bytesECI": "d2a7a99", "text": "12ab", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-2/2/fast-180.json b/tests/__snapshots__/code39-2/2/fast-180.json index 9b7e97c6..ea6e71a0 100644 --- a/tests/__snapshots__/code39-2/2/fast-180.json +++ b/tests/__snapshots__/code39-2/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "337c73a", "bytesECI": "d2a7a99", "text": "12ab", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-2/2/slow-0.json b/tests/__snapshots__/code39-2/2/slow-0.json index ee89efcb..ea7ca3d3 100644 --- a/tests/__snapshots__/code39-2/2/slow-0.json +++ b/tests/__snapshots__/code39-2/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "337c73a", "bytesECI": "d2a7a99", "text": "12ab", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-2/2/slow-180.json b/tests/__snapshots__/code39-2/2/slow-180.json index 2a80799d..d21e3762 100644 --- a/tests/__snapshots__/code39-2/2/slow-180.json +++ b/tests/__snapshots__/code39-2/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "337c73a", "bytesECI": "d2a7a99", "text": "12ab", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/01/fast-0.json b/tests/__snapshots__/code39-3/01/fast-0.json index 2905d0dc..0097bc7d 100644 --- a/tests/__snapshots__/code39-3/01/fast-0.json +++ b/tests/__snapshots__/code39-3/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "caa6799", "bytesECI": "01aa35c", "text": "165627", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/01/fast-180.json b/tests/__snapshots__/code39-3/01/fast-180.json index 96c36790..b43cc7ed 100644 --- a/tests/__snapshots__/code39-3/01/fast-180.json +++ b/tests/__snapshots__/code39-3/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "caa6799", "bytesECI": "01aa35c", "text": "165627", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/01/slow-0.json b/tests/__snapshots__/code39-3/01/slow-0.json index a35606df..4d05e5e9 100644 --- a/tests/__snapshots__/code39-3/01/slow-0.json +++ b/tests/__snapshots__/code39-3/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "caa6799", "bytesECI": "01aa35c", "text": "165627", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/01/slow-180.json b/tests/__snapshots__/code39-3/01/slow-180.json index 3d571b23..afca905d 100644 --- a/tests/__snapshots__/code39-3/01/slow-180.json +++ b/tests/__snapshots__/code39-3/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "caa6799", "bytesECI": "01aa35c", "text": "165627", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/02/fast-0.json b/tests/__snapshots__/code39-3/02/fast-0.json index 995e323a..6356b576 100644 --- a/tests/__snapshots__/code39-3/02/fast-0.json +++ b/tests/__snapshots__/code39-3/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "caa6799", "bytesECI": "01aa35c", "text": "165627", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/02/fast-180.json b/tests/__snapshots__/code39-3/02/fast-180.json index 74a25272..cc2adc1d 100644 --- a/tests/__snapshots__/code39-3/02/fast-180.json +++ b/tests/__snapshots__/code39-3/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "caa6799", "bytesECI": "01aa35c", "text": "165627", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/02/slow-0.json b/tests/__snapshots__/code39-3/02/slow-0.json index 5f94b3ab..24c8e42c 100644 --- a/tests/__snapshots__/code39-3/02/slow-0.json +++ b/tests/__snapshots__/code39-3/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "caa6799", "bytesECI": "01aa35c", "text": "165627", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/02/slow-180.json b/tests/__snapshots__/code39-3/02/slow-180.json index a79546ae..a48d4bf6 100644 --- a/tests/__snapshots__/code39-3/02/slow-180.json +++ b/tests/__snapshots__/code39-3/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "caa6799", "bytesECI": "01aa35c", "text": "165627", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/03/fast-0.json b/tests/__snapshots__/code39-3/03/fast-0.json index 9d31cfa4..50bb1ecb 100644 --- a/tests/__snapshots__/code39-3/03/fast-0.json +++ b/tests/__snapshots__/code39-3/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ead6993", "bytesECI": "a63ead6", "text": "001EC947D49B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/03/fast-180.json b/tests/__snapshots__/code39-3/03/fast-180.json index f4b845d8..8e61997a 100644 --- a/tests/__snapshots__/code39-3/03/fast-180.json +++ b/tests/__snapshots__/code39-3/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ead6993", "bytesECI": "a63ead6", "text": "001EC947D49B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/03/slow-0.json b/tests/__snapshots__/code39-3/03/slow-0.json index 2fd51691..6e6668c9 100644 --- a/tests/__snapshots__/code39-3/03/slow-0.json +++ b/tests/__snapshots__/code39-3/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ead6993", "bytesECI": "a63ead6", "text": "001EC947D49B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/03/slow-180.json b/tests/__snapshots__/code39-3/03/slow-180.json index 84042678..dc715220 100644 --- a/tests/__snapshots__/code39-3/03/slow-180.json +++ b/tests/__snapshots__/code39-3/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ead6993", "bytesECI": "a63ead6", "text": "001EC947D49B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/05/fast-0.json b/tests/__snapshots__/code39-3/05/fast-0.json index de5b0131..1b1e412b 100644 --- a/tests/__snapshots__/code39-3/05/fast-0.json +++ b/tests/__snapshots__/code39-3/05/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ead6993", "bytesECI": "a63ead6", "text": "001EC947D49B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/05/fast-180.json b/tests/__snapshots__/code39-3/05/fast-180.json index 03f7ce28..a6725a2f 100644 --- a/tests/__snapshots__/code39-3/05/fast-180.json +++ b/tests/__snapshots__/code39-3/05/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ead6993", "bytesECI": "a63ead6", "text": "001EC947D49B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/05/slow-0.json b/tests/__snapshots__/code39-3/05/slow-0.json index fe0944b5..a18fd767 100644 --- a/tests/__snapshots__/code39-3/05/slow-0.json +++ b/tests/__snapshots__/code39-3/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ead6993", "bytesECI": "a63ead6", "text": "001EC947D49B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/05/slow-180.json b/tests/__snapshots__/code39-3/05/slow-180.json index 4e031614..efec9f8f 100644 --- a/tests/__snapshots__/code39-3/05/slow-180.json +++ b/tests/__snapshots__/code39-3/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ead6993", "bytesECI": "a63ead6", "text": "001EC947D49B", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/07/fast-0.json b/tests/__snapshots__/code39-3/07/fast-0.json index 61be1eb2..10eecd9d 100644 --- a/tests/__snapshots__/code39-3/07/fast-0.json +++ b/tests/__snapshots__/code39-3/07/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7439017", "bytesECI": "98aacb2", "text": "165340", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/07/fast-180.json b/tests/__snapshots__/code39-3/07/fast-180.json index 695d07eb..1b2e2893 100644 --- a/tests/__snapshots__/code39-3/07/fast-180.json +++ b/tests/__snapshots__/code39-3/07/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7439017", "bytesECI": "98aacb2", "text": "165340", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/07/slow-0.json b/tests/__snapshots__/code39-3/07/slow-0.json index 622fe7cd..a53ed04f 100644 --- a/tests/__snapshots__/code39-3/07/slow-0.json +++ b/tests/__snapshots__/code39-3/07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7439017", "bytesECI": "98aacb2", "text": "165340", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/07/slow-180.json b/tests/__snapshots__/code39-3/07/slow-180.json index 8e70fc1b..714f302d 100644 --- a/tests/__snapshots__/code39-3/07/slow-180.json +++ b/tests/__snapshots__/code39-3/07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7439017", "bytesECI": "98aacb2", "text": "165340", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/08/fast-0.json b/tests/__snapshots__/code39-3/08/fast-0.json index 5a0dae7c..b9cdf74e 100644 --- a/tests/__snapshots__/code39-3/08/fast-0.json +++ b/tests/__snapshots__/code39-3/08/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7439017", "bytesECI": "98aacb2", "text": "165340", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/08/fast-180.json b/tests/__snapshots__/code39-3/08/fast-180.json index d5514bee..367dac3c 100644 --- a/tests/__snapshots__/code39-3/08/fast-180.json +++ b/tests/__snapshots__/code39-3/08/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7439017", "bytesECI": "98aacb2", "text": "165340", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/08/slow-0.json b/tests/__snapshots__/code39-3/08/slow-0.json index 7d3b7693..5a017b2a 100644 --- a/tests/__snapshots__/code39-3/08/slow-0.json +++ b/tests/__snapshots__/code39-3/08/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7439017", "bytesECI": "98aacb2", "text": "165340", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/08/slow-180.json b/tests/__snapshots__/code39-3/08/slow-180.json index 7bb8a65b..a80d3e79 100644 --- a/tests/__snapshots__/code39-3/08/slow-180.json +++ b/tests/__snapshots__/code39-3/08/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7439017", "bytesECI": "98aacb2", "text": "165340", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/09/fast-0.json b/tests/__snapshots__/code39-3/09/fast-0.json index 3e0ae940..f4895d08 100644 --- a/tests/__snapshots__/code39-3/09/fast-0.json +++ b/tests/__snapshots__/code39-3/09/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7439017", "bytesECI": "98aacb2", "text": "165340", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/09/fast-180.json b/tests/__snapshots__/code39-3/09/fast-180.json index 51794900..fb6fc0d4 100644 --- a/tests/__snapshots__/code39-3/09/fast-180.json +++ b/tests/__snapshots__/code39-3/09/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7439017", "bytesECI": "98aacb2", "text": "165340", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/09/slow-0.json b/tests/__snapshots__/code39-3/09/slow-0.json index 62616d6a..20646009 100644 --- a/tests/__snapshots__/code39-3/09/slow-0.json +++ b/tests/__snapshots__/code39-3/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7439017", "bytesECI": "98aacb2", "text": "165340", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/09/slow-180.json b/tests/__snapshots__/code39-3/09/slow-180.json index 0001817e..b09187a4 100644 --- a/tests/__snapshots__/code39-3/09/slow-180.json +++ b/tests/__snapshots__/code39-3/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7439017", "bytesECI": "98aacb2", "text": "165340", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/10/fast-0.json b/tests/__snapshots__/code39-3/10/fast-0.json index ba23b011..1a096eee 100644 --- a/tests/__snapshots__/code39-3/10/fast-0.json +++ b/tests/__snapshots__/code39-3/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2b67608", "bytesECI": "2e03348", "text": "001EC94767E0", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/10/fast-180.json b/tests/__snapshots__/code39-3/10/fast-180.json index fcaf2559..1a8a74e4 100644 --- a/tests/__snapshots__/code39-3/10/fast-180.json +++ b/tests/__snapshots__/code39-3/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2b67608", "bytesECI": "2e03348", "text": "001EC94767E0", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/10/slow-0.json b/tests/__snapshots__/code39-3/10/slow-0.json index ccb12d4d..b10b5ebb 100644 --- a/tests/__snapshots__/code39-3/10/slow-0.json +++ b/tests/__snapshots__/code39-3/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2b67608", "bytesECI": "2e03348", "text": "001EC94767E0", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/10/slow-180.json b/tests/__snapshots__/code39-3/10/slow-180.json index 7eea65b6..ce85c99d 100644 --- a/tests/__snapshots__/code39-3/10/slow-180.json +++ b/tests/__snapshots__/code39-3/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2b67608", "bytesECI": "2e03348", "text": "001EC94767E0", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/12/fast-0.json b/tests/__snapshots__/code39-3/12/fast-0.json index 9b70de74..877a1541 100644 --- a/tests/__snapshots__/code39-3/12/fast-0.json +++ b/tests/__snapshots__/code39-3/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2b67608", "bytesECI": "2e03348", "text": "001EC94767E0", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/12/fast-180.json b/tests/__snapshots__/code39-3/12/fast-180.json index 31b04c4d..d664776e 100644 --- a/tests/__snapshots__/code39-3/12/fast-180.json +++ b/tests/__snapshots__/code39-3/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2b67608", "bytesECI": "2e03348", "text": "001EC94767E0", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/12/slow-0.json b/tests/__snapshots__/code39-3/12/slow-0.json index 885dab29..a97c67d4 100644 --- a/tests/__snapshots__/code39-3/12/slow-0.json +++ b/tests/__snapshots__/code39-3/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2b67608", "bytesECI": "2e03348", "text": "001EC94767E0", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/12/slow-180.json b/tests/__snapshots__/code39-3/12/slow-180.json index 173eb733..3a7b6be9 100644 --- a/tests/__snapshots__/code39-3/12/slow-180.json +++ b/tests/__snapshots__/code39-3/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2b67608", "bytesECI": "2e03348", "text": "001EC94767E0", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/14/fast-0.json b/tests/__snapshots__/code39-3/14/fast-0.json index e5250acf..5a0cfab6 100644 --- a/tests/__snapshots__/code39-3/14/fast-0.json +++ b/tests/__snapshots__/code39-3/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "33096d3", "bytesECI": "3bfcb83", "text": "404785", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/14/fast-180.json b/tests/__snapshots__/code39-3/14/fast-180.json index 601c5817..d2cb2454 100644 --- a/tests/__snapshots__/code39-3/14/fast-180.json +++ b/tests/__snapshots__/code39-3/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "33096d3", "bytesECI": "3bfcb83", "text": "404785", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/14/slow-0.json b/tests/__snapshots__/code39-3/14/slow-0.json index f97994dd..84cabe4f 100644 --- a/tests/__snapshots__/code39-3/14/slow-0.json +++ b/tests/__snapshots__/code39-3/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "33096d3", "bytesECI": "3bfcb83", "text": "404785", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/14/slow-180.json b/tests/__snapshots__/code39-3/14/slow-180.json index b5ffd3b3..cb3b7427 100644 --- a/tests/__snapshots__/code39-3/14/slow-180.json +++ b/tests/__snapshots__/code39-3/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "33096d3", "bytesECI": "3bfcb83", "text": "404785", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/15/fast-0.json b/tests/__snapshots__/code39-3/15/fast-0.json index 3f53c6d2..051256d3 100644 --- a/tests/__snapshots__/code39-3/15/fast-0.json +++ b/tests/__snapshots__/code39-3/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "33096d3", "bytesECI": "3bfcb83", "text": "404785", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/15/fast-180.json b/tests/__snapshots__/code39-3/15/fast-180.json index 98fd4f56..43d93d18 100644 --- a/tests/__snapshots__/code39-3/15/fast-180.json +++ b/tests/__snapshots__/code39-3/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "33096d3", "bytesECI": "3bfcb83", "text": "404785", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/15/slow-0.json b/tests/__snapshots__/code39-3/15/slow-0.json index f8560bee..adb94bd5 100644 --- a/tests/__snapshots__/code39-3/15/slow-0.json +++ b/tests/__snapshots__/code39-3/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "33096d3", "bytesECI": "3bfcb83", "text": "404785", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/15/slow-180.json b/tests/__snapshots__/code39-3/15/slow-180.json index ca274a98..15283e40 100644 --- a/tests/__snapshots__/code39-3/15/slow-180.json +++ b/tests/__snapshots__/code39-3/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "33096d3", "bytesECI": "3bfcb83", "text": "404785", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/16/fast-0.json b/tests/__snapshots__/code39-3/16/fast-0.json index 822b2814..6a6af569 100644 --- a/tests/__snapshots__/code39-3/16/fast-0.json +++ b/tests/__snapshots__/code39-3/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "33096d3", "bytesECI": "3bfcb83", "text": "404785", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/16/fast-180.json b/tests/__snapshots__/code39-3/16/fast-180.json index adcd5751..e8af5c13 100644 --- a/tests/__snapshots__/code39-3/16/fast-180.json +++ b/tests/__snapshots__/code39-3/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "33096d3", "bytesECI": "3bfcb83", "text": "404785", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/16/slow-0.json b/tests/__snapshots__/code39-3/16/slow-0.json index ecbd8ea3..b5c4f5b3 100644 --- a/tests/__snapshots__/code39-3/16/slow-0.json +++ b/tests/__snapshots__/code39-3/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "33096d3", "bytesECI": "3bfcb83", "text": "404785", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code39-3/16/slow-180.json b/tests/__snapshots__/code39-3/16/slow-180.json index 5c25061c..b8b1203d 100644 --- a/tests/__snapshots__/code39-3/16/slow-180.json +++ b/tests/__snapshots__/code39-3/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "33096d3", "bytesECI": "3bfcb83", "text": "404785", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code93-1/1/fast-0.json b/tests/__snapshots__/code93-1/1/fast-0.json index a3c133a3..4e12fc7c 100644 --- a/tests/__snapshots__/code93-1/1/fast-0.json +++ b/tests/__snapshots__/code93-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "cdea2e8", "text": "1234567890", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code93-1/1/fast-180.json b/tests/__snapshots__/code93-1/1/fast-180.json index 6982460e..d8e03a1f 100644 --- a/tests/__snapshots__/code93-1/1/fast-180.json +++ b/tests/__snapshots__/code93-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "cdea2e8", "text": "1234567890", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code93-1/1/slow-0.json b/tests/__snapshots__/code93-1/1/slow-0.json index e097f2fc..3d216061 100644 --- a/tests/__snapshots__/code93-1/1/slow-0.json +++ b/tests/__snapshots__/code93-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "cdea2e8", "text": "1234567890", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code93-1/1/slow-180.json b/tests/__snapshots__/code93-1/1/slow-180.json index 951a144e..8f905424 100644 --- a/tests/__snapshots__/code93-1/1/slow-180.json +++ b/tests/__snapshots__/code93-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "cdea2e8", "text": "1234567890", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code93-1/2/fast-0.json b/tests/__snapshots__/code93-1/2/fast-0.json index 366958d6..136c84d0 100644 --- a/tests/__snapshots__/code93-1/2/fast-0.json +++ b/tests/__snapshots__/code93-1/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "68bcf7c", "bytesECI": "7e50a44", "text": "CODE 93", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code93-1/2/fast-180.json b/tests/__snapshots__/code93-1/2/fast-180.json index eaac07d2..85b7adb0 100644 --- a/tests/__snapshots__/code93-1/2/fast-180.json +++ b/tests/__snapshots__/code93-1/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "68bcf7c", "bytesECI": "7e50a44", "text": "CODE 93", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code93-1/2/slow-0.json b/tests/__snapshots__/code93-1/2/slow-0.json index 3a3f81bf..61ef084c 100644 --- a/tests/__snapshots__/code93-1/2/slow-0.json +++ b/tests/__snapshots__/code93-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "68bcf7c", "bytesECI": "7e50a44", "text": "CODE 93", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code93-1/2/slow-180.json b/tests/__snapshots__/code93-1/2/slow-180.json index bc4a4e1c..d0711510 100644 --- a/tests/__snapshots__/code93-1/2/slow-180.json +++ b/tests/__snapshots__/code93-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "68bcf7c", "bytesECI": "7e50a44", "text": "CODE 93", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code93-1/3/fast-0.json b/tests/__snapshots__/code93-1/3/fast-0.json index 07489900..9fab81e0 100644 --- a/tests/__snapshots__/code93-1/3/fast-0.json +++ b/tests/__snapshots__/code93-1/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c97c29c", "bytesECI": "268428b", "text": "DATA", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code93-1/3/fast-180.json b/tests/__snapshots__/code93-1/3/fast-180.json index b64e148d..6f7a2244 100644 --- a/tests/__snapshots__/code93-1/3/fast-180.json +++ b/tests/__snapshots__/code93-1/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c97c29c", "bytesECI": "268428b", "text": "DATA", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code93-1/3/slow-0.json b/tests/__snapshots__/code93-1/3/slow-0.json index b7b5bb15..80bf8556 100644 --- a/tests/__snapshots__/code93-1/3/slow-0.json +++ b/tests/__snapshots__/code93-1/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c97c29c", "bytesECI": "268428b", "text": "DATA", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/code93-1/3/slow-180.json b/tests/__snapshots__/code93-1/3/slow-180.json index 24ea67b3..cfb7604e 100644 --- a/tests/__snapshots__/code93-1/3/slow-180.json +++ b/tests/__snapshots__/code93-1/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c97c29c", "bytesECI": "268428b", "text": "DATA", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/databarltd-1/00/fast-0.json b/tests/__snapshots__/databarltd-1/00/fast-0.json index 94ecddb6..1048dcb5 100644 --- a/tests/__snapshots__/databarltd-1/00/fast-0.json +++ b/tests/__snapshots__/databarltd-1/00/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9fdb5e2", "bytesECI": "3e38413", "text": "0100000000000000", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/databarltd-1/00/fast-180.json b/tests/__snapshots__/databarltd-1/00/fast-180.json index 7a6c035a..22b833bc 100644 --- a/tests/__snapshots__/databarltd-1/00/fast-180.json +++ b/tests/__snapshots__/databarltd-1/00/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9fdb5e2", "bytesECI": "3e38413", "text": "0100000000000000", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/databarltd-1/00/pure-0.json b/tests/__snapshots__/databarltd-1/00/pure-0.json index 51df84b2..62f67da7 100644 --- a/tests/__snapshots__/databarltd-1/00/pure-0.json +++ b/tests/__snapshots__/databarltd-1/00/pure-0.json @@ -5,7 +5,7 @@ "bytes": "9fdb5e2", "bytesECI": "3e38413", "text": "0100000000000000", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/databarltd-1/00/slow-0.json b/tests/__snapshots__/databarltd-1/00/slow-0.json index 94ecddb6..1048dcb5 100644 --- a/tests/__snapshots__/databarltd-1/00/slow-0.json +++ b/tests/__snapshots__/databarltd-1/00/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9fdb5e2", "bytesECI": "3e38413", "text": "0100000000000000", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/databarltd-1/00/slow-180.json b/tests/__snapshots__/databarltd-1/00/slow-180.json index 7a6c035a..22b833bc 100644 --- a/tests/__snapshots__/databarltd-1/00/slow-180.json +++ b/tests/__snapshots__/databarltd-1/00/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9fdb5e2", "bytesECI": "3e38413", "text": "0100000000000000", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/databarltd-1/01/fast-0.json b/tests/__snapshots__/databarltd-1/01/fast-0.json index 49e1c690..5e763306 100644 --- a/tests/__snapshots__/databarltd-1/01/fast-0.json +++ b/tests/__snapshots__/databarltd-1/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9be3a23", "bytesECI": "37869fb", "text": "0100068510889102", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/databarltd-1/01/fast-180.json b/tests/__snapshots__/databarltd-1/01/fast-180.json index 9e006457..bc8879e3 100644 --- a/tests/__snapshots__/databarltd-1/01/fast-180.json +++ b/tests/__snapshots__/databarltd-1/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9be3a23", "bytesECI": "37869fb", "text": "0100068510889102", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/databarltd-1/01/pure-0.json b/tests/__snapshots__/databarltd-1/01/pure-0.json index 90fb901c..ccffb465 100644 --- a/tests/__snapshots__/databarltd-1/01/pure-0.json +++ b/tests/__snapshots__/databarltd-1/01/pure-0.json @@ -5,7 +5,7 @@ "bytes": "9be3a23", "bytesECI": "37869fb", "text": "0100068510889102", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/databarltd-1/01/slow-0.json b/tests/__snapshots__/databarltd-1/01/slow-0.json index 49e1c690..5e763306 100644 --- a/tests/__snapshots__/databarltd-1/01/slow-0.json +++ b/tests/__snapshots__/databarltd-1/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9be3a23", "bytesECI": "37869fb", "text": "0100068510889102", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/databarltd-1/01/slow-180.json b/tests/__snapshots__/databarltd-1/01/slow-180.json index 9e006457..bc8879e3 100644 --- a/tests/__snapshots__/databarltd-1/01/slow-180.json +++ b/tests/__snapshots__/databarltd-1/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9be3a23", "bytesECI": "37869fb", "text": "0100068510889102", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/#378/fast-0.json b/tests/__snapshots__/datamatrix-1/#378/fast-0.json index b1beba5c..ac5ce4dc 100644 --- a/tests/__snapshots__/datamatrix-1/#378/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/#378/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e967788", "bytesECI": "ca6e3d9", "text": "Data Matrix Code", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/#378/pure-0.json b/tests/__snapshots__/datamatrix-1/#378/pure-0.json index b1beba5c..ac5ce4dc 100644 --- a/tests/__snapshots__/datamatrix-1/#378/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/#378/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e967788", "bytesECI": "ca6e3d9", "text": "Data Matrix Code", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/#378/slow-0.json b/tests/__snapshots__/datamatrix-1/#378/slow-0.json index b1beba5c..ac5ce4dc 100644 --- a/tests/__snapshots__/datamatrix-1/#378/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/#378/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e967788", "bytesECI": "ca6e3d9", "text": "Data Matrix Code", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/0123456789/fast-0.json b/tests/__snapshots__/datamatrix-1/0123456789/fast-0.json index bfec6b2a..8035169e 100644 --- a/tests/__snapshots__/datamatrix-1/0123456789/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/0123456789/fast-0.json @@ -5,7 +5,7 @@ "bytes": "84d8987", "bytesECI": "46af52d", "text": "0123456789", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/0123456789/pure-0.json b/tests/__snapshots__/datamatrix-1/0123456789/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/datamatrix-1/0123456789/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/0123456789/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/0123456789/slow-0.json b/tests/__snapshots__/datamatrix-1/0123456789/slow-0.json index bfec6b2a..8035169e 100644 --- a/tests/__snapshots__/datamatrix-1/0123456789/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/0123456789/slow-0.json @@ -5,7 +5,7 @@ "bytes": "84d8987", "bytesECI": "46af52d", "text": "0123456789", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/0123456789/slow-180.json b/tests/__snapshots__/datamatrix-1/0123456789/slow-180.json index bfdd4aba..e420f36d 100644 --- a/tests/__snapshots__/datamatrix-1/0123456789/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/0123456789/slow-180.json @@ -5,7 +5,7 @@ "bytes": "84d8987", "bytesECI": "46af52d", "text": "0123456789", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/0123456789/slow-270.json b/tests/__snapshots__/datamatrix-1/0123456789/slow-270.json index 5ac9fad5..0026d8a0 100644 --- a/tests/__snapshots__/datamatrix-1/0123456789/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/0123456789/slow-270.json @@ -5,7 +5,7 @@ "bytes": "84d8987", "bytesECI": "46af52d", "text": "0123456789", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/0123456789/slow-90.json b/tests/__snapshots__/datamatrix-1/0123456789/slow-90.json index 29f54a31..ba8bc774 100644 --- a/tests/__snapshots__/datamatrix-1/0123456789/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/0123456789/slow-90.json @@ -5,7 +5,7 @@ "bytes": "84d8987", "bytesECI": "46af52d", "text": "0123456789", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/144x144_wrong/fast-0.json b/tests/__snapshots__/datamatrix-1/144x144_wrong/fast-0.json index 205d4b1c..696cc7e6 100644 --- a/tests/__snapshots__/datamatrix-1/144x144_wrong/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/144x144_wrong/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5aa7170", "bytesECI": "19006d8", "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin....", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/144x144_wrong/pure-0.json b/tests/__snapshots__/datamatrix-1/144x144_wrong/pure-0.json index 205d4b1c..696cc7e6 100644 --- a/tests/__snapshots__/datamatrix-1/144x144_wrong/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/144x144_wrong/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5aa7170", "bytesECI": "19006d8", "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin....", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-0.json b/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-0.json index 205d4b1c..696cc7e6 100644 --- a/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5aa7170", "bytesECI": "19006d8", "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin....", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-180.json b/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-180.json index e5616755..e1c104c1 100644 --- a/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5aa7170", "bytesECI": "19006d8", "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin....", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-270.json b/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-270.json index 5f705974..160bc6f7 100644 --- a/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-270.json @@ -5,7 +5,7 @@ "bytes": "5aa7170", "bytesECI": "19006d8", "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin....", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-90.json b/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-90.json index e2f29797..8e06c598 100644 --- a/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/144x144_wrong/slow-90.json @@ -5,7 +5,7 @@ "bytes": "5aa7170", "bytesECI": "19006d8", "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin.... - there is still some space, so I'm filling it with letters. And I don't speak latin....", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "24" + "version": "24", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/C40/fast-0.json b/tests/__snapshots__/datamatrix-1/C40/fast-0.json index 014f049b..5b966314 100644 --- a/tests/__snapshots__/datamatrix-1/C40/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/C40/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0cd79be", "bytesECI": "d78d2bc", "text": "Testing C40", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/C40/pure-0.json b/tests/__snapshots__/datamatrix-1/C40/pure-0.json index 014f049b..5b966314 100644 --- a/tests/__snapshots__/datamatrix-1/C40/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/C40/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0cd79be", "bytesECI": "d78d2bc", "text": "Testing C40", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/C40/slow-0.json b/tests/__snapshots__/datamatrix-1/C40/slow-0.json index 014f049b..5b966314 100644 --- a/tests/__snapshots__/datamatrix-1/C40/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/C40/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0cd79be", "bytesECI": "d78d2bc", "text": "Testing C40", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/C40/slow-180.json b/tests/__snapshots__/datamatrix-1/C40/slow-180.json index 6cc959b7..ee984956 100644 --- a/tests/__snapshots__/datamatrix-1/C40/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/C40/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0cd79be", "bytesECI": "d78d2bc", "text": "Testing C40", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/C40/slow-270.json b/tests/__snapshots__/datamatrix-1/C40/slow-270.json index 03ff475e..1b4aab7a 100644 --- a/tests/__snapshots__/datamatrix-1/C40/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/C40/slow-270.json @@ -5,7 +5,7 @@ "bytes": "0cd79be", "bytesECI": "d78d2bc", "text": "Testing C40", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/C40/slow-90.json b/tests/__snapshots__/datamatrix-1/C40/slow-90.json index 13cd5ec1..7d8f935c 100644 --- a/tests/__snapshots__/datamatrix-1/C40/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/C40/slow-90.json @@ -5,7 +5,7 @@ "bytes": "0cd79be", "bytesECI": "d78d2bc", "text": "Testing C40", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/EDIFACT/fast-0.json b/tests/__snapshots__/datamatrix-1/EDIFACT/fast-0.json index 23fe04a2..b14f04ec 100644 --- a/tests/__snapshots__/datamatrix-1/EDIFACT/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/EDIFACT/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4f23b72", "bytesECI": "e953640", "text": "EDIFACTEDIFACT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/EDIFACT/pure-0.json b/tests/__snapshots__/datamatrix-1/EDIFACT/pure-0.json index 23fe04a2..b14f04ec 100644 --- a/tests/__snapshots__/datamatrix-1/EDIFACT/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/EDIFACT/pure-0.json @@ -5,7 +5,7 @@ "bytes": "4f23b72", "bytesECI": "e953640", "text": "EDIFACTEDIFACT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/EDIFACT/slow-0.json b/tests/__snapshots__/datamatrix-1/EDIFACT/slow-0.json index 23fe04a2..b14f04ec 100644 --- a/tests/__snapshots__/datamatrix-1/EDIFACT/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/EDIFACT/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4f23b72", "bytesECI": "e953640", "text": "EDIFACTEDIFACT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/EDIFACT/slow-180.json b/tests/__snapshots__/datamatrix-1/EDIFACT/slow-180.json index 4d34ae54..882ff1df 100644 --- a/tests/__snapshots__/datamatrix-1/EDIFACT/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/EDIFACT/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4f23b72", "bytesECI": "e953640", "text": "EDIFACTEDIFACT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/EDIFACT/slow-270.json b/tests/__snapshots__/datamatrix-1/EDIFACT/slow-270.json index a1d7c1be..678dcdcb 100644 --- a/tests/__snapshots__/datamatrix-1/EDIFACT/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/EDIFACT/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4f23b72", "bytesECI": "e953640", "text": "EDIFACTEDIFACT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/EDIFACT/slow-90.json b/tests/__snapshots__/datamatrix-1/EDIFACT/slow-90.json index 0df134a3..73830581 100644 --- a/tests/__snapshots__/datamatrix-1/EDIFACT/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/EDIFACT/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4f23b72", "bytesECI": "e953640", "text": "EDIFACTEDIFACT", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/GUID/fast-0.json b/tests/__snapshots__/datamatrix-1/GUID/fast-0.json index 4a41af49..b6c67941 100644 --- a/tests/__snapshots__/datamatrix-1/GUID/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/GUID/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ce00c79", "bytesECI": "7dccb95", "text": "10f27ce-acb7-4e4e-a7ae-a0b98da6ed4a", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "29" + "version": "29", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/GUID/pure-0.json b/tests/__snapshots__/datamatrix-1/GUID/pure-0.json index 4a41af49..b6c67941 100644 --- a/tests/__snapshots__/datamatrix-1/GUID/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/GUID/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ce00c79", "bytesECI": "7dccb95", "text": "10f27ce-acb7-4e4e-a7ae-a0b98da6ed4a", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "29" + "version": "29", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/GUID/slow-0.json b/tests/__snapshots__/datamatrix-1/GUID/slow-0.json index 4a41af49..b6c67941 100644 --- a/tests/__snapshots__/datamatrix-1/GUID/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/GUID/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ce00c79", "bytesECI": "7dccb95", "text": "10f27ce-acb7-4e4e-a7ae-a0b98da6ed4a", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "29" + "version": "29", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/GUID/slow-180.json b/tests/__snapshots__/datamatrix-1/GUID/slow-180.json index 176e279f..9d126d38 100644 --- a/tests/__snapshots__/datamatrix-1/GUID/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/GUID/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ce00c79", "bytesECI": "7dccb95", "text": "10f27ce-acb7-4e4e-a7ae-a0b98da6ed4a", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "29" + "version": "29", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/GUID/slow-270.json b/tests/__snapshots__/datamatrix-1/GUID/slow-270.json index 46c11419..076cce35 100644 --- a/tests/__snapshots__/datamatrix-1/GUID/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/GUID/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ce00c79", "bytesECI": "7dccb95", "text": "10f27ce-acb7-4e4e-a7ae-a0b98da6ed4a", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "29" + "version": "29", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/GUID/slow-90.json b/tests/__snapshots__/datamatrix-1/GUID/slow-90.json index 6afebc12..1022281d 100644 --- a/tests/__snapshots__/datamatrix-1/GUID/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/GUID/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ce00c79", "bytesECI": "7dccb95", "text": "10f27ce-acb7-4e4e-a7ae-a0b98da6ed4a", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "29" + "version": "29", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/fast-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/fast-0.json index 3d9c7fbe..b36ae9ec 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/pure-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/pure-0.json index 3d9c7fbe..b36ae9ec 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-0.json index 3d9c7fbe..b36ae9ec 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-180.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-180.json index b44766a0..08936b6c 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-270.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-270.json index 6d39c0fe..ff35705c 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-90.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-90.json index f3d1b8ef..9b637201 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/fast-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/fast-0.json index d1f84d95..7cc82793 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/pure-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/pure-0.json index d1f84d95..7cc82793 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-0.json index d1f84d95..7cc82793 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-180.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-180.json index a9eb12b8..04076a7d 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-270.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-270.json index c1d211fb..c893b979 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-90.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-90.json index fa28e7f7..525d9618 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_1_error_byte/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/fast-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/fast-0.json index d1f84d95..7cc82793 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/pure-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/pure-0.json index d1f84d95..7cc82793 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-0.json index d1f84d95..7cc82793 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-180.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-180.json index a9eb12b8..04076a7d 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-270.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-270.json index c1d211fb..c893b979 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-90.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-90.json index fa28e7f7..525d9618 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_2_error_byte/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/fast-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/fast-0.json index d1f84d95..7cc82793 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/pure-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/pure-0.json index d1f84d95..7cc82793 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-0.json index d1f84d95..7cc82793 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-180.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-180.json index a9eb12b8..04076a7d 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-270.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-270.json index c1d211fb..c893b979 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-90.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-90.json index fa28e7f7..525d9618 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_3_error_byte/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/fast-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/fast-0.json index d1f84d95..7cc82793 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/pure-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/pure-0.json index d1f84d95..7cc82793 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-0.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-0.json index d1f84d95..7cc82793 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-180.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-180.json index a9eb12b8..04076a7d 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-270.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-270.json index c1d211fb..c893b979 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-90.json b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-90.json index fa28e7f7..525d9618 100644 --- a/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/HelloWorld_Text_L_Kaywa_4_error_byte/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/X12/fast-0.json b/tests/__snapshots__/datamatrix-1/X12/fast-0.json index d072d5d3..f4a07d12 100644 --- a/tests/__snapshots__/datamatrix-1/X12/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/X12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2676dfa", "bytesECI": "15db299", "text": "X12X12X12X12", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/X12/pure-0.json b/tests/__snapshots__/datamatrix-1/X12/pure-0.json index d072d5d3..f4a07d12 100644 --- a/tests/__snapshots__/datamatrix-1/X12/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/X12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "2676dfa", "bytesECI": "15db299", "text": "X12X12X12X12", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/X12/slow-0.json b/tests/__snapshots__/datamatrix-1/X12/slow-0.json index d072d5d3..f4a07d12 100644 --- a/tests/__snapshots__/datamatrix-1/X12/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/X12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2676dfa", "bytesECI": "15db299", "text": "X12X12X12X12", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/X12/slow-180.json b/tests/__snapshots__/datamatrix-1/X12/slow-180.json index 3791c2ea..dd3d3a9f 100644 --- a/tests/__snapshots__/datamatrix-1/X12/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/X12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2676dfa", "bytesECI": "15db299", "text": "X12X12X12X12", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/X12/slow-270.json b/tests/__snapshots__/datamatrix-1/X12/slow-270.json index b7271059..530a9d7d 100644 --- a/tests/__snapshots__/datamatrix-1/X12/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/X12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "2676dfa", "bytesECI": "15db299", "text": "X12X12X12X12", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/X12/slow-90.json b/tests/__snapshots__/datamatrix-1/X12/slow-90.json index 9031ea49..1dd3b430 100644 --- a/tests/__snapshots__/datamatrix-1/X12/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/X12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "2676dfa", "bytesECI": "15db299", "text": "X12X12X12X12", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-18x8/fast-0.json b/tests/__snapshots__/datamatrix-1/abcd-18x8/fast-0.json index 883f6a5e..9e2102c0 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-18x8/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-18x8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "36bbe50", "bytesECI": "612fa82", "text": "abcde", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "25" + "version": "25", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-18x8/pure-0.json b/tests/__snapshots__/datamatrix-1/abcd-18x8/pure-0.json index 883f6a5e..9e2102c0 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-18x8/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-18x8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "36bbe50", "bytesECI": "612fa82", "text": "abcde", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "25" + "version": "25", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-0.json b/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-0.json index 883f6a5e..9e2102c0 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "36bbe50", "bytesECI": "612fa82", "text": "abcde", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "25" + "version": "25", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-180.json b/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-180.json index 4339e548..f1faa75b 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "36bbe50", "bytesECI": "612fa82", "text": "abcde", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "25" + "version": "25", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-270.json b/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-270.json index 4631d752..f159efb2 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-270.json @@ -5,7 +5,7 @@ "bytes": "36bbe50", "bytesECI": "612fa82", "text": "abcde", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "25" + "version": "25", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-90.json b/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-90.json index 69e6606c..0b188ab8 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/abcd-18x8/slow-90.json @@ -5,7 +5,7 @@ "bytes": "36bbe50", "bytesECI": "612fa82", "text": "abcde", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "25" + "version": "25", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-26x12/fast-0.json b/tests/__snapshots__/datamatrix-1/abcd-26x12/fast-0.json index db9cd867..8643a955 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-26x12/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-26x12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ff10304", "bytesECI": "d1b6e71", "text": "abcdefghijklm", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-26x12/pure-0.json b/tests/__snapshots__/datamatrix-1/abcd-26x12/pure-0.json index db9cd867..8643a955 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-26x12/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-26x12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ff10304", "bytesECI": "d1b6e71", "text": "abcdefghijklm", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-0.json b/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-0.json index db9cd867..8643a955 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ff10304", "bytesECI": "d1b6e71", "text": "abcdefghijklm", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-180.json b/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-180.json index f189ad86..fb67d963 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ff10304", "bytesECI": "d1b6e71", "text": "abcdefghijklm", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-270.json b/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-270.json index 22280642..11da90bf 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ff10304", "bytesECI": "d1b6e71", "text": "abcdefghijklm", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-90.json b/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-90.json index 726866b4..ad35ed54 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/abcd-26x12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ff10304", "bytesECI": "d1b6e71", "text": "abcdefghijklm", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-32x8/fast-0.json b/tests/__snapshots__/datamatrix-1/abcd-32x8/fast-0.json index 266a6401..fb994827 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-32x8/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-32x8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "bef57ec", "bytesECI": "4252055", "text": "abcdef", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-32x8/pure-0.json b/tests/__snapshots__/datamatrix-1/abcd-32x8/pure-0.json index 266a6401..fb994827 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-32x8/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-32x8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "bef57ec", "bytesECI": "4252055", "text": "abcdef", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-0.json b/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-0.json index 266a6401..fb994827 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "bef57ec", "bytesECI": "4252055", "text": "abcdef", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-180.json b/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-180.json index 19af777e..4667dda0 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "bef57ec", "bytesECI": "4252055", "text": "abcdef", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-270.json b/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-270.json index 3201a1cb..8878c8ff 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-270.json @@ -5,7 +5,7 @@ "bytes": "bef57ec", "bytesECI": "4252055", "text": "abcdef", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-90.json b/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-90.json index 7ce65921..6e28a63c 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/abcd-32x8/slow-90.json @@ -5,7 +5,7 @@ "bytes": "bef57ec", "bytesECI": "4252055", "text": "abcdef", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/fast-0.json b/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/fast-0.json index 7853d0f7..e2d6fb68 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/fast-0.json @@ -5,7 +5,7 @@ "bytes": "918a954", "bytesECI": "2838931", "text": "abcdefghijklmnopq", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "28" + "version": "28", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/pure-0.json b/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/pure-0.json index 7853d0f7..e2d6fb68 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/pure-0.json @@ -5,7 +5,7 @@ "bytes": "918a954", "bytesECI": "2838931", "text": "abcdefghijklmnopq", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "28" + "version": "28", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-0.json b/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-0.json index 7853d0f7..e2d6fb68 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-0.json @@ -5,7 +5,7 @@ "bytes": "918a954", "bytesECI": "2838931", "text": "abcdefghijklmnopq", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "28" + "version": "28", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-180.json b/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-180.json index 74befd96..892fd313 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-180.json @@ -5,7 +5,7 @@ "bytes": "918a954", "bytesECI": "2838931", "text": "abcdefghijklmnopq", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "28" + "version": "28", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-270.json b/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-270.json index a0d5f317..988b8ea3 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-270.json @@ -5,7 +5,7 @@ "bytes": "918a954", "bytesECI": "2838931", "text": "abcdefghijklmnopq", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "28" + "version": "28", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-90.json b/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-90.json index bef138d3..a86377de 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x12-mirrored/slow-90.json @@ -5,7 +5,7 @@ "bytes": "918a954", "bytesECI": "2838931", "text": "abcdefghijklmnopq", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "28" + "version": "28", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x12/fast-0.json b/tests/__snapshots__/datamatrix-1/abcd-36x12/fast-0.json index fce22841..1cfe35c3 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x12/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "918a954", "bytesECI": "2838931", "text": "abcdefghijklmnopq", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "28" + "version": "28", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x12/pure-0.json b/tests/__snapshots__/datamatrix-1/abcd-36x12/pure-0.json index fce22841..1cfe35c3 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x12/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "918a954", "bytesECI": "2838931", "text": "abcdefghijklmnopq", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "28" + "version": "28", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-0.json b/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-0.json index fce22841..1cfe35c3 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "918a954", "bytesECI": "2838931", "text": "abcdefghijklmnopq", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "28" + "version": "28", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-180.json b/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-180.json index 5e2dde42..146af11c 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "918a954", "bytesECI": "2838931", "text": "abcdefghijklmnopq", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "28" + "version": "28", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-270.json b/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-270.json index 6f751516..cb39e3af 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "918a954", "bytesECI": "2838931", "text": "abcdefghijklmnopq", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "28" + "version": "28", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-90.json b/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-90.json index e07392b6..c570336b 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "918a954", "bytesECI": "2838931", "text": "abcdefghijklmnopq", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "28" + "version": "28", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x16/fast-0.json b/tests/__snapshots__/datamatrix-1/abcd-36x16/fast-0.json index 134e2830..32bd6768 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x16/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "f863304", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "29" + "version": "29", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x16/pure-0.json b/tests/__snapshots__/datamatrix-1/abcd-36x16/pure-0.json index 134e2830..32bd6768 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x16/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x16/pure-0.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "f863304", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "29" + "version": "29", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-0.json b/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-0.json index 134e2830..32bd6768 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "f863304", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "29" + "version": "29", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-180.json b/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-180.json index f850f9f5..cf308175 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "f863304", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "29" + "version": "29", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-270.json b/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-270.json index 6a6c16f6..06f1e30d 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-270.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "f863304", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "29" + "version": "29", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-90.json b/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-90.json index 368fccd7..186cf6f4 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/abcd-36x16/slow-90.json @@ -5,7 +5,7 @@ "bytes": "71c480d", "bytesECI": "f863304", "text": "abcdefghijklmnopqrstuvwxyz", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "29" + "version": "29", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-48x16/fast-0.json b/tests/__snapshots__/datamatrix-1/abcd-48x16/fast-0.json index f84cbe95..4f0ba698 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-48x16/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-48x16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "52ddd33", "bytesECI": "6ffc483", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "30" + "version": "30", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-48x16/pure-0.json b/tests/__snapshots__/datamatrix-1/abcd-48x16/pure-0.json index f84cbe95..4f0ba698 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-48x16/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-48x16/pure-0.json @@ -5,7 +5,7 @@ "bytes": "52ddd33", "bytesECI": "6ffc483", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "30" + "version": "30", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-0.json b/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-0.json index f84cbe95..4f0ba698 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "52ddd33", "bytesECI": "6ffc483", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "30" + "version": "30", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-180.json b/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-180.json index f8f1f4f5..071080eb 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "52ddd33", "bytesECI": "6ffc483", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "30" + "version": "30", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-270.json b/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-270.json index d5db2a52..30f56b02 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-270.json @@ -5,7 +5,7 @@ "bytes": "52ddd33", "bytesECI": "6ffc483", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "30" + "version": "30", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-90.json b/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-90.json index bd9ebf7a..bbaf5fd7 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/abcd-48x16/slow-90.json @@ -5,7 +5,7 @@ "bytes": "52ddd33", "bytesECI": "6ffc483", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "30" + "version": "30", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/fast-0.json b/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/fast-0.json index 2dad0c22..c5333536 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9e81393", "bytesECI": "797facc", "text": "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "15" + "version": "15", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/pure-0.json b/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/pure-0.json index 2dad0c22..c5333536 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/pure-0.json @@ -5,7 +5,7 @@ "bytes": "9e81393", "bytesECI": "797facc", "text": "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "15" + "version": "15", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-0.json b/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-0.json index 2dad0c22..c5333536 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9e81393", "bytesECI": "797facc", "text": "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "15" + "version": "15", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-180.json b/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-180.json index bbca3b75..dd2c8525 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9e81393", "bytesECI": "797facc", "text": "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "15" + "version": "15", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-270.json b/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-270.json index 8d869c6e..c5041b6c 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9e81393", "bytesECI": "797facc", "text": "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "15" + "version": "15", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-90.json b/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-90.json index 6baf6f31..a829e4eb 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/abcd-52x52-IDAutomation/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9e81393", "bytesECI": "797facc", "text": "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "15" + "version": "15", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-52x52/fast-0.json b/tests/__snapshots__/datamatrix-1/abcd-52x52/fast-0.json index 17f050c7..fc2d0871 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-52x52/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-52x52/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9e81393", "bytesECI": "797facc", "text": "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "15" + "version": "15", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-52x52/pure-0.json b/tests/__snapshots__/datamatrix-1/abcd-52x52/pure-0.json index 17f050c7..fc2d0871 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-52x52/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-52x52/pure-0.json @@ -5,7 +5,7 @@ "bytes": "9e81393", "bytesECI": "797facc", "text": "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "15" + "version": "15", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-0.json b/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-0.json index 17f050c7..fc2d0871 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9e81393", "bytesECI": "797facc", "text": "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "15" + "version": "15", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-180.json b/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-180.json index a89df7bf..7e72027e 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9e81393", "bytesECI": "797facc", "text": "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "15" + "version": "15", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-270.json b/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-270.json index 031acd6a..6e7f6cf5 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9e81393", "bytesECI": "797facc", "text": "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "15" + "version": "15", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-90.json b/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-90.json index c8fc7c54..665ce6c3 100644 --- a/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/abcd-52x52/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9e81393", "bytesECI": "797facc", "text": "abcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "15" + "version": "15", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcdefg-64x64/fast-0.json b/tests/__snapshots__/datamatrix-1/abcdefg-64x64/fast-0.json index 18229381..37de6fae 100644 --- a/tests/__snapshots__/datamatrix-1/abcdefg-64x64/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/abcdefg-64x64/fast-0.json @@ -5,7 +5,7 @@ "bytes": "85722bc", "bytesECI": "1075387", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "16" + "version": "16", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcdefg-64x64/pure-0.json b/tests/__snapshots__/datamatrix-1/abcdefg-64x64/pure-0.json index 18229381..37de6fae 100644 --- a/tests/__snapshots__/datamatrix-1/abcdefg-64x64/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/abcdefg-64x64/pure-0.json @@ -5,7 +5,7 @@ "bytes": "85722bc", "bytesECI": "1075387", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "16" + "version": "16", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-0.json b/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-0.json index 18229381..37de6fae 100644 --- a/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-0.json @@ -5,7 +5,7 @@ "bytes": "85722bc", "bytesECI": "1075387", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "16" + "version": "16", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-180.json b/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-180.json index 25e7df68..11387054 100644 --- a/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-180.json @@ -5,7 +5,7 @@ "bytes": "85722bc", "bytesECI": "1075387", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "16" + "version": "16", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-270.json b/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-270.json index c5904747..312dae3d 100644 --- a/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-270.json @@ -5,7 +5,7 @@ "bytes": "85722bc", "bytesECI": "1075387", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "16" + "version": "16", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-90.json b/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-90.json index 6511cef6..2581527f 100644 --- a/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/abcdefg-64x64/slow-90.json @@ -5,7 +5,7 @@ "bytes": "85722bc", "bytesECI": "1075387", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "16" + "version": "16", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcdefg/fast-0.json b/tests/__snapshots__/datamatrix-1/abcdefg/fast-0.json index 2d769a78..95dd54b0 100644 --- a/tests/__snapshots__/datamatrix-1/abcdefg/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/abcdefg/fast-0.json @@ -5,7 +5,7 @@ "bytes": "fdc9029", "bytesECI": "6cc280f", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcdefg/pure-0.json b/tests/__snapshots__/datamatrix-1/abcdefg/pure-0.json index 2d769a78..95dd54b0 100644 --- a/tests/__snapshots__/datamatrix-1/abcdefg/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/abcdefg/pure-0.json @@ -5,7 +5,7 @@ "bytes": "fdc9029", "bytesECI": "6cc280f", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcdefg/slow-0.json b/tests/__snapshots__/datamatrix-1/abcdefg/slow-0.json index 2d769a78..95dd54b0 100644 --- a/tests/__snapshots__/datamatrix-1/abcdefg/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/abcdefg/slow-0.json @@ -5,7 +5,7 @@ "bytes": "fdc9029", "bytesECI": "6cc280f", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcdefg/slow-180.json b/tests/__snapshots__/datamatrix-1/abcdefg/slow-180.json index b0c39d1a..307b50c0 100644 --- a/tests/__snapshots__/datamatrix-1/abcdefg/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/abcdefg/slow-180.json @@ -5,7 +5,7 @@ "bytes": "fdc9029", "bytesECI": "6cc280f", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcdefg/slow-270.json b/tests/__snapshots__/datamatrix-1/abcdefg/slow-270.json index b6147319..f2458c59 100644 --- a/tests/__snapshots__/datamatrix-1/abcdefg/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/abcdefg/slow-270.json @@ -5,7 +5,7 @@ "bytes": "fdc9029", "bytesECI": "6cc280f", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/abcdefg/slow-90.json b/tests/__snapshots__/datamatrix-1/abcdefg/slow-90.json index 9a8d99b8..90f3fc85 100644 --- a/tests/__snapshots__/datamatrix-1/abcdefg/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/abcdefg/slow-90.json @@ -5,7 +5,7 @@ "bytes": "fdc9029", "bytesECI": "6cc280f", "text": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*(),./\\", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/eci-mixed/fast-0.json b/tests/__snapshots__/datamatrix-1/eci-mixed/fast-0.json index 54f5898b..1dc2281c 100644 --- a/tests/__snapshots__/datamatrix-1/eci-mixed/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/eci-mixed/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f51a2a5", "bytesECI": "67ef3c1", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/eci-mixed/pure-0.json b/tests/__snapshots__/datamatrix-1/eci-mixed/pure-0.json index 54f5898b..1dc2281c 100644 --- a/tests/__snapshots__/datamatrix-1/eci-mixed/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/eci-mixed/pure-0.json @@ -5,7 +5,7 @@ "bytes": "f51a2a5", "bytesECI": "67ef3c1", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/eci-mixed/slow-0.json b/tests/__snapshots__/datamatrix-1/eci-mixed/slow-0.json index 54f5898b..1dc2281c 100644 --- a/tests/__snapshots__/datamatrix-1/eci-mixed/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/eci-mixed/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f51a2a5", "bytesECI": "67ef3c1", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/eci-mixed/slow-180.json b/tests/__snapshots__/datamatrix-1/eci-mixed/slow-180.json index 46a2f647..fabc4171 100644 --- a/tests/__snapshots__/datamatrix-1/eci-mixed/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/eci-mixed/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f51a2a5", "bytesECI": "67ef3c1", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/eci-mixed/slow-270.json b/tests/__snapshots__/datamatrix-1/eci-mixed/slow-270.json index 0469e274..582cf451 100644 --- a/tests/__snapshots__/datamatrix-1/eci-mixed/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/eci-mixed/slow-270.json @@ -5,7 +5,7 @@ "bytes": "f51a2a5", "bytesECI": "67ef3c1", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/eci-mixed/slow-90.json b/tests/__snapshots__/datamatrix-1/eci-mixed/slow-90.json index a5e53fee..2a523b7c 100644 --- a/tests/__snapshots__/datamatrix-1/eci-mixed/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/eci-mixed/slow-90.json @@ -5,7 +5,7 @@ "bytes": "f51a2a5", "bytesECI": "67ef3c1", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/eci/fast-0.json b/tests/__snapshots__/datamatrix-1/eci/fast-0.json index 256f3b4e..765c8052 100644 --- a/tests/__snapshots__/datamatrix-1/eci/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/eci/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f321bd8", "bytesECI": "f18388d", "text": "¶Ж", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/eci/pure-0.json b/tests/__snapshots__/datamatrix-1/eci/pure-0.json index 256f3b4e..765c8052 100644 --- a/tests/__snapshots__/datamatrix-1/eci/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/eci/pure-0.json @@ -5,7 +5,7 @@ "bytes": "f321bd8", "bytesECI": "f18388d", "text": "¶Ж", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/eci/slow-0.json b/tests/__snapshots__/datamatrix-1/eci/slow-0.json index 256f3b4e..765c8052 100644 --- a/tests/__snapshots__/datamatrix-1/eci/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/eci/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f321bd8", "bytesECI": "f18388d", "text": "¶Ж", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/eci/slow-180.json b/tests/__snapshots__/datamatrix-1/eci/slow-180.json index 79e0a789..37afa987 100644 --- a/tests/__snapshots__/datamatrix-1/eci/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/eci/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f321bd8", "bytesECI": "f18388d", "text": "¶Ж", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/eci/slow-270.json b/tests/__snapshots__/datamatrix-1/eci/slow-270.json index 7b57ca1b..6b912056 100644 --- a/tests/__snapshots__/datamatrix-1/eci/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/eci/slow-270.json @@ -5,7 +5,7 @@ "bytes": "f321bd8", "bytesECI": "f18388d", "text": "¶Ж", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/eci/slow-90.json b/tests/__snapshots__/datamatrix-1/eci/slow-90.json index a25a1989..a14c61c9 100644 --- a/tests/__snapshots__/datamatrix-1/eci/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/eci/slow-90.json @@ -5,7 +5,7 @@ "bytes": "f321bd8", "bytesECI": "f18388d", "text": "¶Ж", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/fast-0.json b/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/fast-0.json index 4bfc11d8..7c2d2afb 100644 --- a/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "22ae84c", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/pure-0.json b/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/pure-0.json index 4bfc11d8..7c2d2afb 100644 --- a/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "22ae84c", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-0.json b/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-0.json index 4bfc11d8..7c2d2afb 100644 --- a/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "22ae84c", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-180.json b/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-180.json index 4f1ddb8b..e7a89870 100644 --- a/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "22ae84c", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-270.json b/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-270.json index 98f6779d..a745529a 100644 --- a/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-270.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "22ae84c", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-90.json b/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-90.json index 46d522fe..b4aa5c7f 100644 --- a/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/gs1-figure-4.15.1-2-32x32/slow-90.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "22ae84c", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/mod-size-1/fast-0.json b/tests/__snapshots__/datamatrix-1/mod-size-1/fast-0.json index 30960dfa..0c5eee08 100644 --- a/tests/__snapshots__/datamatrix-1/mod-size-1/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/mod-size-1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "cedb1ba", "bytesECI": "f6bba50", "text": "c++", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/mod-size-1/pure-0.json b/tests/__snapshots__/datamatrix-1/mod-size-1/pure-0.json index 30960dfa..0c5eee08 100644 --- a/tests/__snapshots__/datamatrix-1/mod-size-1/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/mod-size-1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "cedb1ba", "bytesECI": "f6bba50", "text": "c++", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/mod-size-1/slow-0.json b/tests/__snapshots__/datamatrix-1/mod-size-1/slow-0.json index 30960dfa..0c5eee08 100644 --- a/tests/__snapshots__/datamatrix-1/mod-size-1/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/mod-size-1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "cedb1ba", "bytesECI": "f6bba50", "text": "c++", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/readerinit/fast-0.json b/tests/__snapshots__/datamatrix-1/readerinit/fast-0.json index b8f55856..b8e9d616 100644 --- a/tests/__snapshots__/datamatrix-1/readerinit/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/readerinit/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "3bb9380", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/readerinit/pure-0.json b/tests/__snapshots__/datamatrix-1/readerinit/pure-0.json index b8f55856..b8e9d616 100644 --- a/tests/__snapshots__/datamatrix-1/readerinit/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/readerinit/pure-0.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "3bb9380", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/readerinit/slow-0.json b/tests/__snapshots__/datamatrix-1/readerinit/slow-0.json index b8f55856..b8e9d616 100644 --- a/tests/__snapshots__/datamatrix-1/readerinit/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/readerinit/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "3bb9380", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/readerinit/slow-180.json b/tests/__snapshots__/datamatrix-1/readerinit/slow-180.json index 9a6bb167..e3841117 100644 --- a/tests/__snapshots__/datamatrix-1/readerinit/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/readerinit/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "3bb9380", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/readerinit/slow-270.json b/tests/__snapshots__/datamatrix-1/readerinit/slow-270.json index 446a4653..52855575 100644 --- a/tests/__snapshots__/datamatrix-1/readerinit/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/readerinit/slow-270.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "3bb9380", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/readerinit/slow-90.json b/tests/__snapshots__/datamatrix-1/readerinit/slow-90.json index 33b19300..4e9abbf3 100644 --- a/tests/__snapshots__/datamatrix-1/readerinit/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/readerinit/slow-90.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "3bb9380", "text": "$I", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/fast-0.json b/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/fast-0.json index 641fc9dd..b2219eb8 100644 --- a/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/fast-0.json +++ b/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "bacff23", "text": "http://code.google.com/p/zxing/", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/pure-0.json b/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/pure-0.json index 641fc9dd..b2219eb8 100644 --- a/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/pure-0.json +++ b/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "bacff23", "text": "http://code.google.com/p/zxing/", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-0.json b/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-0.json index 641fc9dd..b2219eb8 100644 --- a/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-0.json +++ b/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "bacff23", "text": "http://code.google.com/p/zxing/", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-180.json b/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-180.json index 0b26cdf7..512b9eb1 100644 --- a/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-180.json +++ b/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "bacff23", "text": "http://code.google.com/p/zxing/", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-270.json b/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-270.json index afb2f430..704381dc 100644 --- a/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-270.json +++ b/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "bacff23", "text": "http://code.google.com/p/zxing/", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-90.json b/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-90.json index b2b81755..2ec1e5bd 100644 --- a/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-90.json +++ b/tests/__snapshots__/datamatrix-1/zxing_URL_L_Kayway/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "bacff23", "text": "http://code.google.com/p/zxing/", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/01/fast-0.json b/tests/__snapshots__/datamatrix-2/01/fast-0.json index 2936dd7d..79b2d569 100644 --- a/tests/__snapshots__/datamatrix-2/01/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/01/slow-0.json b/tests/__snapshots__/datamatrix-2/01/slow-0.json index 2936dd7d..79b2d569 100644 --- a/tests/__snapshots__/datamatrix-2/01/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/01/slow-180.json b/tests/__snapshots__/datamatrix-2/01/slow-180.json index 8a4be527..b8f3334d 100644 --- a/tests/__snapshots__/datamatrix-2/01/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/01/slow-270.json b/tests/__snapshots__/datamatrix-2/01/slow-270.json index 56ac5f52..61126f36 100644 --- a/tests/__snapshots__/datamatrix-2/01/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/01/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/01/slow-90.json b/tests/__snapshots__/datamatrix-2/01/slow-90.json index 004f71c2..a4b85800 100644 --- a/tests/__snapshots__/datamatrix-2/01/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/01/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/02/fast-0.json b/tests/__snapshots__/datamatrix-2/02/fast-0.json index 1ceac220..0245c7b4 100644 --- a/tests/__snapshots__/datamatrix-2/02/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/02/slow-0.json b/tests/__snapshots__/datamatrix-2/02/slow-0.json index 1ceac220..0245c7b4 100644 --- a/tests/__snapshots__/datamatrix-2/02/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/02/slow-180.json b/tests/__snapshots__/datamatrix-2/02/slow-180.json index 1c9834ed..6e81d0b5 100644 --- a/tests/__snapshots__/datamatrix-2/02/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/02/slow-270.json b/tests/__snapshots__/datamatrix-2/02/slow-270.json index e05adb1c..36130549 100644 --- a/tests/__snapshots__/datamatrix-2/02/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/02/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/02/slow-90.json b/tests/__snapshots__/datamatrix-2/02/slow-90.json index ea4af4f0..76e96108 100644 --- a/tests/__snapshots__/datamatrix-2/02/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/02/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/03/fast-0.json b/tests/__snapshots__/datamatrix-2/03/fast-0.json index 281664a5..164edf19 100644 --- a/tests/__snapshots__/datamatrix-2/03/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/03/slow-0.json b/tests/__snapshots__/datamatrix-2/03/slow-0.json index 281664a5..164edf19 100644 --- a/tests/__snapshots__/datamatrix-2/03/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/03/slow-180.json b/tests/__snapshots__/datamatrix-2/03/slow-180.json index 8000653b..a487ec09 100644 --- a/tests/__snapshots__/datamatrix-2/03/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/03/slow-270.json b/tests/__snapshots__/datamatrix-2/03/slow-270.json index 30622831..d0773966 100644 --- a/tests/__snapshots__/datamatrix-2/03/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/03/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/03/slow-90.json b/tests/__snapshots__/datamatrix-2/03/slow-90.json index 077e7824..c1716a75 100644 --- a/tests/__snapshots__/datamatrix-2/03/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/03/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/04/fast-0.json b/tests/__snapshots__/datamatrix-2/04/fast-0.json index c92611b4..e094b50f 100644 --- a/tests/__snapshots__/datamatrix-2/04/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/04/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/04/slow-0.json b/tests/__snapshots__/datamatrix-2/04/slow-0.json index c92611b4..e094b50f 100644 --- a/tests/__snapshots__/datamatrix-2/04/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/04/slow-180.json b/tests/__snapshots__/datamatrix-2/04/slow-180.json index 7eeca6b7..3cf82cb0 100644 --- a/tests/__snapshots__/datamatrix-2/04/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/04/slow-270.json b/tests/__snapshots__/datamatrix-2/04/slow-270.json index 158abb50..1072c3b2 100644 --- a/tests/__snapshots__/datamatrix-2/04/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/04/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/04/slow-90.json b/tests/__snapshots__/datamatrix-2/04/slow-90.json index 804c735c..bfd2ef1e 100644 --- a/tests/__snapshots__/datamatrix-2/04/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/04/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d317003", "bytesECI": "87d8518", "text": "http://google.com/m", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/09/fast-0.json b/tests/__snapshots__/datamatrix-2/09/fast-0.json index d5428003..0da8cb83 100644 --- a/tests/__snapshots__/datamatrix-2/09/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/09/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/09/slow-0.json b/tests/__snapshots__/datamatrix-2/09/slow-0.json index d5428003..0da8cb83 100644 --- a/tests/__snapshots__/datamatrix-2/09/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/09/slow-180.json b/tests/__snapshots__/datamatrix-2/09/slow-180.json index 1c8a809f..ea4d29f8 100644 --- a/tests/__snapshots__/datamatrix-2/09/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/09/slow-270.json b/tests/__snapshots__/datamatrix-2/09/slow-270.json index f35ed654..c1eee57a 100644 --- a/tests/__snapshots__/datamatrix-2/09/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/09/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/09/slow-90.json b/tests/__snapshots__/datamatrix-2/09/slow-90.json index 03fd778e..ebb030ea 100644 --- a/tests/__snapshots__/datamatrix-2/09/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/09/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/10/fast-0.json b/tests/__snapshots__/datamatrix-2/10/fast-0.json index a95ab1cd..9fcbf066 100644 --- a/tests/__snapshots__/datamatrix-2/10/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/10/slow-0.json b/tests/__snapshots__/datamatrix-2/10/slow-0.json index a95ab1cd..9fcbf066 100644 --- a/tests/__snapshots__/datamatrix-2/10/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/10/slow-180.json b/tests/__snapshots__/datamatrix-2/10/slow-180.json index aba183eb..f9aef17e 100644 --- a/tests/__snapshots__/datamatrix-2/10/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/10/slow-270.json b/tests/__snapshots__/datamatrix-2/10/slow-270.json index 8b560be0..766694dc 100644 --- a/tests/__snapshots__/datamatrix-2/10/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/10/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/10/slow-90.json b/tests/__snapshots__/datamatrix-2/10/slow-90.json index 6ee0db46..1e325c9a 100644 --- a/tests/__snapshots__/datamatrix-2/10/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/10/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/11/fast-0.json b/tests/__snapshots__/datamatrix-2/11/fast-0.json index cec74eda..119213ba 100644 --- a/tests/__snapshots__/datamatrix-2/11/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/11/slow-0.json b/tests/__snapshots__/datamatrix-2/11/slow-0.json index cec74eda..119213ba 100644 --- a/tests/__snapshots__/datamatrix-2/11/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/11/slow-180.json b/tests/__snapshots__/datamatrix-2/11/slow-180.json index ec26532c..8cc8fe2c 100644 --- a/tests/__snapshots__/datamatrix-2/11/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/11/slow-270.json b/tests/__snapshots__/datamatrix-2/11/slow-270.json index 07e7cdcc..dcef1974 100644 --- a/tests/__snapshots__/datamatrix-2/11/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/11/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/11/slow-90.json b/tests/__snapshots__/datamatrix-2/11/slow-90.json index 9d1e01cb..35fe2e7a 100644 --- a/tests/__snapshots__/datamatrix-2/11/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/11/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/12/fast-0.json b/tests/__snapshots__/datamatrix-2/12/fast-0.json index e5c12041..470420b9 100644 --- a/tests/__snapshots__/datamatrix-2/12/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/12/slow-0.json b/tests/__snapshots__/datamatrix-2/12/slow-0.json index e5c12041..470420b9 100644 --- a/tests/__snapshots__/datamatrix-2/12/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/12/slow-180.json b/tests/__snapshots__/datamatrix-2/12/slow-180.json index 12845cfb..35738e19 100644 --- a/tests/__snapshots__/datamatrix-2/12/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/12/slow-270.json b/tests/__snapshots__/datamatrix-2/12/slow-270.json index d8e4cbf1..c6bf8b9c 100644 --- a/tests/__snapshots__/datamatrix-2/12/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/12/slow-90.json b/tests/__snapshots__/datamatrix-2/12/slow-90.json index 8faf769d..8bcfed18 100644 --- a/tests/__snapshots__/datamatrix-2/12/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/13/fast-0.json b/tests/__snapshots__/datamatrix-2/13/fast-0.json index 220143aa..bd4e332a 100644 --- a/tests/__snapshots__/datamatrix-2/13/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/13/slow-0.json b/tests/__snapshots__/datamatrix-2/13/slow-0.json index 220143aa..bd4e332a 100644 --- a/tests/__snapshots__/datamatrix-2/13/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/13/slow-180.json b/tests/__snapshots__/datamatrix-2/13/slow-180.json index b41aeb82..686654fe 100644 --- a/tests/__snapshots__/datamatrix-2/13/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/13/slow-270.json b/tests/__snapshots__/datamatrix-2/13/slow-270.json index 69dd2608..3a60f45b 100644 --- a/tests/__snapshots__/datamatrix-2/13/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/13/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/13/slow-90.json b/tests/__snapshots__/datamatrix-2/13/slow-90.json index 5e520587..5ba6985d 100644 --- a/tests/__snapshots__/datamatrix-2/13/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/13/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/14/fast-0.json b/tests/__snapshots__/datamatrix-2/14/fast-0.json index fcc25777..203af614 100644 --- a/tests/__snapshots__/datamatrix-2/14/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/14/slow-0.json b/tests/__snapshots__/datamatrix-2/14/slow-0.json index fcc25777..203af614 100644 --- a/tests/__snapshots__/datamatrix-2/14/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/14/slow-180.json b/tests/__snapshots__/datamatrix-2/14/slow-180.json index 89868ed9..590269f6 100644 --- a/tests/__snapshots__/datamatrix-2/14/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/14/slow-270.json b/tests/__snapshots__/datamatrix-2/14/slow-270.json index 3dfeb726..a245317b 100644 --- a/tests/__snapshots__/datamatrix-2/14/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/14/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/14/slow-90.json b/tests/__snapshots__/datamatrix-2/14/slow-90.json index c0ff0663..17551817 100644 --- a/tests/__snapshots__/datamatrix-2/14/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/14/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/16/fast-0.json b/tests/__snapshots__/datamatrix-2/16/fast-0.json index 357d7579..f662e366 100644 --- a/tests/__snapshots__/datamatrix-2/16/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/16/slow-0.json b/tests/__snapshots__/datamatrix-2/16/slow-0.json index 357d7579..f662e366 100644 --- a/tests/__snapshots__/datamatrix-2/16/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/16/slow-180.json b/tests/__snapshots__/datamatrix-2/16/slow-180.json index e1fac147..0c5fd230 100644 --- a/tests/__snapshots__/datamatrix-2/16/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/16/slow-270.json b/tests/__snapshots__/datamatrix-2/16/slow-270.json index fd86bdee..ef95c79c 100644 --- a/tests/__snapshots__/datamatrix-2/16/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/16/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/16/slow-90.json b/tests/__snapshots__/datamatrix-2/16/slow-90.json index 9eae75f3..29f75009 100644 --- a/tests/__snapshots__/datamatrix-2/16/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/16/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/17/fast-0.json b/tests/__snapshots__/datamatrix-2/17/fast-0.json index 994dcdc1..2e73fb85 100644 --- a/tests/__snapshots__/datamatrix-2/17/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/17/slow-0.json b/tests/__snapshots__/datamatrix-2/17/slow-0.json index 994dcdc1..2e73fb85 100644 --- a/tests/__snapshots__/datamatrix-2/17/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/17/slow-180.json b/tests/__snapshots__/datamatrix-2/17/slow-180.json index aa41f779..5ee3b886 100644 --- a/tests/__snapshots__/datamatrix-2/17/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/17/slow-270.json b/tests/__snapshots__/datamatrix-2/17/slow-270.json index 8ae8afd0..5cc1ffb1 100644 --- a/tests/__snapshots__/datamatrix-2/17/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/17/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/17/slow-90.json b/tests/__snapshots__/datamatrix-2/17/slow-90.json index 85987c08..b042c2b8 100644 --- a/tests/__snapshots__/datamatrix-2/17/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/17/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/18/fast-0.json b/tests/__snapshots__/datamatrix-2/18/fast-0.json index 4b5c16d2..02d13fee 100644 --- a/tests/__snapshots__/datamatrix-2/18/fast-0.json +++ b/tests/__snapshots__/datamatrix-2/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/18/slow-0.json b/tests/__snapshots__/datamatrix-2/18/slow-0.json index 4b5c16d2..02d13fee 100644 --- a/tests/__snapshots__/datamatrix-2/18/slow-0.json +++ b/tests/__snapshots__/datamatrix-2/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/18/slow-180.json b/tests/__snapshots__/datamatrix-2/18/slow-180.json index 133916f8..b4e9a6a1 100644 --- a/tests/__snapshots__/datamatrix-2/18/slow-180.json +++ b/tests/__snapshots__/datamatrix-2/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/18/slow-270.json b/tests/__snapshots__/datamatrix-2/18/slow-270.json index 1960fffc..c41c17aa 100644 --- a/tests/__snapshots__/datamatrix-2/18/slow-270.json +++ b/tests/__snapshots__/datamatrix-2/18/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-2/18/slow-90.json b/tests/__snapshots__/datamatrix-2/18/slow-90.json index 424eb4a0..5b284e7a 100644 --- a/tests/__snapshots__/datamatrix-2/18/slow-90.json +++ b/tests/__snapshots__/datamatrix-2/18/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d42d407", "bytesECI": "b893506", "text": "This is a test of our DataMatrix support using a longer piece of text, and therefore a more dense barcode.", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/#749/fast-0.json b/tests/__snapshots__/datamatrix-3/#749/fast-0.json index bc82b466..d7a74c61 100644 --- a/tests/__snapshots__/datamatrix-3/#749/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/#749/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e0bebd2", "bytesECI": "0b1bd75", "text": "ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/#749/slow-0.json b/tests/__snapshots__/datamatrix-3/#749/slow-0.json index bc82b466..d7a74c61 100644 --- a/tests/__snapshots__/datamatrix-3/#749/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/#749/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e0bebd2", "bytesECI": "0b1bd75", "text": "ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/#749/slow-180.json b/tests/__snapshots__/datamatrix-3/#749/slow-180.json index cdc9714f..0162ed0e 100644 --- a/tests/__snapshots__/datamatrix-3/#749/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/#749/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e0bebd2", "bytesECI": "0b1bd75", "text": "ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/#749/slow-270.json b/tests/__snapshots__/datamatrix-3/#749/slow-270.json index 4ffa52b5..a2906ba7 100644 --- a/tests/__snapshots__/datamatrix-3/#749/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/#749/slow-270.json @@ -5,7 +5,7 @@ "bytes": "e0bebd2", "bytesECI": "0b1bd75", "text": "ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/#749/slow-90.json b/tests/__snapshots__/datamatrix-3/#749/slow-90.json index 75ef5058..0c9e7bb4 100644 --- a/tests/__snapshots__/datamatrix-3/#749/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/#749/slow-90.json @@ -5,7 +5,7 @@ "bytes": "e0bebd2", "bytesECI": "0b1bd75", "text": "ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-0.json b/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-0.json index e80999f0..e6e21617 100644 --- a/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-180.json b/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-180.json index 5ed307a8..5b008ae8 100644 --- a/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-270.json b/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-270.json index 3f0ce316..b3d66003 100644 --- a/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-90.json b/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-90.json index 813763a2..27bae247 100644 --- a/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/OldDetectorFallback/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a591a6d", "bytesECI": "41863e3", "text": "Hello World", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-0/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-0/fast-0.json index 1d9b668d..da79c715 100644 --- a/tests/__snapshots__/datamatrix-3/dm-0/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-0/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b93b2b2", "bytesECI": "ee7ca7b", "text": "A12206200417:02:38", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-0/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-0/slow-0.json index 1d9b668d..da79c715 100644 --- a/tests/__snapshots__/datamatrix-3/dm-0/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-0/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b93b2b2", "bytesECI": "ee7ca7b", "text": "A12206200417:02:38", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-0/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-0/slow-180.json index 219e518b..095b81a9 100644 --- a/tests/__snapshots__/datamatrix-3/dm-0/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-0/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b93b2b2", "bytesECI": "ee7ca7b", "text": "A12206200417:02:38", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-0/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-0/slow-270.json index 14477d34..6715f399 100644 --- a/tests/__snapshots__/datamatrix-3/dm-0/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-0/slow-270.json @@ -5,7 +5,7 @@ "bytes": "b93b2b2", "bytesECI": "ee7ca7b", "text": "A12206200417:02:38", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-0/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-0/slow-90.json index fcc7e4f0..d69b2de4 100644 --- a/tests/__snapshots__/datamatrix-3/dm-0/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-0/slow-90.json @@ -5,7 +5,7 @@ "bytes": "b93b2b2", "bytesECI": "ee7ca7b", "text": "A12206200417:02:38", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-1/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-1/fast-0.json index 9f4acb25..22f3b768 100644 --- a/tests/__snapshots__/datamatrix-3/dm-1/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "52063ab", "bytesECI": "a2243f5", "text": "WUPV001DS81KA123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-1/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-1/slow-0.json index 9f4acb25..22f3b768 100644 --- a/tests/__snapshots__/datamatrix-3/dm-1/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "52063ab", "bytesECI": "a2243f5", "text": "WUPV001DS81KA123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-1/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-1/slow-180.json index f3a6f3c9..89063215 100644 --- a/tests/__snapshots__/datamatrix-3/dm-1/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "52063ab", "bytesECI": "a2243f5", "text": "WUPV001DS81KA123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-1/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-1/slow-270.json index 92aa1ff8..e029e843 100644 --- a/tests/__snapshots__/datamatrix-3/dm-1/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-1/slow-270.json @@ -5,7 +5,7 @@ "bytes": "52063ab", "bytesECI": "a2243f5", "text": "WUPV001DS81KA123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-1/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-1/slow-90.json index 2af9f153..49a0ce22 100644 --- a/tests/__snapshots__/datamatrix-3/dm-1/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-1/slow-90.json @@ -5,7 +5,7 @@ "bytes": "52063ab", "bytesECI": "a2243f5", "text": "WUPV001DS81KA123", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-2/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-2/fast-0.json index 26b38bd1..3a0d73d5 100644 --- a/tests/__snapshots__/datamatrix-3/dm-2/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "99d19ed", "bytesECI": "4ff539d", "text": "http://datamatrixcode.net", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-2/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-2/slow-0.json index 26b38bd1..3a0d73d5 100644 --- a/tests/__snapshots__/datamatrix-3/dm-2/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "99d19ed", "bytesECI": "4ff539d", "text": "http://datamatrixcode.net", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-2/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-2/slow-180.json index 69f3782b..900f622e 100644 --- a/tests/__snapshots__/datamatrix-3/dm-2/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "99d19ed", "bytesECI": "4ff539d", "text": "http://datamatrixcode.net", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-2/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-2/slow-270.json index ace6da51..39815d68 100644 --- a/tests/__snapshots__/datamatrix-3/dm-2/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-2/slow-270.json @@ -5,7 +5,7 @@ "bytes": "99d19ed", "bytesECI": "4ff539d", "text": "http://datamatrixcode.net", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-2/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-2/slow-90.json index 8c18d0ac..39bb4ce0 100644 --- a/tests/__snapshots__/datamatrix-3/dm-2/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-2/slow-90.json @@ -5,7 +5,7 @@ "bytes": "99d19ed", "bytesECI": "4ff539d", "text": "http://datamatrixcode.net", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-3/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-3/fast-0.json index 463e3586..79384dfc 100644 --- a/tests/__snapshots__/datamatrix-3/dm-3/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ebad988", "bytesECI": "39914bf", "text": "Data Matrix", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-3/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-3/slow-0.json index 463e3586..79384dfc 100644 --- a/tests/__snapshots__/datamatrix-3/dm-3/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ebad988", "bytesECI": "39914bf", "text": "Data Matrix", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-3/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-3/slow-180.json index a32beaed..b27e0131 100644 --- a/tests/__snapshots__/datamatrix-3/dm-3/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ebad988", "bytesECI": "39914bf", "text": "Data Matrix", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-3/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-3/slow-270.json index 8ed839d5..66efa04b 100644 --- a/tests/__snapshots__/datamatrix-3/dm-3/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-3/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ebad988", "bytesECI": "39914bf", "text": "Data Matrix", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-3/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-3/slow-90.json index c11d101e..63c57821 100644 --- a/tests/__snapshots__/datamatrix-3/dm-3/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-3/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ebad988", "bytesECI": "39914bf", "text": "Data Matrix", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "27" + "version": "27", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-4/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-4/fast-0.json index ad4c66c5..e6104f76 100644 --- a/tests/__snapshots__/datamatrix-3/dm-4/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "bcb15f8", "bytesECI": "4b4193a", "text": "111111", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-4/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-4/slow-0.json index ad4c66c5..e6104f76 100644 --- a/tests/__snapshots__/datamatrix-3/dm-4/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "bcb15f8", "bytesECI": "4b4193a", "text": "111111", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-4/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-4/slow-180.json index 2b6ea5dc..5af56f09 100644 --- a/tests/__snapshots__/datamatrix-3/dm-4/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "bcb15f8", "bytesECI": "4b4193a", "text": "111111", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-4/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-4/slow-270.json index 213b94b2..e51308b2 100644 --- a/tests/__snapshots__/datamatrix-3/dm-4/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-4/slow-270.json @@ -5,7 +5,7 @@ "bytes": "bcb15f8", "bytesECI": "4b4193a", "text": "111111", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-4/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-4/slow-90.json index d692361c..567f1f56 100644 --- a/tests/__snapshots__/datamatrix-3/dm-4/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-4/slow-90.json @@ -5,7 +5,7 @@ "bytes": "bcb15f8", "bytesECI": "4b4193a", "text": "111111", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-5/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-5/fast-0.json index 4125896b..701e5018 100644 --- a/tests/__snapshots__/datamatrix-3/dm-5/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4f518bb", "bytesECI": "376bcfc", "text": "tec-it", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-5/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-5/slow-0.json index 4125896b..701e5018 100644 --- a/tests/__snapshots__/datamatrix-3/dm-5/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4f518bb", "bytesECI": "376bcfc", "text": "tec-it", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-5/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-5/slow-180.json index b1a4987e..43237779 100644 --- a/tests/__snapshots__/datamatrix-3/dm-5/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4f518bb", "bytesECI": "376bcfc", "text": "tec-it", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-5/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-5/slow-270.json index 45b65aa2..286d13da 100644 --- a/tests/__snapshots__/datamatrix-3/dm-5/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-5/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4f518bb", "bytesECI": "376bcfc", "text": "tec-it", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-5/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-5/slow-90.json index 4f08bc8b..ec6665b7 100644 --- a/tests/__snapshots__/datamatrix-3/dm-5/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-5/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4f518bb", "bytesECI": "376bcfc", "text": "tec-it", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-6/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-6/fast-0.json index b62a3187..9a1fa885 100644 --- a/tests/__snapshots__/datamatrix-3/dm-6/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7bd3421", "bytesECI": "313b12e", "text": "[)>DDCAG 34JR1PNO 2SJL00506-0001SEQ 0001", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-6/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-6/slow-0.json index b62a3187..9a1fa885 100644 --- a/tests/__snapshots__/datamatrix-3/dm-6/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7bd3421", "bytesECI": "313b12e", "text": "[)>DDCAG 34JR1PNO 2SJL00506-0001SEQ 0001", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-6/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-6/slow-180.json index a4469b64..227dc9cd 100644 --- a/tests/__snapshots__/datamatrix-3/dm-6/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-6/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7bd3421", "bytesECI": "313b12e", "text": "[)>DDCAG 34JR1PNO 2SJL00506-0001SEQ 0001", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-6/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-6/slow-270.json index feeec7c9..2c7e8d1b 100644 --- a/tests/__snapshots__/datamatrix-3/dm-6/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-6/slow-270.json @@ -5,7 +5,7 @@ "bytes": "7bd3421", "bytesECI": "313b12e", "text": "[)>DDCAG 34JR1PNO 2SJL00506-0001SEQ 0001", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-6/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-6/slow-90.json index 91acb90b..d2650edd 100644 --- a/tests/__snapshots__/datamatrix-3/dm-6/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-6/slow-90.json @@ -5,7 +5,7 @@ "bytes": "7bd3421", "bytesECI": "313b12e", "text": "[)>DDCAG 34JR1PNO 2SJL00506-0001SEQ 0001", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-7/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-7/fast-0.json index 7bab36e1..9d6f0f17 100644 --- a/tests/__snapshots__/datamatrix-3/dm-7/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "28e98e7", "bytesECI": "466beef", "text": "24I44", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-7/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-7/slow-0.json index 7bab36e1..9d6f0f17 100644 --- a/tests/__snapshots__/datamatrix-3/dm-7/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "28e98e7", "bytesECI": "466beef", "text": "24I44", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-7/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-7/slow-180.json index 271005de..f911f07d 100644 --- a/tests/__snapshots__/datamatrix-3/dm-7/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "28e98e7", "bytesECI": "466beef", "text": "24I44", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-7/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-7/slow-270.json index 8f365404..0dc81848 100644 --- a/tests/__snapshots__/datamatrix-3/dm-7/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-7/slow-270.json @@ -5,7 +5,7 @@ "bytes": "28e98e7", "bytesECI": "466beef", "text": "24I44", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-7/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-7/slow-90.json index 8b95ba5b..c6398c8b 100644 --- a/tests/__snapshots__/datamatrix-3/dm-7/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-7/slow-90.json @@ -5,7 +5,7 @@ "bytes": "28e98e7", "bytesECI": "466beef", "text": "24I44", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-8/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-8/fast-0.json index d519c132..9f4c8f69 100644 --- a/tests/__snapshots__/datamatrix-3/dm-8/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "279d99e", "bytesECI": "1743e6c", "text": "JGBA025999L9X9 00000000511791018010019F087B23E32DB887", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-8/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-8/slow-0.json index d519c132..9f4c8f69 100644 --- a/tests/__snapshots__/datamatrix-3/dm-8/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "279d99e", "bytesECI": "1743e6c", "text": "JGBA025999L9X9 00000000511791018010019F087B23E32DB887", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-8/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-8/slow-180.json index 47dadf79..b7555a7e 100644 --- a/tests/__snapshots__/datamatrix-3/dm-8/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "279d99e", "bytesECI": "1743e6c", "text": "JGBA025999L9X9 00000000511791018010019F087B23E32DB887", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-8/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-8/slow-270.json index 2b999b5d..0e0d292d 100644 --- a/tests/__snapshots__/datamatrix-3/dm-8/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-8/slow-270.json @@ -5,7 +5,7 @@ "bytes": "279d99e", "bytesECI": "1743e6c", "text": "JGBA025999L9X9 00000000511791018010019F087B23E32DB887", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-8/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-8/slow-90.json index a9ca44b9..0fea3a1b 100644 --- a/tests/__snapshots__/datamatrix-3/dm-8/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-8/slow-90.json @@ -5,7 +5,7 @@ "bytes": "279d99e", "bytesECI": "1743e6c", "text": "JGBA025999L9X9 00000000511791018010019F087B23E32DB887", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-9/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-9/fast-0.json index 97e9d947..4a30582a 100644 --- a/tests/__snapshots__/datamatrix-3/dm-9/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-9/fast-0.json @@ -5,7 +5,7 @@ "bytes": "99d19ed", "bytesECI": "4ff539d", "text": "http://datamatrixcode.net", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-9/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-9/slow-0.json index 97e9d947..4a30582a 100644 --- a/tests/__snapshots__/datamatrix-3/dm-9/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-9/slow-0.json @@ -5,7 +5,7 @@ "bytes": "99d19ed", "bytesECI": "4ff539d", "text": "http://datamatrixcode.net", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-9/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-9/slow-180.json index 9d0c6ae2..f1f12977 100644 --- a/tests/__snapshots__/datamatrix-3/dm-9/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-9/slow-180.json @@ -5,7 +5,7 @@ "bytes": "99d19ed", "bytesECI": "4ff539d", "text": "http://datamatrixcode.net", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-9/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-9/slow-270.json index 7c3b1c49..2baeae5f 100644 --- a/tests/__snapshots__/datamatrix-3/dm-9/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-9/slow-270.json @@ -5,7 +5,7 @@ "bytes": "99d19ed", "bytesECI": "4ff539d", "text": "http://datamatrixcode.net", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-9/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-9/slow-90.json index e4f78a8a..247d1cdf 100644 --- a/tests/__snapshots__/datamatrix-3/dm-9/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-9/slow-90.json @@ -5,7 +5,7 @@ "bytes": "99d19ed", "bytesECI": "4ff539d", "text": "http://datamatrixcode.net", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-a/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-a/fast-0.json index 396c4dc7..dcc8632f 100644 --- a/tests/__snapshots__/datamatrix-3/dm-a/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-a/fast-0.json @@ -5,7 +5,7 @@ "bytes": "49d3d0f", "bytesECI": "5dd309f", "text": "3453453453555453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-a/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-a/slow-0.json index 396c4dc7..dcc8632f 100644 --- a/tests/__snapshots__/datamatrix-3/dm-a/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-a/slow-0.json @@ -5,7 +5,7 @@ "bytes": "49d3d0f", "bytesECI": "5dd309f", "text": "3453453453555453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-a/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-a/slow-180.json index 207d0486..eb7c1fd7 100644 --- a/tests/__snapshots__/datamatrix-3/dm-a/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-a/slow-180.json @@ -5,7 +5,7 @@ "bytes": "49d3d0f", "bytesECI": "5dd309f", "text": "3453453453555453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-a/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-a/slow-270.json index 5b7897db..4e1c0238 100644 --- a/tests/__snapshots__/datamatrix-3/dm-a/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-a/slow-270.json @@ -5,7 +5,7 @@ "bytes": "49d3d0f", "bytesECI": "5dd309f", "text": "3453453453555453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-a/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-a/slow-90.json index 859283e4..4b107a2a 100644 --- a/tests/__snapshots__/datamatrix-3/dm-a/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-a/slow-90.json @@ -5,7 +5,7 @@ "bytes": "49d3d0f", "bytesECI": "5dd309f", "text": "3453453453555453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-c/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-c/fast-0.json index 679234d2..5afc11c2 100644 --- a/tests/__snapshots__/datamatrix-3/dm-c/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-c/fast-0.json @@ -5,7 +5,7 @@ "bytes": "378ba61", "bytesECI": "445a2e5", "text": "DEA-íýªVa© ½Gá+,êëEMþÝ ÌäÕòrÈnhH½Ó¾°", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-c/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-c/slow-0.json index 679234d2..5afc11c2 100644 --- a/tests/__snapshots__/datamatrix-3/dm-c/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-c/slow-0.json @@ -5,7 +5,7 @@ "bytes": "378ba61", "bytesECI": "445a2e5", "text": "DEA-íýªVa© ½Gá+,êëEMþÝ ÌäÕòrÈnhH½Ó¾°", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-c/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-c/slow-180.json index 5410aa37..a5308775 100644 --- a/tests/__snapshots__/datamatrix-3/dm-c/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-c/slow-180.json @@ -5,7 +5,7 @@ "bytes": "378ba61", "bytesECI": "445a2e5", "text": "DEA-íýªVa© ½Gá+,êëEMþÝ ÌäÕòrÈnhH½Ó¾°", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-c/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-c/slow-270.json index b7268afa..37cea27a 100644 --- a/tests/__snapshots__/datamatrix-3/dm-c/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-c/slow-270.json @@ -5,7 +5,7 @@ "bytes": "378ba61", "bytesECI": "445a2e5", "text": "DEA-íýªVa© ½Gá+,êëEMþÝ ÌäÕòrÈnhH½Ó¾°", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-c/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-c/slow-90.json index 9c5f6bb8..e73affe8 100644 --- a/tests/__snapshots__/datamatrix-3/dm-c/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-c/slow-90.json @@ -5,7 +5,7 @@ "bytes": "378ba61", "bytesECI": "445a2e5", "text": "DEA-íýªVa© ½Gá+,êëEMþÝ ÌäÕòrÈnhH½Ó¾°", - "eccLevel": "", + "ecLevel": "", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-d/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-d/fast-0.json index bf4480f6..130c32ff 100644 --- a/tests/__snapshots__/datamatrix-3/dm-d/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-d/fast-0.json @@ -5,7 +5,7 @@ "bytes": "49d3d0f", "bytesECI": "5dd309f", "text": "3453453453555453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-d/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-d/slow-0.json index bf4480f6..130c32ff 100644 --- a/tests/__snapshots__/datamatrix-3/dm-d/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-d/slow-0.json @@ -5,7 +5,7 @@ "bytes": "49d3d0f", "bytesECI": "5dd309f", "text": "3453453453555453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-d/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-d/slow-180.json index 008d49c7..00429694 100644 --- a/tests/__snapshots__/datamatrix-3/dm-d/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-d/slow-180.json @@ -5,7 +5,7 @@ "bytes": "49d3d0f", "bytesECI": "5dd309f", "text": "3453453453555453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-d/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-d/slow-270.json index b0ad83fd..d2ca443c 100644 --- a/tests/__snapshots__/datamatrix-3/dm-d/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-d/slow-270.json @@ -5,7 +5,7 @@ "bytes": "49d3d0f", "bytesECI": "5dd309f", "text": "3453453453555453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-d/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-d/slow-90.json index 0cfb0101..3fb82e90 100644 --- a/tests/__snapshots__/datamatrix-3/dm-d/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-d/slow-90.json @@ -5,7 +5,7 @@ "bytes": "49d3d0f", "bytesECI": "5dd309f", "text": "3453453453555453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-e/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-e/fast-0.json index 4b9dfb18..8ab6e983 100644 --- a/tests/__snapshots__/datamatrix-3/dm-e/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-e/fast-0.json @@ -5,7 +5,7 @@ "bytes": "890d554", "bytesECI": "5c3b9f2", "text": "[)>069N1112345684081TF17L715034D180800SXVTR75973491946876", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-e/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-e/slow-0.json index 4b9dfb18..8ab6e983 100644 --- a/tests/__snapshots__/datamatrix-3/dm-e/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-e/slow-0.json @@ -5,7 +5,7 @@ "bytes": "890d554", "bytesECI": "5c3b9f2", "text": "[)>069N1112345684081TF17L715034D180800SXVTR75973491946876", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-e/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-e/slow-180.json index 4b75c902..16b9a208 100644 --- a/tests/__snapshots__/datamatrix-3/dm-e/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-e/slow-180.json @@ -5,7 +5,7 @@ "bytes": "890d554", "bytesECI": "5c3b9f2", "text": "[)>069N1112345684081TF17L715034D180800SXVTR75973491946876", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-e/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-e/slow-270.json index 6ca1f3b5..9b2680be 100644 --- a/tests/__snapshots__/datamatrix-3/dm-e/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-e/slow-270.json @@ -5,7 +5,7 @@ "bytes": "890d554", "bytesECI": "5c3b9f2", "text": "[)>069N1112345684081TF17L715034D180800SXVTR75973491946876", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-e/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-e/slow-90.json index c67ecbbd..3da95ba1 100644 --- a/tests/__snapshots__/datamatrix-3/dm-e/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-e/slow-90.json @@ -5,7 +5,7 @@ "bytes": "890d554", "bytesECI": "5c3b9f2", "text": "[)>069N1112345684081TF17L715034D180800SXVTR75973491946876", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-f/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-f/fast-0.json index 6502a9b9..41ce1c32 100644 --- a/tests/__snapshots__/datamatrix-3/dm-f/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-f/fast-0.json @@ -5,7 +5,7 @@ "bytes": "616b5a1", "bytesECI": "fc908a0", "text": "[)>069N111234567842S3300045321T89209876D151217", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-f/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-f/slow-0.json index 6502a9b9..41ce1c32 100644 --- a/tests/__snapshots__/datamatrix-3/dm-f/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-f/slow-0.json @@ -5,7 +5,7 @@ "bytes": "616b5a1", "bytesECI": "fc908a0", "text": "[)>069N111234567842S3300045321T89209876D151217", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-f/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-f/slow-180.json index 0310e081..007973f2 100644 --- a/tests/__snapshots__/datamatrix-3/dm-f/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-f/slow-180.json @@ -5,7 +5,7 @@ "bytes": "616b5a1", "bytesECI": "fc908a0", "text": "[)>069N111234567842S3300045321T89209876D151217", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-f/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-f/slow-270.json index 1b5a8283..1c2be39d 100644 --- a/tests/__snapshots__/datamatrix-3/dm-f/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-f/slow-270.json @@ -5,7 +5,7 @@ "bytes": "616b5a1", "bytesECI": "fc908a0", "text": "[)>069N111234567842S3300045321T89209876D151217", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-f/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-f/slow-90.json index 056f5ac1..9f445a1f 100644 --- a/tests/__snapshots__/datamatrix-3/dm-f/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-f/slow-90.json @@ -5,7 +5,7 @@ "bytes": "616b5a1", "bytesECI": "fc908a0", "text": "[)>069N111234567842S3300045321T89209876D151217", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-h/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-h/fast-0.json index 47f4e6fa..73f8b4f7 100644 --- a/tests/__snapshots__/datamatrix-3/dm-h/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-h/fast-0.json @@ -5,7 +5,7 @@ "bytes": "636aad9", "bytesECI": "c8d6a62", "text": "AE003020140724001B010152", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-h/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-h/slow-0.json index 47f4e6fa..73f8b4f7 100644 --- a/tests/__snapshots__/datamatrix-3/dm-h/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-h/slow-0.json @@ -5,7 +5,7 @@ "bytes": "636aad9", "bytesECI": "c8d6a62", "text": "AE003020140724001B010152", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-h/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-h/slow-180.json index 88447aca..a57d8e84 100644 --- a/tests/__snapshots__/datamatrix-3/dm-h/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-h/slow-180.json @@ -5,7 +5,7 @@ "bytes": "636aad9", "bytesECI": "c8d6a62", "text": "AE003020140724001B010152", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-h/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-h/slow-270.json index 468a49c8..8ce13caa 100644 --- a/tests/__snapshots__/datamatrix-3/dm-h/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-h/slow-270.json @@ -5,7 +5,7 @@ "bytes": "636aad9", "bytesECI": "c8d6a62", "text": "AE003020140724001B010152", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-h/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-h/slow-90.json index ddeeb866..c1c2b47e 100644 --- a/tests/__snapshots__/datamatrix-3/dm-h/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-h/slow-90.json @@ -5,7 +5,7 @@ "bytes": "636aad9", "bytesECI": "c8d6a62", "text": "AE003020140724001B010152", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-i/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-i/fast-0.json index 11ef6707..f75f6290 100644 --- a/tests/__snapshots__/datamatrix-3/dm-i/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-i/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8d969ee", "bytesECI": "4836090", "text": "123456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-i/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-i/slow-0.json index 11ef6707..f75f6290 100644 --- a/tests/__snapshots__/datamatrix-3/dm-i/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-i/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8d969ee", "bytesECI": "4836090", "text": "123456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-i/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-i/slow-180.json index f4174894..4bf4ed05 100644 --- a/tests/__snapshots__/datamatrix-3/dm-i/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-i/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8d969ee", "bytesECI": "4836090", "text": "123456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-i/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-i/slow-270.json index f23d604e..037c5daa 100644 --- a/tests/__snapshots__/datamatrix-3/dm-i/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-i/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8d969ee", "bytesECI": "4836090", "text": "123456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-i/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-i/slow-90.json index 2d2b07fc..2a6111c5 100644 --- a/tests/__snapshots__/datamatrix-3/dm-i/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-i/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8d969ee", "bytesECI": "4836090", "text": "123456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-j/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-j/fast-0.json index 0c23d281..eebabc8d 100644 --- a/tests/__snapshots__/datamatrix-3/dm-j/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-j/fast-0.json @@ -5,7 +5,7 @@ "bytes": "642c945", "bytesECI": "6ef9a66", "text": "4278010014", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-j/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-j/slow-0.json index 0c23d281..eebabc8d 100644 --- a/tests/__snapshots__/datamatrix-3/dm-j/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-j/slow-0.json @@ -5,7 +5,7 @@ "bytes": "642c945", "bytesECI": "6ef9a66", "text": "4278010014", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-j/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-j/slow-180.json index 98bea582..f8f455ab 100644 --- a/tests/__snapshots__/datamatrix-3/dm-j/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-j/slow-180.json @@ -5,7 +5,7 @@ "bytes": "642c945", "bytesECI": "6ef9a66", "text": "4278010014", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-j/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-j/slow-270.json index 61e78766..70c5642a 100644 --- a/tests/__snapshots__/datamatrix-3/dm-j/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-j/slow-270.json @@ -5,7 +5,7 @@ "bytes": "642c945", "bytesECI": "6ef9a66", "text": "4278010014", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-j/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-j/slow-90.json index 20874a55..911550b7 100644 --- a/tests/__snapshots__/datamatrix-3/dm-j/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-j/slow-90.json @@ -5,7 +5,7 @@ "bytes": "642c945", "bytesECI": "6ef9a66", "text": "4278010014", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-k/fast-0.json b/tests/__snapshots__/datamatrix-3/dm-k/fast-0.json index 6865fea0..cd570bc4 100644 --- a/tests/__snapshots__/datamatrix-3/dm-k/fast-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-k/fast-0.json @@ -5,7 +5,7 @@ "bytes": "23be151", "bytesECI": "db278b8", "text": "W004245700121", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-k/slow-0.json b/tests/__snapshots__/datamatrix-3/dm-k/slow-0.json index 6865fea0..cd570bc4 100644 --- a/tests/__snapshots__/datamatrix-3/dm-k/slow-0.json +++ b/tests/__snapshots__/datamatrix-3/dm-k/slow-0.json @@ -5,7 +5,7 @@ "bytes": "23be151", "bytesECI": "db278b8", "text": "W004245700121", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-k/slow-180.json b/tests/__snapshots__/datamatrix-3/dm-k/slow-180.json index 019bdf85..11485e70 100644 --- a/tests/__snapshots__/datamatrix-3/dm-k/slow-180.json +++ b/tests/__snapshots__/datamatrix-3/dm-k/slow-180.json @@ -5,7 +5,7 @@ "bytes": "23be151", "bytesECI": "db278b8", "text": "W004245700121", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-k/slow-270.json b/tests/__snapshots__/datamatrix-3/dm-k/slow-270.json index ecb33ce1..387aa6fa 100644 --- a/tests/__snapshots__/datamatrix-3/dm-k/slow-270.json +++ b/tests/__snapshots__/datamatrix-3/dm-k/slow-270.json @@ -5,7 +5,7 @@ "bytes": "23be151", "bytesECI": "db278b8", "text": "W004245700121", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-3/dm-k/slow-90.json b/tests/__snapshots__/datamatrix-3/dm-k/slow-90.json index cf7994e8..ee846a83 100644 --- a/tests/__snapshots__/datamatrix-3/dm-k/slow-90.json +++ b/tests/__snapshots__/datamatrix-3/dm-k/slow-90.json @@ -5,7 +5,7 @@ "bytes": "23be151", "bytesECI": "db278b8", "text": "W004245700121", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-120x8/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-120x8/fast-0.json index c014ee59..be7e953a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-120x8/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-120x8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1dbf303", "bytesECI": "363bc26", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "35" + "version": "35", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-120x8/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-120x8/pure-0.json index c014ee59..be7e953a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-120x8/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-120x8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1dbf303", "bytesECI": "363bc26", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "35" + "version": "35", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-0.json index c014ee59..be7e953a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1dbf303", "bytesECI": "363bc26", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "35" + "version": "35", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-180.json index 14803779..d6850b30 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1dbf303", "bytesECI": "363bc26", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "35" + "version": "35", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-270.json index 7c2d69f2..759c7b67 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1dbf303", "bytesECI": "363bc26", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "35" + "version": "35", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-90.json index 2f1b4e17..b5103a82 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-120x8/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1dbf303", "bytesECI": "363bc26", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "35" + "version": "35", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-144x8/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-144x8/fast-0.json index c335052b..be3c1b92 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-144x8/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-144x8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1c7bbd4", "bytesECI": "d0cea55", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmno", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "36" + "version": "36", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-144x8/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-144x8/pure-0.json index c335052b..be3c1b92 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-144x8/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-144x8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1c7bbd4", "bytesECI": "d0cea55", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmno", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "36" + "version": "36", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-0.json index c335052b..be3c1b92 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1c7bbd4", "bytesECI": "d0cea55", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmno", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "36" + "version": "36", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-180.json index 66b2def4..2dd514fd 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1c7bbd4", "bytesECI": "d0cea55", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmno", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "36" + "version": "36", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-270.json index 041529d4..7e477c71 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1c7bbd4", "bytesECI": "d0cea55", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmno", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "36" + "version": "36", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-90.json index 2902c652..138b6698 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-144x8/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1c7bbd4", "bytesECI": "d0cea55", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmno", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "36" + "version": "36", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-36x20/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-36x20/fast-0.json index 4e8d564e..50315035 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-36x20/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-36x20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2fcd5a0", "bytesECI": "6041568", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-36x20/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-36x20/pure-0.json index 4e8d564e..50315035 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-36x20/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-36x20/pure-0.json @@ -5,7 +5,7 @@ "bytes": "2fcd5a0", "bytesECI": "6041568", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-0.json index 4e8d564e..50315035 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2fcd5a0", "bytesECI": "6041568", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-180.json index 1ef5f2ea..4f5af740 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2fcd5a0", "bytesECI": "6041568", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-270.json index 8de8f0f3..d004b03d 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-270.json @@ -5,7 +5,7 @@ "bytes": "2fcd5a0", "bytesECI": "6041568", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-90.json index f31ee441..33c60e26 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-36x20/slow-90.json @@ -5,7 +5,7 @@ "bytes": "2fcd5a0", "bytesECI": "6041568", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-40x26/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-40x26/fast-0.json index 0931f0f0..80972c7a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-40x26/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-40x26/fast-0.json @@ -5,7 +5,7 @@ "bytes": "35718fc", "bytesECI": "78b4581", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxy", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "46" + "version": "46", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-40x26/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-40x26/pure-0.json index 0931f0f0..80972c7a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-40x26/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-40x26/pure-0.json @@ -5,7 +5,7 @@ "bytes": "35718fc", "bytesECI": "78b4581", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxy", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "46" + "version": "46", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-0.json index 0931f0f0..80972c7a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-0.json @@ -5,7 +5,7 @@ "bytes": "35718fc", "bytesECI": "78b4581", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxy", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "46" + "version": "46", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-180.json index 8f8ef7cc..4d895c08 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-180.json @@ -5,7 +5,7 @@ "bytes": "35718fc", "bytesECI": "78b4581", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxy", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "46" + "version": "46", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-270.json index 80a7fbc2..45f14efd 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-270.json @@ -5,7 +5,7 @@ "bytes": "35718fc", "bytesECI": "78b4581", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxy", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "46" + "version": "46", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-90.json index dc630bd9..2d4d81b3 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-40x26/slow-90.json @@ -5,7 +5,7 @@ "bytes": "35718fc", "bytesECI": "78b4581", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxy", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "46" + "version": "46", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-44x20/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-44x20/fast-0.json index 3f1797d4..ebb41720 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-44x20/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-44x20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "346f6d8", "bytesECI": "7843059", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "41" + "version": "41", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-44x20/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-44x20/pure-0.json index 3f1797d4..ebb41720 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-44x20/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-44x20/pure-0.json @@ -5,7 +5,7 @@ "bytes": "346f6d8", "bytesECI": "7843059", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "41" + "version": "41", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-0.json index 3f1797d4..ebb41720 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "346f6d8", "bytesECI": "7843059", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "41" + "version": "41", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-180.json index 5acf42d2..e404f289 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "346f6d8", "bytesECI": "7843059", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "41" + "version": "41", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-270.json index 29af281c..54c975bb 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-270.json @@ -5,7 +5,7 @@ "bytes": "346f6d8", "bytesECI": "7843059", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "41" + "version": "41", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-90.json index 51974a5c..96e4bcfc 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-44x20/slow-90.json @@ -5,7 +5,7 @@ "bytes": "346f6d8", "bytesECI": "7843059", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "41" + "version": "41", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x22/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-48x22/fast-0.json index 877460dc..ecbeca2f 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x22/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x22/fast-0.json @@ -5,7 +5,7 @@ "bytes": "544394f", "bytesECI": "d808017", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzab", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "43" + "version": "43", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x22/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-48x22/pure-0.json index 877460dc..ecbeca2f 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x22/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x22/pure-0.json @@ -5,7 +5,7 @@ "bytes": "544394f", "bytesECI": "d808017", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzab", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "43" + "version": "43", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-0.json index 877460dc..ecbeca2f 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "544394f", "bytesECI": "d808017", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzab", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "43" + "version": "43", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-180.json index dcbc7317..fa29b1e7 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "544394f", "bytesECI": "d808017", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzab", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "43" + "version": "43", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-270.json index 6b31917e..342f822f 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-270.json @@ -5,7 +5,7 @@ "bytes": "544394f", "bytesECI": "d808017", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzab", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "43" + "version": "43", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-90.json index 7d4ab3ef..91186e7c 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x22/slow-90.json @@ -5,7 +5,7 @@ "bytes": "544394f", "bytesECI": "d808017", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzab", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "43" + "version": "43", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x24/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-48x24/fast-0.json index de7875fd..1b599749 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x24/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "47fdcd0", "bytesECI": "c9833d1", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmn", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "44" + "version": "44", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x24/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-48x24/pure-0.json index de7875fd..1b599749 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x24/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x24/pure-0.json @@ -5,7 +5,7 @@ "bytes": "47fdcd0", "bytesECI": "c9833d1", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmn", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "44" + "version": "44", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-0.json index de7875fd..1b599749 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "47fdcd0", "bytesECI": "c9833d1", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmn", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "44" + "version": "44", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-180.json index 59d6779d..3c8213ae 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "47fdcd0", "bytesECI": "c9833d1", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmn", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "44" + "version": "44", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-270.json index e3b24dd0..ac27bd39 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-270.json @@ -5,7 +5,7 @@ "bytes": "47fdcd0", "bytesECI": "c9833d1", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmn", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "44" + "version": "44", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-90.json index bac916cd..83c7ec6b 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x24/slow-90.json @@ -5,7 +5,7 @@ "bytes": "47fdcd0", "bytesECI": "c9833d1", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmn", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "44" + "version": "44", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x26/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-48x26/fast-0.json index 90ab62eb..a915d27a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x26/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x26/fast-0.json @@ -5,7 +5,7 @@ "bytes": "df2a873", "bytesECI": "aa0a8ee", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "47" + "version": "47", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x26/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-48x26/pure-0.json index 90ab62eb..a915d27a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x26/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x26/pure-0.json @@ -5,7 +5,7 @@ "bytes": "df2a873", "bytesECI": "aa0a8ee", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "47" + "version": "47", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-0.json index 90ab62eb..a915d27a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-0.json @@ -5,7 +5,7 @@ "bytes": "df2a873", "bytesECI": "aa0a8ee", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "47" + "version": "47", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-180.json index 046f2d70..db0c370c 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-180.json @@ -5,7 +5,7 @@ "bytes": "df2a873", "bytesECI": "aa0a8ee", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "47" + "version": "47", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-270.json index 3a25fc7e..06804898 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-270.json @@ -5,7 +5,7 @@ "bytes": "df2a873", "bytesECI": "aa0a8ee", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "47" + "version": "47", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-90.json index c900cb47..7ef10235 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x26/slow-90.json @@ -5,7 +5,7 @@ "bytes": "df2a873", "bytesECI": "aa0a8ee", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "47" + "version": "47", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x8/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-48x8/fast-0.json index 4e6a6945..225c2f7f 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x8/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "69b9805", "bytesECI": "98d2f6e", "text": "abcdefghijklmnopqrstuvwxy", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "31" + "version": "31", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x8/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-48x8/pure-0.json index 4e6a6945..225c2f7f 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x8/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "69b9805", "bytesECI": "98d2f6e", "text": "abcdefghijklmnopqrstuvwxy", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "31" + "version": "31", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-0.json index 4e6a6945..225c2f7f 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "69b9805", "bytesECI": "98d2f6e", "text": "abcdefghijklmnopqrstuvwxy", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "31" + "version": "31", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-180.json index c17c5362..cefd90d7 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "69b9805", "bytesECI": "98d2f6e", "text": "abcdefghijklmnopqrstuvwxy", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "31" + "version": "31", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-270.json index 178eb379..db0ea220 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-270.json @@ -5,7 +5,7 @@ "bytes": "69b9805", "bytesECI": "98d2f6e", "text": "abcdefghijklmnopqrstuvwxy", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "31" + "version": "31", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-90.json index 6757ae2b..68dd4959 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-48x8/slow-90.json @@ -5,7 +5,7 @@ "bytes": "69b9805", "bytesECI": "98d2f6e", "text": "abcdefghijklmnopqrstuvwxy", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "31" + "version": "31", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x12/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x12/fast-0.json index b29a3753..d6a267a3 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x12/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5ca3e1e", "bytesECI": "cd49498", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijk", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "37" + "version": "37", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x12/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x12/pure-0.json index b29a3753..d6a267a3 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x12/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5ca3e1e", "bytesECI": "cd49498", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijk", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "37" + "version": "37", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-0.json index b29a3753..d6a267a3 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5ca3e1e", "bytesECI": "cd49498", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijk", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "37" + "version": "37", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-180.json index 79c487cc..34e34395 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5ca3e1e", "bytesECI": "cd49498", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijk", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "37" + "version": "37", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-270.json index 468e53ce..e3054e1d 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "5ca3e1e", "bytesECI": "cd49498", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijk", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "37" + "version": "37", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-90.json index cead8e2e..fa00be8a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "5ca3e1e", "bytesECI": "cd49498", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijk", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "37" + "version": "37", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x16/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x16/fast-0.json index 193e92ab..f48252b3 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x16/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e9e9c10", "bytesECI": "9e62457", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklm", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "39" + "version": "39", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x16/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x16/pure-0.json index 193e92ab..f48252b3 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x16/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x16/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e9e9c10", "bytesECI": "9e62457", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklm", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "39" + "version": "39", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-0.json index 193e92ab..f48252b3 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e9e9c10", "bytesECI": "9e62457", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklm", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "39" + "version": "39", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-180.json index 92b951dc..6307ad31 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e9e9c10", "bytesECI": "9e62457", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklm", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "39" + "version": "39", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-270.json index 2651d167..f1886058 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-270.json @@ -5,7 +5,7 @@ "bytes": "e9e9c10", "bytesECI": "9e62457", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklm", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "39" + "version": "39", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-90.json index 3fc488e0..a4ab0981 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x16/slow-90.json @@ -5,7 +5,7 @@ "bytes": "e9e9c10", "bytesECI": "9e62457", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklm", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "39" + "version": "39", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x20/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x20/fast-0.json index 019200bf..d80535d9 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x20/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d46e456", "bytesECI": "8d2ba8f", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "42" + "version": "42", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x20/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x20/pure-0.json index 019200bf..d80535d9 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x20/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x20/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d46e456", "bytesECI": "8d2ba8f", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "42" + "version": "42", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-0.json index 019200bf..d80535d9 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d46e456", "bytesECI": "8d2ba8f", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "42" + "version": "42", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-180.json index 0711c229..041eba8d 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d46e456", "bytesECI": "8d2ba8f", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "42" + "version": "42", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-270.json index 654e5856..9a827eb2 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d46e456", "bytesECI": "8d2ba8f", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "42" + "version": "42", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-90.json index b0401b80..c1a2565e 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x20/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d46e456", "bytesECI": "8d2ba8f", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "42" + "version": "42", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x24/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x24/fast-0.json index ba3dac21..62cbc4fa 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x24/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "476bf1d", "bytesECI": "816a653", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "45" + "version": "45", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x24/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x24/pure-0.json index ba3dac21..62cbc4fa 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x24/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x24/pure-0.json @@ -5,7 +5,7 @@ "bytes": "476bf1d", "bytesECI": "816a653", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "45" + "version": "45", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-0.json index ba3dac21..62cbc4fa 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "476bf1d", "bytesECI": "816a653", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "45" + "version": "45", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-180.json index 037d09fa..cd5d4097 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "476bf1d", "bytesECI": "816a653", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "45" + "version": "45", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-270.json index 1586f043..e08f1cbf 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-270.json @@ -5,7 +5,7 @@ "bytes": "476bf1d", "bytesECI": "816a653", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "45" + "version": "45", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-90.json index 6a712858..e5bba39b 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x24/slow-90.json @@ -5,7 +5,7 @@ "bytes": "476bf1d", "bytesECI": "816a653", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "45" + "version": "45", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x26/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x26/fast-0.json index 40505ee4..eee61dc8 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x26/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x26/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5953d0f", "bytesECI": "b08dabd", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrs", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "48" + "version": "48", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x26/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x26/pure-0.json index 40505ee4..eee61dc8 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x26/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x26/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5953d0f", "bytesECI": "b08dabd", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrs", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "48" + "version": "48", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-0.json index 40505ee4..eee61dc8 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5953d0f", "bytesECI": "b08dabd", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrs", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "48" + "version": "48", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-180.json index c1c4e948..d3c17288 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5953d0f", "bytesECI": "b08dabd", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrs", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "48" + "version": "48", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-270.json index 589ae357..9cf857ce 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-270.json @@ -5,7 +5,7 @@ "bytes": "5953d0f", "bytesECI": "b08dabd", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrs", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "48" + "version": "48", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-90.json index a5978885..0cfe416f 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x26/slow-90.json @@ -5,7 +5,7 @@ "bytes": "5953d0f", "bytesECI": "b08dabd", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrs", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "48" + "version": "48", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x8/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x8/fast-0.json index 15417a64..139cc7a1 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x8/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "98fe2ed", "bytesECI": "a5e8b6e", "text": "abcdefghijklmnopqrstuvwxyzabcdefgh", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x8/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x8/pure-0.json index 15417a64..139cc7a1 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x8/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "98fe2ed", "bytesECI": "a5e8b6e", "text": "abcdefghijklmnopqrstuvwxyzabcdefgh", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-0.json index 15417a64..139cc7a1 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "98fe2ed", "bytesECI": "a5e8b6e", "text": "abcdefghijklmnopqrstuvwxyzabcdefgh", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-180.json index be420168..0a483360 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "98fe2ed", "bytesECI": "a5e8b6e", "text": "abcdefghijklmnopqrstuvwxyzabcdefgh", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-270.json index 2ab146ad..24e29a8d 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-270.json @@ -5,7 +5,7 @@ "bytes": "98fe2ed", "bytesECI": "a5e8b6e", "text": "abcdefghijklmnopqrstuvwxyzabcdefgh", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-90.json index f77c2636..9336f18d 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-64x8/slow-90.json @@ -5,7 +5,7 @@ "bytes": "98fe2ed", "bytesECI": "a5e8b6e", "text": "abcdefghijklmnopqrstuvwxyzabcdefgh", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-80x8/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-80x8/fast-0.json index 673ca9cb..7ee4183f 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-80x8/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-80x8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9ff224d", "bytesECI": "b947d6f", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "33" + "version": "33", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-80x8/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-80x8/pure-0.json index 673ca9cb..7ee4183f 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-80x8/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-80x8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "9ff224d", "bytesECI": "b947d6f", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "33" + "version": "33", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-0.json index 673ca9cb..7ee4183f 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9ff224d", "bytesECI": "b947d6f", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "33" + "version": "33", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-180.json index eb7a1bad..477b5b0b 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9ff224d", "bytesECI": "b947d6f", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "33" + "version": "33", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-270.json index 5bb51d4c..db021ea1 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9ff224d", "bytesECI": "b947d6f", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "33" + "version": "33", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-90.json index 10273f03..201b48b1 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-80x8/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9ff224d", "bytesECI": "b947d6f", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrst", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "33" + "version": "33", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-88x12/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-88x12/fast-0.json index 0915322c..708e4356 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-88x12/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-88x12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a5ddedc", "bytesECI": "2ea7be2", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnop", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "38" + "version": "38", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-88x12/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-88x12/pure-0.json index 0915322c..708e4356 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-88x12/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-88x12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a5ddedc", "bytesECI": "2ea7be2", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnop", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "38" + "version": "38", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-0.json index 0915322c..708e4356 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a5ddedc", "bytesECI": "2ea7be2", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnop", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "38" + "version": "38", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-180.json index b9cbcef8..5ac1ab2f 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a5ddedc", "bytesECI": "2ea7be2", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnop", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "38" + "version": "38", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-270.json index 056212b2..98819e76 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a5ddedc", "bytesECI": "2ea7be2", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnop", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "38" + "version": "38", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-90.json index eba4bde8..fc66ac62 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-88x12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a5ddedc", "bytesECI": "2ea7be2", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnop", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "38" + "version": "38", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-96x8/fast-0.json b/tests/__snapshots__/datamatrix-4/abcd-96x8/fast-0.json index 412e3503..0a7f5d2a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-96x8/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-96x8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "595615d", "bytesECI": "067a021", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-96x8/pure-0.json b/tests/__snapshots__/datamatrix-4/abcd-96x8/pure-0.json index 412e3503..0a7f5d2a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-96x8/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-96x8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "595615d", "bytesECI": "067a021", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-0.json b/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-0.json index 412e3503..0a7f5d2a 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "595615d", "bytesECI": "067a021", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-180.json b/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-180.json index 9a2f3cd3..cc412bd9 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "595615d", "bytesECI": "067a021", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-270.json b/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-270.json index 46a7851b..8a5ee189 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-270.json @@ -5,7 +5,7 @@ "bytes": "595615d", "bytesECI": "067a021", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-90.json b/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-90.json index 074157a1..f60534c5 100644 --- a/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/abcd-96x8/slow-90.json @@ -5,7 +5,7 @@ "bytes": "595615d", "bytesECI": "067a021", "text": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/fast-0.json b/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/fast-0.json index b3bc2f28..a2f90029 100644 --- a/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/fast-0.json @@ -5,7 +5,7 @@ "bytes": "49f8f95", "bytesECI": "42b9de5", "text": "[)>0625PLEIBMAQ7BBC448559ACS44AACC", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/pure-0.json b/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-0.json b/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-0.json index b3bc2f28..a2f90029 100644 --- a/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-0.json @@ -5,7 +5,7 @@ "bytes": "49f8f95", "bytesECI": "42b9de5", "text": "[)>0625PLEIBMAQ7BBC448559ACS44AACC", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-180.json b/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-180.json index d71161ac..94f17e35 100644 --- a/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-180.json @@ -5,7 +5,7 @@ "bytes": "49f8f95", "bytesECI": "42b9de5", "text": "[)>0625PLEIBMAQ7BBC448559ACS44AACC", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-270.json b/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-270.json index ca903c78..fca39519 100644 --- a/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-270.json @@ -5,7 +5,7 @@ "bytes": "49f8f95", "bytesECI": "42b9de5", "text": "[)>0625PLEIBMAQ7BBC448559ACS44AACC", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-90.json b/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-90.json index eff82705..90802c24 100644 --- a/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/dm-e-d-c-edifice/slow-90.json @@ -5,7 +5,7 @@ "bytes": "49f8f95", "bytesECI": "42b9de5", "text": "[)>0625PLEIBMAQ7BBC448559ACS44AACC", - "eccLevel": "", + "ecLevel": "", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/fast-0.json b/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/fast-0.json index 67b8351c..ce5ee7b2 100644 --- a/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/fast-0.json @@ -5,7 +5,7 @@ "bytes": "03ac674", "bytesECI": "d4a1edc", "text": "1234", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/pure-0.json b/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-0.json b/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-0.json index 67b8351c..ce5ee7b2 100644 --- a/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-0.json @@ -5,7 +5,7 @@ "bytes": "03ac674", "bytesECI": "d4a1edc", "text": "1234", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-180.json b/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-180.json index 559d9f3b..08a483d0 100644 --- a/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-180.json @@ -5,7 +5,7 @@ "bytes": "03ac674", "bytesECI": "d4a1edc", "text": "1234", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-270.json b/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-270.json index c920e2b1..df57b904 100644 --- a/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-270.json @@ -5,7 +5,7 @@ "bytes": "03ac674", "bytesECI": "d4a1edc", "text": "1234", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-90.json b/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-90.json index 0562926b..b1537966 100644 --- a/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/dm-e-d-c-ultrakain/slow-90.json @@ -5,7 +5,7 @@ "bytes": "03ac674", "bytesECI": "d4a1edc", "text": "1234", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/fast-0.json b/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/fast-0.json index 5881e648..150c3f65 100644 --- a/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/fast-0.json +++ b/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "8119090", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "41" + "version": "41", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/pure-0.json b/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/pure-0.json index 5881e648..150c3f65 100644 --- a/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/pure-0.json +++ b/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "8119090", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "41" + "version": "41", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-0.json b/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-0.json index 5881e648..150c3f65 100644 --- a/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-0.json +++ b/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "8119090", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "41" + "version": "41", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-180.json b/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-180.json index 82fbc07b..9bbff6ea 100644 --- a/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-180.json +++ b/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "8119090", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "41" + "version": "41", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-270.json b/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-270.json index 3d1c6e49..0a404f93 100644 --- a/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-270.json +++ b/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-270.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "8119090", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "41" + "version": "41", + "eccLevel": "" } diff --git a/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-90.json b/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-90.json index 9eb96d97..987b552d 100644 --- a/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-90.json +++ b/tests/__snapshots__/datamatrix-4/gs1-figure-4.15.1-2-44x20/slow-90.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "8119090", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "41" + "version": "41", + "eccLevel": "" } diff --git a/tests/__snapshots__/dxfilmedge-1/1/slow-0.json b/tests/__snapshots__/dxfilmedge-1/1/slow-0.json index 5b13a185..fd009151 100644 --- a/tests/__snapshots__/dxfilmedge-1/1/slow-0.json +++ b/tests/__snapshots__/dxfilmedge-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "78374e6", "bytesECI": "78374e6", "text": "36-2/21", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/dxfilmedge-1/1/slow-180.json b/tests/__snapshots__/dxfilmedge-1/1/slow-180.json index 8efe7f72..0d05b480 100644 --- a/tests/__snapshots__/dxfilmedge-1/1/slow-180.json +++ b/tests/__snapshots__/dxfilmedge-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "78374e6", "bytesECI": "78374e6", "text": "36-2/21", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/dxfilmedge-1/2/slow-0.json b/tests/__snapshots__/dxfilmedge-1/2/slow-0.json index d3723e36..49977cff 100644 --- a/tests/__snapshots__/dxfilmedge-1/2/slow-0.json +++ b/tests/__snapshots__/dxfilmedge-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9d9789c", "bytesECI": "9d9789c", "text": "80-11/23", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/dxfilmedge-1/2/slow-180.json b/tests/__snapshots__/dxfilmedge-1/2/slow-180.json index e91f6153..e73f95cc 100644 --- a/tests/__snapshots__/dxfilmedge-1/2/slow-180.json +++ b/tests/__snapshots__/dxfilmedge-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9d9789c", "bytesECI": "9d9789c", "text": "80-11/23", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/dxfilmedge-1/3/fast-0.json b/tests/__snapshots__/dxfilmedge-1/3/fast-0.json index caeb998d..9d9ead03 100644 --- a/tests/__snapshots__/dxfilmedge-1/3/fast-0.json +++ b/tests/__snapshots__/dxfilmedge-1/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2f0305a", "bytesECI": "2f0305a", "text": "10-3", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/dxfilmedge-1/3/slow-0.json b/tests/__snapshots__/dxfilmedge-1/3/slow-0.json index cb81949a..9b0c1073 100644 --- a/tests/__snapshots__/dxfilmedge-1/3/slow-0.json +++ b/tests/__snapshots__/dxfilmedge-1/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2f0305a", "bytesECI": "2f0305a", "text": "10-3", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/dxfilmedge-1/3/slow-180.json b/tests/__snapshots__/dxfilmedge-1/3/slow-180.json index 091e18db..89c81ba9 100644 --- a/tests/__snapshots__/dxfilmedge-1/3/slow-180.json +++ b/tests/__snapshots__/dxfilmedge-1/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2f0305a", "bytesECI": "2f0305a", "text": "10-3", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/#526/fast-0.json b/tests/__snapshots__/ean13-1/#526/fast-0.json index 65e875b5..8d682757 100644 --- a/tests/__snapshots__/ean13-1/#526/fast-0.json +++ b/tests/__snapshots__/ean13-1/#526/fast-0.json @@ -5,7 +5,7 @@ "bytes": "71ccd5e", "bytesECI": "b71c362", "text": "8886316200561", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/#526/fast-180.json b/tests/__snapshots__/ean13-1/#526/fast-180.json index a143d70a..91ec6ba9 100644 --- a/tests/__snapshots__/ean13-1/#526/fast-180.json +++ b/tests/__snapshots__/ean13-1/#526/fast-180.json @@ -5,7 +5,7 @@ "bytes": "71ccd5e", "bytesECI": "b71c362", "text": "8886316200561", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/#526/slow-0.json b/tests/__snapshots__/ean13-1/#526/slow-0.json index 65e875b5..8d682757 100644 --- a/tests/__snapshots__/ean13-1/#526/slow-0.json +++ b/tests/__snapshots__/ean13-1/#526/slow-0.json @@ -5,7 +5,7 @@ "bytes": "71ccd5e", "bytesECI": "b71c362", "text": "8886316200561", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/#526/slow-180.json b/tests/__snapshots__/ean13-1/#526/slow-180.json index a143d70a..91ec6ba9 100644 --- a/tests/__snapshots__/ean13-1/#526/slow-180.json +++ b/tests/__snapshots__/ean13-1/#526/slow-180.json @@ -5,7 +5,7 @@ "bytes": "71ccd5e", "bytesECI": "b71c362", "text": "8886316200561", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/1/fast-0.json b/tests/__snapshots__/ean13-1/1/fast-0.json index 3d777a13..80b40e35 100644 --- a/tests/__snapshots__/ean13-1/1/fast-0.json +++ b/tests/__snapshots__/ean13-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3176e55", "bytesECI": "245376d", "text": "8413000065504", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/1/fast-180.json b/tests/__snapshots__/ean13-1/1/fast-180.json index 4e0e4375..1da7e42d 100644 --- a/tests/__snapshots__/ean13-1/1/fast-180.json +++ b/tests/__snapshots__/ean13-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3176e55", "bytesECI": "245376d", "text": "8413000065504", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/1/slow-0.json b/tests/__snapshots__/ean13-1/1/slow-0.json index 295556bf..3e2dbb81 100644 --- a/tests/__snapshots__/ean13-1/1/slow-0.json +++ b/tests/__snapshots__/ean13-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3176e55", "bytesECI": "245376d", "text": "8413000065504", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/1/slow-180.json b/tests/__snapshots__/ean13-1/1/slow-180.json index bd73b602..240ce88e 100644 --- a/tests/__snapshots__/ean13-1/1/slow-180.json +++ b/tests/__snapshots__/ean13-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3176e55", "bytesECI": "245376d", "text": "8413000065504", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/10/fast-0.json b/tests/__snapshots__/ean13-1/10/fast-0.json index e6ea6002..7c745b5f 100644 --- a/tests/__snapshots__/ean13-1/10/fast-0.json +++ b/tests/__snapshots__/ean13-1/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "37c83e3", "bytesECI": "7850ff0", "text": "8480010001136", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/10/fast-180.json b/tests/__snapshots__/ean13-1/10/fast-180.json index 95d030c4..7d4dafa3 100644 --- a/tests/__snapshots__/ean13-1/10/fast-180.json +++ b/tests/__snapshots__/ean13-1/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "37c83e3", "bytesECI": "7850ff0", "text": "8480010001136", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/10/slow-0.json b/tests/__snapshots__/ean13-1/10/slow-0.json index 18bb0240..85bc1bb0 100644 --- a/tests/__snapshots__/ean13-1/10/slow-0.json +++ b/tests/__snapshots__/ean13-1/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "37c83e3", "bytesECI": "7850ff0", "text": "8480010001136", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/10/slow-180.json b/tests/__snapshots__/ean13-1/10/slow-180.json index 598ee8ab..006738ab 100644 --- a/tests/__snapshots__/ean13-1/10/slow-180.json +++ b/tests/__snapshots__/ean13-1/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "37c83e3", "bytesECI": "7850ff0", "text": "8480010001136", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/12/fast-0.json b/tests/__snapshots__/ean13-1/12/fast-0.json index 7faa5e7a..77365b8a 100644 --- a/tests/__snapshots__/ean13-1/12/fast-0.json +++ b/tests/__snapshots__/ean13-1/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a214809", "bytesECI": "c8f5a55", "text": "5201815331227", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/12/fast-180.json b/tests/__snapshots__/ean13-1/12/fast-180.json index 08d0883f..4fe9d957 100644 --- a/tests/__snapshots__/ean13-1/12/fast-180.json +++ b/tests/__snapshots__/ean13-1/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a214809", "bytesECI": "c8f5a55", "text": "5201815331227", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/12/slow-0.json b/tests/__snapshots__/ean13-1/12/slow-0.json index 7faa5e7a..77365b8a 100644 --- a/tests/__snapshots__/ean13-1/12/slow-0.json +++ b/tests/__snapshots__/ean13-1/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a214809", "bytesECI": "c8f5a55", "text": "5201815331227", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/12/slow-180.json b/tests/__snapshots__/ean13-1/12/slow-180.json index ad23924d..f7df969a 100644 --- a/tests/__snapshots__/ean13-1/12/slow-180.json +++ b/tests/__snapshots__/ean13-1/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a214809", "bytesECI": "c8f5a55", "text": "5201815331227", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/13/fast-0.json b/tests/__snapshots__/ean13-1/13/fast-0.json index f08f17b9..f8135930 100644 --- a/tests/__snapshots__/ean13-1/13/fast-0.json +++ b/tests/__snapshots__/ean13-1/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3971c96", "bytesECI": "3e6c8c5", "text": "8413600298517", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/13/fast-180.json b/tests/__snapshots__/ean13-1/13/fast-180.json index f7b1c712..3dec8fd5 100644 --- a/tests/__snapshots__/ean13-1/13/fast-180.json +++ b/tests/__snapshots__/ean13-1/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3971c96", "bytesECI": "3e6c8c5", "text": "8413600298517", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/13/slow-0.json b/tests/__snapshots__/ean13-1/13/slow-0.json index b36d89c0..dd70c3c2 100644 --- a/tests/__snapshots__/ean13-1/13/slow-0.json +++ b/tests/__snapshots__/ean13-1/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3971c96", "bytesECI": "3e6c8c5", "text": "8413600298517", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/13/slow-180.json b/tests/__snapshots__/ean13-1/13/slow-180.json index f7b1c712..3dec8fd5 100644 --- a/tests/__snapshots__/ean13-1/13/slow-180.json +++ b/tests/__snapshots__/ean13-1/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3971c96", "bytesECI": "3e6c8c5", "text": "8413600298517", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/14/fast-0.json b/tests/__snapshots__/ean13-1/14/fast-0.json index 8f02e109..8217b129 100644 --- a/tests/__snapshots__/ean13-1/14/fast-0.json +++ b/tests/__snapshots__/ean13-1/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "dce3a0d", "bytesECI": "12605a3", "text": "3560070169443", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/14/fast-180.json b/tests/__snapshots__/ean13-1/14/fast-180.json index 4ab94f80..69044e04 100644 --- a/tests/__snapshots__/ean13-1/14/fast-180.json +++ b/tests/__snapshots__/ean13-1/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "dce3a0d", "bytesECI": "12605a3", "text": "3560070169443", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/14/slow-0.json b/tests/__snapshots__/ean13-1/14/slow-0.json index 0860ada1..d006ee19 100644 --- a/tests/__snapshots__/ean13-1/14/slow-0.json +++ b/tests/__snapshots__/ean13-1/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "dce3a0d", "bytesECI": "12605a3", "text": "3560070169443", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/14/slow-180.json b/tests/__snapshots__/ean13-1/14/slow-180.json index e045f632..2f9590fe 100644 --- a/tests/__snapshots__/ean13-1/14/slow-180.json +++ b/tests/__snapshots__/ean13-1/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "dce3a0d", "bytesECI": "12605a3", "text": "3560070169443", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/15/fast-0.json b/tests/__snapshots__/ean13-1/15/fast-0.json index 8c6cecad..f65f4830 100644 --- a/tests/__snapshots__/ean13-1/15/fast-0.json +++ b/tests/__snapshots__/ean13-1/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f0a208c", "bytesECI": "c4a4a0a", "text": "4045787034318", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/15/fast-180.json b/tests/__snapshots__/ean13-1/15/fast-180.json index cd460e7c..a052c371 100644 --- a/tests/__snapshots__/ean13-1/15/fast-180.json +++ b/tests/__snapshots__/ean13-1/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f0a208c", "bytesECI": "c4a4a0a", "text": "4045787034318", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/15/slow-0.json b/tests/__snapshots__/ean13-1/15/slow-0.json index c9330134..17974471 100644 --- a/tests/__snapshots__/ean13-1/15/slow-0.json +++ b/tests/__snapshots__/ean13-1/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f0a208c", "bytesECI": "c4a4a0a", "text": "4045787034318", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/15/slow-180.json b/tests/__snapshots__/ean13-1/15/slow-180.json index 99756e00..9a1a8a83 100644 --- a/tests/__snapshots__/ean13-1/15/slow-180.json +++ b/tests/__snapshots__/ean13-1/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f0a208c", "bytesECI": "c4a4a0a", "text": "4045787034318", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/18/fast-0.json b/tests/__snapshots__/ean13-1/18/fast-0.json index d755d398..752fa53c 100644 --- a/tests/__snapshots__/ean13-1/18/fast-0.json +++ b/tests/__snapshots__/ean13-1/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4fadef6", "bytesECI": "257cdfa", "text": "3086126100326", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/18/fast-180.json b/tests/__snapshots__/ean13-1/18/fast-180.json index 00cd1d34..91498f48 100644 --- a/tests/__snapshots__/ean13-1/18/fast-180.json +++ b/tests/__snapshots__/ean13-1/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4fadef6", "bytesECI": "257cdfa", "text": "3086126100326", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/18/slow-0.json b/tests/__snapshots__/ean13-1/18/slow-0.json index 251deba9..966bedcf 100644 --- a/tests/__snapshots__/ean13-1/18/slow-0.json +++ b/tests/__snapshots__/ean13-1/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4fadef6", "bytesECI": "257cdfa", "text": "3086126100326", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/18/slow-180.json b/tests/__snapshots__/ean13-1/18/slow-180.json index 9ab8d493..d04e94a5 100644 --- a/tests/__snapshots__/ean13-1/18/slow-180.json +++ b/tests/__snapshots__/ean13-1/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4fadef6", "bytesECI": "257cdfa", "text": "3086126100326", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/19/fast-0.json b/tests/__snapshots__/ean13-1/19/fast-0.json index 626c702f..8e9a13de 100644 --- a/tests/__snapshots__/ean13-1/19/fast-0.json +++ b/tests/__snapshots__/ean13-1/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6a2bd95", "bytesECI": "60ab364", "text": "4820024790635", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/19/fast-180.json b/tests/__snapshots__/ean13-1/19/fast-180.json index e456c640..1b07cd81 100644 --- a/tests/__snapshots__/ean13-1/19/fast-180.json +++ b/tests/__snapshots__/ean13-1/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6a2bd95", "bytesECI": "60ab364", "text": "4820024790635", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/19/slow-0.json b/tests/__snapshots__/ean13-1/19/slow-0.json index ff182f09..453fc175 100644 --- a/tests/__snapshots__/ean13-1/19/slow-0.json +++ b/tests/__snapshots__/ean13-1/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6a2bd95", "bytesECI": "60ab364", "text": "4820024790635", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/19/slow-180.json b/tests/__snapshots__/ean13-1/19/slow-180.json index 8683c6b4..cc17785e 100644 --- a/tests/__snapshots__/ean13-1/19/slow-180.json +++ b/tests/__snapshots__/ean13-1/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6a2bd95", "bytesECI": "60ab364", "text": "4820024790635", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/2/fast-0.json b/tests/__snapshots__/ean13-1/2/fast-0.json index d274e943..b0b9f831 100644 --- a/tests/__snapshots__/ean13-1/2/fast-0.json +++ b/tests/__snapshots__/ean13-1/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "66ad483", "bytesECI": "571ee1d", "text": "8480010092271", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/2/fast-180.json b/tests/__snapshots__/ean13-1/2/fast-180.json index 353ca990..b3374a5d 100644 --- a/tests/__snapshots__/ean13-1/2/fast-180.json +++ b/tests/__snapshots__/ean13-1/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "66ad483", "bytesECI": "571ee1d", "text": "8480010092271", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/2/slow-0.json b/tests/__snapshots__/ean13-1/2/slow-0.json index 3b9c52ca..fa4cb3e5 100644 --- a/tests/__snapshots__/ean13-1/2/slow-0.json +++ b/tests/__snapshots__/ean13-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "66ad483", "bytesECI": "571ee1d", "text": "8480010092271", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/2/slow-180.json b/tests/__snapshots__/ean13-1/2/slow-180.json index 521ec90a..6398d53c 100644 --- a/tests/__snapshots__/ean13-1/2/slow-180.json +++ b/tests/__snapshots__/ean13-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "66ad483", "bytesECI": "571ee1d", "text": "8480010092271", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/20/slow-0.json b/tests/__snapshots__/ean13-1/20/slow-0.json index fe5b249e..0749fbd7 100644 --- a/tests/__snapshots__/ean13-1/20/slow-0.json +++ b/tests/__snapshots__/ean13-1/20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "62f1848", "bytesECI": "9306c4f", "text": "4000539017100", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/20/slow-180.json b/tests/__snapshots__/ean13-1/20/slow-180.json index 4039e285..472a03cd 100644 --- a/tests/__snapshots__/ean13-1/20/slow-180.json +++ b/tests/__snapshots__/ean13-1/20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "62f1848", "bytesECI": "9306c4f", "text": "4000539017100", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/21/fast-0.json b/tests/__snapshots__/ean13-1/21/fast-0.json index c1b7230f..4c412b6d 100644 --- a/tests/__snapshots__/ean13-1/21/fast-0.json +++ b/tests/__snapshots__/ean13-1/21/fast-0.json @@ -5,7 +5,7 @@ "bytes": "021af7f", "bytesECI": "a801d82", "text": "7622200008018", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/21/fast-180.json b/tests/__snapshots__/ean13-1/21/fast-180.json index 3263da35..22099ad4 100644 --- a/tests/__snapshots__/ean13-1/21/fast-180.json +++ b/tests/__snapshots__/ean13-1/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "021af7f", "bytesECI": "a801d82", "text": "7622200008018", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/21/slow-0.json b/tests/__snapshots__/ean13-1/21/slow-0.json index 88ee4f2f..e2159d80 100644 --- a/tests/__snapshots__/ean13-1/21/slow-0.json +++ b/tests/__snapshots__/ean13-1/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "021af7f", "bytesECI": "a801d82", "text": "7622200008018", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/21/slow-180.json b/tests/__snapshots__/ean13-1/21/slow-180.json index 7b002b08..1b8cd667 100644 --- a/tests/__snapshots__/ean13-1/21/slow-180.json +++ b/tests/__snapshots__/ean13-1/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "021af7f", "bytesECI": "a801d82", "text": "7622200008018", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/22/fast-0.json b/tests/__snapshots__/ean13-1/22/fast-0.json index 53477d65..94fb6f9e 100644 --- a/tests/__snapshots__/ean13-1/22/fast-0.json +++ b/tests/__snapshots__/ean13-1/22/fast-0.json @@ -5,7 +5,7 @@ "bytes": "10a57ad", "bytesECI": "eb3bfec", "text": "5603667020517", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/22/fast-180.json b/tests/__snapshots__/ean13-1/22/fast-180.json index 1bbdd0bb..2235ac03 100644 --- a/tests/__snapshots__/ean13-1/22/fast-180.json +++ b/tests/__snapshots__/ean13-1/22/fast-180.json @@ -5,7 +5,7 @@ "bytes": "10a57ad", "bytesECI": "eb3bfec", "text": "5603667020517", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/22/slow-0.json b/tests/__snapshots__/ean13-1/22/slow-0.json index 21243f68..af695207 100644 --- a/tests/__snapshots__/ean13-1/22/slow-0.json +++ b/tests/__snapshots__/ean13-1/22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "10a57ad", "bytesECI": "eb3bfec", "text": "5603667020517", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/22/slow-180.json b/tests/__snapshots__/ean13-1/22/slow-180.json index d5c4c5f0..da2b7882 100644 --- a/tests/__snapshots__/ean13-1/22/slow-180.json +++ b/tests/__snapshots__/ean13-1/22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "10a57ad", "bytesECI": "eb3bfec", "text": "5603667020517", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/23/fast-0.json b/tests/__snapshots__/ean13-1/23/fast-0.json index b8dffe2d..16929ae7 100644 --- a/tests/__snapshots__/ean13-1/23/fast-0.json +++ b/tests/__snapshots__/ean13-1/23/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ad641ae", "bytesECI": "d04b29e", "text": "7622400791949", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/23/slow-0.json b/tests/__snapshots__/ean13-1/23/slow-0.json index ab18158c..a95b7085 100644 --- a/tests/__snapshots__/ean13-1/23/slow-0.json +++ b/tests/__snapshots__/ean13-1/23/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad641ae", "bytesECI": "d04b29e", "text": "7622400791949", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/23/slow-180.json b/tests/__snapshots__/ean13-1/23/slow-180.json index 13881a67..da89ba6e 100644 --- a/tests/__snapshots__/ean13-1/23/slow-180.json +++ b/tests/__snapshots__/ean13-1/23/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad641ae", "bytesECI": "d04b29e", "text": "7622400791949", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/24/fast-0.json b/tests/__snapshots__/ean13-1/24/fast-0.json index 086af9ff..0e769ea0 100644 --- a/tests/__snapshots__/ean13-1/24/fast-0.json +++ b/tests/__snapshots__/ean13-1/24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6ec5bbf", "bytesECI": "ef5de6c", "text": "5709262942503", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/24/fast-180.json b/tests/__snapshots__/ean13-1/24/fast-180.json index 0480efb0..cb63bc4f 100644 --- a/tests/__snapshots__/ean13-1/24/fast-180.json +++ b/tests/__snapshots__/ean13-1/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6ec5bbf", "bytesECI": "ef5de6c", "text": "5709262942503", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/24/slow-0.json b/tests/__snapshots__/ean13-1/24/slow-0.json index 086af9ff..0e769ea0 100644 --- a/tests/__snapshots__/ean13-1/24/slow-0.json +++ b/tests/__snapshots__/ean13-1/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6ec5bbf", "bytesECI": "ef5de6c", "text": "5709262942503", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/24/slow-180.json b/tests/__snapshots__/ean13-1/24/slow-180.json index 38f95216..9cb272a3 100644 --- a/tests/__snapshots__/ean13-1/24/slow-180.json +++ b/tests/__snapshots__/ean13-1/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6ec5bbf", "bytesECI": "ef5de6c", "text": "5709262942503", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/25/fast-0.json b/tests/__snapshots__/ean13-1/25/fast-0.json index 1877583a..b8773733 100644 --- a/tests/__snapshots__/ean13-1/25/fast-0.json +++ b/tests/__snapshots__/ean13-1/25/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2e098c2", "bytesECI": "fe5ffc8", "text": "9780140013993", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/25/fast-180.json b/tests/__snapshots__/ean13-1/25/fast-180.json index 2c5e15fc..47317042 100644 --- a/tests/__snapshots__/ean13-1/25/fast-180.json +++ b/tests/__snapshots__/ean13-1/25/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2e098c2", "bytesECI": "fe5ffc8", "text": "9780140013993", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/25/slow-0.json b/tests/__snapshots__/ean13-1/25/slow-0.json index e429be46..c784b74c 100644 --- a/tests/__snapshots__/ean13-1/25/slow-0.json +++ b/tests/__snapshots__/ean13-1/25/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2e098c2", "bytesECI": "fe5ffc8", "text": "9780140013993", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/25/slow-180.json b/tests/__snapshots__/ean13-1/25/slow-180.json index 137cc164..10c5224c 100644 --- a/tests/__snapshots__/ean13-1/25/slow-180.json +++ b/tests/__snapshots__/ean13-1/25/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2e098c2", "bytesECI": "fe5ffc8", "text": "9780140013993", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/26/fast-0.json b/tests/__snapshots__/ean13-1/26/fast-0.json index d795dd01..3ca0cd7a 100644 --- a/tests/__snapshots__/ean13-1/26/fast-0.json +++ b/tests/__snapshots__/ean13-1/26/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f2385d2", "bytesECI": "b55d382", "text": "4901780188352", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/26/fast-180.json b/tests/__snapshots__/ean13-1/26/fast-180.json index 870e1d8a..061e2b75 100644 --- a/tests/__snapshots__/ean13-1/26/fast-180.json +++ b/tests/__snapshots__/ean13-1/26/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f2385d2", "bytesECI": "b55d382", "text": "4901780188352", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/26/slow-0.json b/tests/__snapshots__/ean13-1/26/slow-0.json index afcbe0ea..49d43bc7 100644 --- a/tests/__snapshots__/ean13-1/26/slow-0.json +++ b/tests/__snapshots__/ean13-1/26/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f2385d2", "bytesECI": "b55d382", "text": "4901780188352", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/26/slow-180.json b/tests/__snapshots__/ean13-1/26/slow-180.json index bd5b5a57..a86e349f 100644 --- a/tests/__snapshots__/ean13-1/26/slow-180.json +++ b/tests/__snapshots__/ean13-1/26/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f2385d2", "bytesECI": "b55d382", "text": "4901780188352", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/28/fast-0.json b/tests/__snapshots__/ean13-1/28/fast-0.json index c5dcbc36..ba004e30 100644 --- a/tests/__snapshots__/ean13-1/28/fast-0.json +++ b/tests/__snapshots__/ean13-1/28/fast-0.json @@ -5,7 +5,7 @@ "bytes": "58c462d", "bytesECI": "93ce4b0", "text": "9771699057002", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/28/fast-180.json b/tests/__snapshots__/ean13-1/28/fast-180.json index 443fa33f..37c5e020 100644 --- a/tests/__snapshots__/ean13-1/28/fast-180.json +++ b/tests/__snapshots__/ean13-1/28/fast-180.json @@ -5,7 +5,7 @@ "bytes": "58c462d", "bytesECI": "93ce4b0", "text": "9771699057002", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/28/slow-0.json b/tests/__snapshots__/ean13-1/28/slow-0.json index baef8673..b4107255 100644 --- a/tests/__snapshots__/ean13-1/28/slow-0.json +++ b/tests/__snapshots__/ean13-1/28/slow-0.json @@ -5,7 +5,7 @@ "bytes": "58c462d", "bytesECI": "93ce4b0", "text": "9771699057002", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/28/slow-180.json b/tests/__snapshots__/ean13-1/28/slow-180.json index 6f24ab0c..742cfa1f 100644 --- a/tests/__snapshots__/ean13-1/28/slow-180.json +++ b/tests/__snapshots__/ean13-1/28/slow-180.json @@ -5,7 +5,7 @@ "bytes": "58c462d", "bytesECI": "93ce4b0", "text": "9771699057002", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/29/fast-0.json b/tests/__snapshots__/ean13-1/29/fast-0.json index 2d81a008..03163b1e 100644 --- a/tests/__snapshots__/ean13-1/29/fast-0.json +++ b/tests/__snapshots__/ean13-1/29/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8796004", "bytesECI": "760d281", "text": "4007817327098", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/29/fast-180.json b/tests/__snapshots__/ean13-1/29/fast-180.json index d3ac948b..1290367f 100644 --- a/tests/__snapshots__/ean13-1/29/fast-180.json +++ b/tests/__snapshots__/ean13-1/29/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8796004", "bytesECI": "760d281", "text": "4007817327098", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/29/slow-0.json b/tests/__snapshots__/ean13-1/29/slow-0.json index 7959fce1..f909db90 100644 --- a/tests/__snapshots__/ean13-1/29/slow-0.json +++ b/tests/__snapshots__/ean13-1/29/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8796004", "bytesECI": "760d281", "text": "4007817327098", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/29/slow-180.json b/tests/__snapshots__/ean13-1/29/slow-180.json index 729989bb..952d6a22 100644 --- a/tests/__snapshots__/ean13-1/29/slow-180.json +++ b/tests/__snapshots__/ean13-1/29/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8796004", "bytesECI": "760d281", "text": "4007817327098", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/3/fast-0.json b/tests/__snapshots__/ean13-1/3/fast-0.json index 5631e255..ae1e1688 100644 --- a/tests/__snapshots__/ean13-1/3/fast-0.json +++ b/tests/__snapshots__/ean13-1/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c4b6f9", "bytesECI": "d7a230d", "text": "8480000823274", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/3/fast-180.json b/tests/__snapshots__/ean13-1/3/fast-180.json index e4da8e9f..7e1973ba 100644 --- a/tests/__snapshots__/ean13-1/3/fast-180.json +++ b/tests/__snapshots__/ean13-1/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c4b6f9", "bytesECI": "d7a230d", "text": "8480000823274", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/3/slow-0.json b/tests/__snapshots__/ean13-1/3/slow-0.json index 28de5918..fdde0717 100644 --- a/tests/__snapshots__/ean13-1/3/slow-0.json +++ b/tests/__snapshots__/ean13-1/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c4b6f9", "bytesECI": "d7a230d", "text": "8480000823274", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/3/slow-180.json b/tests/__snapshots__/ean13-1/3/slow-180.json index bd5fe5b0..3a60dbc2 100644 --- a/tests/__snapshots__/ean13-1/3/slow-180.json +++ b/tests/__snapshots__/ean13-1/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c4b6f9", "bytesECI": "d7a230d", "text": "8480000823274", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/30/fast-0.json b/tests/__snapshots__/ean13-1/30/fast-0.json index 48c5210d..3bf0f305 100644 --- a/tests/__snapshots__/ean13-1/30/fast-0.json +++ b/tests/__snapshots__/ean13-1/30/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a8c034a", "bytesECI": "d9916de", "text": "5025121072311", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/30/fast-180.json b/tests/__snapshots__/ean13-1/30/fast-180.json index 66bd1d60..879139bf 100644 --- a/tests/__snapshots__/ean13-1/30/fast-180.json +++ b/tests/__snapshots__/ean13-1/30/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a8c034a", "bytesECI": "d9916de", "text": "5025121072311", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/30/slow-0.json b/tests/__snapshots__/ean13-1/30/slow-0.json index bce16dd9..1b0a0f56 100644 --- a/tests/__snapshots__/ean13-1/30/slow-0.json +++ b/tests/__snapshots__/ean13-1/30/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a8c034a", "bytesECI": "d9916de", "text": "5025121072311", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/30/slow-180.json b/tests/__snapshots__/ean13-1/30/slow-180.json index 4ccc04a6..be6c5e04 100644 --- a/tests/__snapshots__/ean13-1/30/slow-180.json +++ b/tests/__snapshots__/ean13-1/30/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a8c034a", "bytesECI": "d9916de", "text": "5025121072311", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/31/fast-0.json b/tests/__snapshots__/ean13-1/31/fast-0.json index 3cbe5161..0a8aff6b 100644 --- a/tests/__snapshots__/ean13-1/31/fast-0.json +++ b/tests/__snapshots__/ean13-1/31/fast-0.json @@ -5,7 +5,7 @@ "bytes": "de46fd5", "bytesECI": "a529175", "text": "9780393058673", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/31/fast-180.json b/tests/__snapshots__/ean13-1/31/fast-180.json index 271615f5..b14723c0 100644 --- a/tests/__snapshots__/ean13-1/31/fast-180.json +++ b/tests/__snapshots__/ean13-1/31/fast-180.json @@ -5,7 +5,7 @@ "bytes": "de46fd5", "bytesECI": "a529175", "text": "9780393058673", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/31/slow-0.json b/tests/__snapshots__/ean13-1/31/slow-0.json index 0b9dc42a..fd145a8a 100644 --- a/tests/__snapshots__/ean13-1/31/slow-0.json +++ b/tests/__snapshots__/ean13-1/31/slow-0.json @@ -5,7 +5,7 @@ "bytes": "de46fd5", "bytesECI": "a529175", "text": "9780393058673", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/31/slow-180.json b/tests/__snapshots__/ean13-1/31/slow-180.json index 15db2490..1a3ce535 100644 --- a/tests/__snapshots__/ean13-1/31/slow-180.json +++ b/tests/__snapshots__/ean13-1/31/slow-180.json @@ -5,7 +5,7 @@ "bytes": "de46fd5", "bytesECI": "a529175", "text": "9780393058673", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/35/slow-0.json b/tests/__snapshots__/ean13-1/35/slow-0.json index 65c23303..872622d9 100644 --- a/tests/__snapshots__/ean13-1/35/slow-0.json +++ b/tests/__snapshots__/ean13-1/35/slow-0.json @@ -5,7 +5,7 @@ "bytes": "546dfb6", "bytesECI": "20f2a91", "text": "5030159003930", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/35/slow-180.json b/tests/__snapshots__/ean13-1/35/slow-180.json index 10a0487d..f1f31f84 100644 --- a/tests/__snapshots__/ean13-1/35/slow-180.json +++ b/tests/__snapshots__/ean13-1/35/slow-180.json @@ -5,7 +5,7 @@ "bytes": "546dfb6", "bytesECI": "20f2a91", "text": "5030159003930", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/37/slow-0.json b/tests/__snapshots__/ean13-1/37/slow-0.json index 26556c85..613abc53 100644 --- a/tests/__snapshots__/ean13-1/37/slow-0.json +++ b/tests/__snapshots__/ean13-1/37/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7292784", "bytesECI": "73a5ae2", "text": "5000213002834", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/37/slow-180.json b/tests/__snapshots__/ean13-1/37/slow-180.json index 6637b5fe..f6a72a51 100644 --- a/tests/__snapshots__/ean13-1/37/slow-180.json +++ b/tests/__snapshots__/ean13-1/37/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7292784", "bytesECI": "73a5ae2", "text": "5000213002834", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/4/fast-0.json b/tests/__snapshots__/ean13-1/4/fast-0.json index 774fe3d7..56e3eaab 100644 --- a/tests/__snapshots__/ean13-1/4/fast-0.json +++ b/tests/__snapshots__/ean13-1/4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4405244", "bytesECI": "bc5246e", "text": "5449000039231", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/4/fast-180.json b/tests/__snapshots__/ean13-1/4/fast-180.json index 70c0cc3d..bc6b5569 100644 --- a/tests/__snapshots__/ean13-1/4/fast-180.json +++ b/tests/__snapshots__/ean13-1/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4405244", "bytesECI": "bc5246e", "text": "5449000039231", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/4/slow-0.json b/tests/__snapshots__/ean13-1/4/slow-0.json index 92311653..e93905e2 100644 --- a/tests/__snapshots__/ean13-1/4/slow-0.json +++ b/tests/__snapshots__/ean13-1/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4405244", "bytesECI": "bc5246e", "text": "5449000039231", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/4/slow-180.json b/tests/__snapshots__/ean13-1/4/slow-180.json index 889d54b2..7061fa09 100644 --- a/tests/__snapshots__/ean13-1/4/slow-180.json +++ b/tests/__snapshots__/ean13-1/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4405244", "bytesECI": "bc5246e", "text": "5449000039231", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/5/fast-0.json b/tests/__snapshots__/ean13-1/5/fast-0.json index 4b88d06a..0ca2ddb0 100644 --- a/tests/__snapshots__/ean13-1/5/fast-0.json +++ b/tests/__snapshots__/ean13-1/5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2ea67ec", "bytesECI": "9652598", "text": "8410054010412", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/5/fast-180.json b/tests/__snapshots__/ean13-1/5/fast-180.json index f43f8847..aa80b4f5 100644 --- a/tests/__snapshots__/ean13-1/5/fast-180.json +++ b/tests/__snapshots__/ean13-1/5/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2ea67ec", "bytesECI": "9652598", "text": "8410054010412", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/5/slow-0.json b/tests/__snapshots__/ean13-1/5/slow-0.json index 5c68fddf..b992fdfe 100644 --- a/tests/__snapshots__/ean13-1/5/slow-0.json +++ b/tests/__snapshots__/ean13-1/5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2ea67ec", "bytesECI": "9652598", "text": "8410054010412", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/5/slow-180.json b/tests/__snapshots__/ean13-1/5/slow-180.json index b5dd8648..6c039fed 100644 --- a/tests/__snapshots__/ean13-1/5/slow-180.json +++ b/tests/__snapshots__/ean13-1/5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2ea67ec", "bytesECI": "9652598", "text": "8410054010412", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/6/fast-0.json b/tests/__snapshots__/ean13-1/6/fast-0.json index f52c2188..d45e26e1 100644 --- a/tests/__snapshots__/ean13-1/6/fast-0.json +++ b/tests/__snapshots__/ean13-1/6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6fb7d74", "bytesECI": "39a41c6", "text": "8480010045062", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/6/fast-180.json b/tests/__snapshots__/ean13-1/6/fast-180.json index 22734493..7d9a5698 100644 --- a/tests/__snapshots__/ean13-1/6/fast-180.json +++ b/tests/__snapshots__/ean13-1/6/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6fb7d74", "bytesECI": "39a41c6", "text": "8480010045062", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/6/slow-0.json b/tests/__snapshots__/ean13-1/6/slow-0.json index b4190352..86a3fbe2 100644 --- a/tests/__snapshots__/ean13-1/6/slow-0.json +++ b/tests/__snapshots__/ean13-1/6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6fb7d74", "bytesECI": "39a41c6", "text": "8480010045062", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/6/slow-180.json b/tests/__snapshots__/ean13-1/6/slow-180.json index e4f2ca08..f1a5a44c 100644 --- a/tests/__snapshots__/ean13-1/6/slow-180.json +++ b/tests/__snapshots__/ean13-1/6/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6fb7d74", "bytesECI": "39a41c6", "text": "8480010045062", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/7/fast-0.json b/tests/__snapshots__/ean13-1/7/fast-0.json index 8787e29b..47fcfb4c 100644 --- a/tests/__snapshots__/ean13-1/7/fast-0.json +++ b/tests/__snapshots__/ean13-1/7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8086d9a", "bytesECI": "d725e3a", "text": "9788430532674", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/7/fast-180.json b/tests/__snapshots__/ean13-1/7/fast-180.json index d25f49c7..ff3fa8b0 100644 --- a/tests/__snapshots__/ean13-1/7/fast-180.json +++ b/tests/__snapshots__/ean13-1/7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8086d9a", "bytesECI": "d725e3a", "text": "9788430532674", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/7/slow-0.json b/tests/__snapshots__/ean13-1/7/slow-0.json index aca9482d..d983287f 100644 --- a/tests/__snapshots__/ean13-1/7/slow-0.json +++ b/tests/__snapshots__/ean13-1/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8086d9a", "bytesECI": "d725e3a", "text": "9788430532674", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/7/slow-180.json b/tests/__snapshots__/ean13-1/7/slow-180.json index aebf9848..0ec18da0 100644 --- a/tests/__snapshots__/ean13-1/7/slow-180.json +++ b/tests/__snapshots__/ean13-1/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8086d9a", "bytesECI": "d725e3a", "text": "9788430532674", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/8/fast-0.json b/tests/__snapshots__/ean13-1/8/fast-0.json index 5c14c93d..663fd492 100644 --- a/tests/__snapshots__/ean13-1/8/fast-0.json +++ b/tests/__snapshots__/ean13-1/8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "befe584", "bytesECI": "108629a", "text": "8480017507990", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/8/slow-0.json b/tests/__snapshots__/ean13-1/8/slow-0.json index 5c14c93d..663fd492 100644 --- a/tests/__snapshots__/ean13-1/8/slow-0.json +++ b/tests/__snapshots__/ean13-1/8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "befe584", "bytesECI": "108629a", "text": "8480017507990", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/8/slow-180.json b/tests/__snapshots__/ean13-1/8/slow-180.json index b4d88cd8..8458cbe4 100644 --- a/tests/__snapshots__/ean13-1/8/slow-180.json +++ b/tests/__snapshots__/ean13-1/8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "befe584", "bytesECI": "108629a", "text": "8480017507990", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/9/fast-0.json b/tests/__snapshots__/ean13-1/9/fast-0.json index 74ef6a79..6555b09d 100644 --- a/tests/__snapshots__/ean13-1/9/fast-0.json +++ b/tests/__snapshots__/ean13-1/9/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c568b9d", "bytesECI": "c0cc2ce", "text": "3166298099809", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/9/fast-180.json b/tests/__snapshots__/ean13-1/9/fast-180.json index fa536453..bc9b949f 100644 --- a/tests/__snapshots__/ean13-1/9/fast-180.json +++ b/tests/__snapshots__/ean13-1/9/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c568b9d", "bytesECI": "c0cc2ce", "text": "3166298099809", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/9/slow-0.json b/tests/__snapshots__/ean13-1/9/slow-0.json index b49320a8..96dd8737 100644 --- a/tests/__snapshots__/ean13-1/9/slow-0.json +++ b/tests/__snapshots__/ean13-1/9/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c568b9d", "bytesECI": "c0cc2ce", "text": "3166298099809", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-1/9/slow-180.json b/tests/__snapshots__/ean13-1/9/slow-180.json index 2f43b714..1368e2d5 100644 --- a/tests/__snapshots__/ean13-1/9/slow-180.json +++ b/tests/__snapshots__/ean13-1/9/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c568b9d", "bytesECI": "c0cc2ce", "text": "3166298099809", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/03/slow-0.json b/tests/__snapshots__/ean13-2/03/slow-0.json index 18e7a083..d0f3488b 100644 --- a/tests/__snapshots__/ean13-2/03/slow-0.json +++ b/tests/__snapshots__/ean13-2/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/03/slow-180.json b/tests/__snapshots__/ean13-2/03/slow-180.json index 7fc1fb39..33c45b7e 100644 --- a/tests/__snapshots__/ean13-2/03/slow-180.json +++ b/tests/__snapshots__/ean13-2/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/04/slow-0.json b/tests/__snapshots__/ean13-2/04/slow-0.json index 594f1ec2..fbede23f 100644 --- a/tests/__snapshots__/ean13-2/04/slow-0.json +++ b/tests/__snapshots__/ean13-2/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/04/slow-180.json b/tests/__snapshots__/ean13-2/04/slow-180.json index 1f75011e..643715a5 100644 --- a/tests/__snapshots__/ean13-2/04/slow-180.json +++ b/tests/__snapshots__/ean13-2/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/05/slow-0.json b/tests/__snapshots__/ean13-2/05/slow-0.json index 47462e61..d65c38ee 100644 --- a/tests/__snapshots__/ean13-2/05/slow-0.json +++ b/tests/__snapshots__/ean13-2/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/05/slow-180.json b/tests/__snapshots__/ean13-2/05/slow-180.json index 495a45c8..0b441cee 100644 --- a/tests/__snapshots__/ean13-2/05/slow-180.json +++ b/tests/__snapshots__/ean13-2/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/06/fast-0.json b/tests/__snapshots__/ean13-2/06/fast-0.json index e61d916e..c9abcc00 100644 --- a/tests/__snapshots__/ean13-2/06/fast-0.json +++ b/tests/__snapshots__/ean13-2/06/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/06/fast-180.json b/tests/__snapshots__/ean13-2/06/fast-180.json index 1b72431a..46966771 100644 --- a/tests/__snapshots__/ean13-2/06/fast-180.json +++ b/tests/__snapshots__/ean13-2/06/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/06/slow-0.json b/tests/__snapshots__/ean13-2/06/slow-0.json index c7ce6d00..cbe838a3 100644 --- a/tests/__snapshots__/ean13-2/06/slow-0.json +++ b/tests/__snapshots__/ean13-2/06/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/06/slow-180.json b/tests/__snapshots__/ean13-2/06/slow-180.json index dd38c5b0..f92104b2 100644 --- a/tests/__snapshots__/ean13-2/06/slow-180.json +++ b/tests/__snapshots__/ean13-2/06/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/07/fast-0.json b/tests/__snapshots__/ean13-2/07/fast-0.json index 846c60c1..f5367f20 100644 --- a/tests/__snapshots__/ean13-2/07/fast-0.json +++ b/tests/__snapshots__/ean13-2/07/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/07/fast-180.json b/tests/__snapshots__/ean13-2/07/fast-180.json index f80a819e..ea5e127a 100644 --- a/tests/__snapshots__/ean13-2/07/fast-180.json +++ b/tests/__snapshots__/ean13-2/07/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/07/slow-0.json b/tests/__snapshots__/ean13-2/07/slow-0.json index 17419f0b..75012019 100644 --- a/tests/__snapshots__/ean13-2/07/slow-0.json +++ b/tests/__snapshots__/ean13-2/07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/07/slow-180.json b/tests/__snapshots__/ean13-2/07/slow-180.json index 79ae5498..3ccc62c7 100644 --- a/tests/__snapshots__/ean13-2/07/slow-180.json +++ b/tests/__snapshots__/ean13-2/07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5e3f03c", "bytesECI": "44bc3ce", "text": "9780804816632", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/08/fast-0.json b/tests/__snapshots__/ean13-2/08/fast-0.json index b4ee4e4a..04dbeb62 100644 --- a/tests/__snapshots__/ean13-2/08/fast-0.json +++ b/tests/__snapshots__/ean13-2/08/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3bc85e2", "bytesECI": "dec3e35", "text": "9780345348036", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/08/fast-180.json b/tests/__snapshots__/ean13-2/08/fast-180.json index e4e954af..1f14c7a1 100644 --- a/tests/__snapshots__/ean13-2/08/fast-180.json +++ b/tests/__snapshots__/ean13-2/08/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3bc85e2", "bytesECI": "dec3e35", "text": "9780345348036", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/08/slow-0.json b/tests/__snapshots__/ean13-2/08/slow-0.json index b4ee4e4a..04dbeb62 100644 --- a/tests/__snapshots__/ean13-2/08/slow-0.json +++ b/tests/__snapshots__/ean13-2/08/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3bc85e2", "bytesECI": "dec3e35", "text": "9780345348036", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/08/slow-180.json b/tests/__snapshots__/ean13-2/08/slow-180.json index 02731985..56d2a2c4 100644 --- a/tests/__snapshots__/ean13-2/08/slow-180.json +++ b/tests/__snapshots__/ean13-2/08/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3bc85e2", "bytesECI": "dec3e35", "text": "9780345348036", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/09/slow-0.json b/tests/__snapshots__/ean13-2/09/slow-0.json index 1c384975..590873b4 100644 --- a/tests/__snapshots__/ean13-2/09/slow-0.json +++ b/tests/__snapshots__/ean13-2/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3bc85e2", "bytesECI": "dec3e35", "text": "9780345348036", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/09/slow-180.json b/tests/__snapshots__/ean13-2/09/slow-180.json index 1e61ca70..a110f230 100644 --- a/tests/__snapshots__/ean13-2/09/slow-180.json +++ b/tests/__snapshots__/ean13-2/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3bc85e2", "bytesECI": "dec3e35", "text": "9780345348036", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/13/fast-0.json b/tests/__snapshots__/ean13-2/13/fast-0.json index c402bd35..3edc4f4a 100644 --- a/tests/__snapshots__/ean13-2/13/fast-0.json +++ b/tests/__snapshots__/ean13-2/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/13/fast-180.json b/tests/__snapshots__/ean13-2/13/fast-180.json index 52fb9634..634c24f9 100644 --- a/tests/__snapshots__/ean13-2/13/fast-180.json +++ b/tests/__snapshots__/ean13-2/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/13/slow-0.json b/tests/__snapshots__/ean13-2/13/slow-0.json index fc7d5d83..8d98e0e4 100644 --- a/tests/__snapshots__/ean13-2/13/slow-0.json +++ b/tests/__snapshots__/ean13-2/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/13/slow-180.json b/tests/__snapshots__/ean13-2/13/slow-180.json index adf45d09..02fa4a8f 100644 --- a/tests/__snapshots__/ean13-2/13/slow-180.json +++ b/tests/__snapshots__/ean13-2/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/14/fast-0.json b/tests/__snapshots__/ean13-2/14/fast-0.json index 91dcd65f..85d3721e 100644 --- a/tests/__snapshots__/ean13-2/14/fast-0.json +++ b/tests/__snapshots__/ean13-2/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/14/fast-180.json b/tests/__snapshots__/ean13-2/14/fast-180.json index 855a718e..580b1425 100644 --- a/tests/__snapshots__/ean13-2/14/fast-180.json +++ b/tests/__snapshots__/ean13-2/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/14/slow-0.json b/tests/__snapshots__/ean13-2/14/slow-0.json index 6e7b0e3b..d3dffa3a 100644 --- a/tests/__snapshots__/ean13-2/14/slow-0.json +++ b/tests/__snapshots__/ean13-2/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/14/slow-180.json b/tests/__snapshots__/ean13-2/14/slow-180.json index e475859d..c99a3817 100644 --- a/tests/__snapshots__/ean13-2/14/slow-180.json +++ b/tests/__snapshots__/ean13-2/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/19/fast-0.json b/tests/__snapshots__/ean13-2/19/fast-0.json index 451ab497..b6abbd5f 100644 --- a/tests/__snapshots__/ean13-2/19/fast-0.json +++ b/tests/__snapshots__/ean13-2/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/19/fast-180.json b/tests/__snapshots__/ean13-2/19/fast-180.json index c8b37750..4fa5c34c 100644 --- a/tests/__snapshots__/ean13-2/19/fast-180.json +++ b/tests/__snapshots__/ean13-2/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/19/slow-0.json b/tests/__snapshots__/ean13-2/19/slow-0.json index 70a6ec91..944f0299 100644 --- a/tests/__snapshots__/ean13-2/19/slow-0.json +++ b/tests/__snapshots__/ean13-2/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/19/slow-180.json b/tests/__snapshots__/ean13-2/19/slow-180.json index e09f9665..94dea50d 100644 --- a/tests/__snapshots__/ean13-2/19/slow-180.json +++ b/tests/__snapshots__/ean13-2/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/23/slow-0.json b/tests/__snapshots__/ean13-2/23/slow-0.json index 2d9688c2..146f86b2 100644 --- a/tests/__snapshots__/ean13-2/23/slow-0.json +++ b/tests/__snapshots__/ean13-2/23/slow-0.json @@ -5,7 +5,7 @@ "bytes": "22939c3", "bytesECI": "c97c687", "text": "1920081045006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/23/slow-180.json b/tests/__snapshots__/ean13-2/23/slow-180.json index 6ac6a723..1dfff607 100644 --- a/tests/__snapshots__/ean13-2/23/slow-180.json +++ b/tests/__snapshots__/ean13-2/23/slow-180.json @@ -5,7 +5,7 @@ "bytes": "22939c3", "bytesECI": "c97c687", "text": "1920081045006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/27/fast-0.json b/tests/__snapshots__/ean13-2/27/fast-0.json index 32e93679..489b62f1 100644 --- a/tests/__snapshots__/ean13-2/27/fast-0.json +++ b/tests/__snapshots__/ean13-2/27/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/27/fast-180.json b/tests/__snapshots__/ean13-2/27/fast-180.json index aeb57978..1ab325d6 100644 --- a/tests/__snapshots__/ean13-2/27/fast-180.json +++ b/tests/__snapshots__/ean13-2/27/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/27/slow-0.json b/tests/__snapshots__/ean13-2/27/slow-0.json index 6b97be0f..fb88593e 100644 --- a/tests/__snapshots__/ean13-2/27/slow-0.json +++ b/tests/__snapshots__/ean13-2/27/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/27/slow-180.json b/tests/__snapshots__/ean13-2/27/slow-180.json index defc67d1..1c9f4e95 100644 --- a/tests/__snapshots__/ean13-2/27/slow-180.json +++ b/tests/__snapshots__/ean13-2/27/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43c5938", "bytesECI": "edd3e0c", "text": "9784872348880", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/28/slow-0.json b/tests/__snapshots__/ean13-2/28/slow-0.json index 8872857b..d980e67e 100644 --- a/tests/__snapshots__/ean13-2/28/slow-0.json +++ b/tests/__snapshots__/ean13-2/28/slow-0.json @@ -5,7 +5,7 @@ "bytes": "22939c3", "bytesECI": "c97c687", "text": "1920081045006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-2/28/slow-180.json b/tests/__snapshots__/ean13-2/28/slow-180.json index 58cbe188..3dd77f79 100644 --- a/tests/__snapshots__/ean13-2/28/slow-180.json +++ b/tests/__snapshots__/ean13-2/28/slow-180.json @@ -5,7 +5,7 @@ "bytes": "22939c3", "bytesECI": "c97c687", "text": "1920081045006", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/01/fast-0.json b/tests/__snapshots__/ean13-3/01/fast-0.json index 4cc22e1e..b708c416 100644 --- a/tests/__snapshots__/ean13-3/01/fast-0.json +++ b/tests/__snapshots__/ean13-3/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6cf7546", "bytesECI": "c1545ed", "text": "9780764544200", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/01/fast-180.json b/tests/__snapshots__/ean13-3/01/fast-180.json index ba693eb5..bc34d6d2 100644 --- a/tests/__snapshots__/ean13-3/01/fast-180.json +++ b/tests/__snapshots__/ean13-3/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6cf7546", "bytesECI": "c1545ed", "text": "9780764544200", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/01/slow-0.json b/tests/__snapshots__/ean13-3/01/slow-0.json index e6773f98..ab0a1e50 100644 --- a/tests/__snapshots__/ean13-3/01/slow-0.json +++ b/tests/__snapshots__/ean13-3/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6cf7546", "bytesECI": "c1545ed", "text": "9780764544200", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/01/slow-180.json b/tests/__snapshots__/ean13-3/01/slow-180.json index 86640bc2..3574271f 100644 --- a/tests/__snapshots__/ean13-3/01/slow-180.json +++ b/tests/__snapshots__/ean13-3/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6cf7546", "bytesECI": "c1545ed", "text": "9780764544200", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/02/fast-0.json b/tests/__snapshots__/ean13-3/02/fast-0.json index d044c92a..3b6f3272 100644 --- a/tests/__snapshots__/ean13-3/02/fast-0.json +++ b/tests/__snapshots__/ean13-3/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6cf7546", "bytesECI": "c1545ed", "text": "9780764544200", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/02/fast-180.json b/tests/__snapshots__/ean13-3/02/fast-180.json index f99502df..1e535dd7 100644 --- a/tests/__snapshots__/ean13-3/02/fast-180.json +++ b/tests/__snapshots__/ean13-3/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6cf7546", "bytesECI": "c1545ed", "text": "9780764544200", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/02/slow-0.json b/tests/__snapshots__/ean13-3/02/slow-0.json index 168bccde..0fc5caed 100644 --- a/tests/__snapshots__/ean13-3/02/slow-0.json +++ b/tests/__snapshots__/ean13-3/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6cf7546", "bytesECI": "c1545ed", "text": "9780764544200", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/02/slow-180.json b/tests/__snapshots__/ean13-3/02/slow-180.json index 53a5c33e..d22d0c53 100644 --- a/tests/__snapshots__/ean13-3/02/slow-180.json +++ b/tests/__snapshots__/ean13-3/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6cf7546", "bytesECI": "c1545ed", "text": "9780764544200", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/03/fast-0.json b/tests/__snapshots__/ean13-3/03/fast-0.json index c0df86d5..3be1b129 100644 --- a/tests/__snapshots__/ean13-3/03/fast-0.json +++ b/tests/__snapshots__/ean13-3/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6cf7546", "bytesECI": "c1545ed", "text": "9780764544200", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/03/fast-180.json b/tests/__snapshots__/ean13-3/03/fast-180.json index 0ddf2c06..bc178a16 100644 --- a/tests/__snapshots__/ean13-3/03/fast-180.json +++ b/tests/__snapshots__/ean13-3/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6cf7546", "bytesECI": "c1545ed", "text": "9780764544200", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/03/slow-0.json b/tests/__snapshots__/ean13-3/03/slow-0.json index 8c4024bf..f8315df0 100644 --- a/tests/__snapshots__/ean13-3/03/slow-0.json +++ b/tests/__snapshots__/ean13-3/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6cf7546", "bytesECI": "c1545ed", "text": "9780764544200", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/03/slow-180.json b/tests/__snapshots__/ean13-3/03/slow-180.json index 49cfe28e..38aa6527 100644 --- a/tests/__snapshots__/ean13-3/03/slow-180.json +++ b/tests/__snapshots__/ean13-3/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6cf7546", "bytesECI": "c1545ed", "text": "9780764544200", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/10/fast-0.json b/tests/__snapshots__/ean13-3/10/fast-0.json index f2e431e9..d0dcae78 100644 --- a/tests/__snapshots__/ean13-3/10/fast-0.json +++ b/tests/__snapshots__/ean13-3/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/10/fast-180.json b/tests/__snapshots__/ean13-3/10/fast-180.json index eb3142f1..bd5daf24 100644 --- a/tests/__snapshots__/ean13-3/10/fast-180.json +++ b/tests/__snapshots__/ean13-3/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/10/slow-0.json b/tests/__snapshots__/ean13-3/10/slow-0.json index 11705242..7f642598 100644 --- a/tests/__snapshots__/ean13-3/10/slow-0.json +++ b/tests/__snapshots__/ean13-3/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/10/slow-180.json b/tests/__snapshots__/ean13-3/10/slow-180.json index 7ac526e3..7efd43d5 100644 --- a/tests/__snapshots__/ean13-3/10/slow-180.json +++ b/tests/__snapshots__/ean13-3/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/12/fast-0.json b/tests/__snapshots__/ean13-3/12/fast-0.json index ae0211e6..960f76c1 100644 --- a/tests/__snapshots__/ean13-3/12/fast-0.json +++ b/tests/__snapshots__/ean13-3/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/12/fast-180.json b/tests/__snapshots__/ean13-3/12/fast-180.json index 52845f36..06a4fdf4 100644 --- a/tests/__snapshots__/ean13-3/12/fast-180.json +++ b/tests/__snapshots__/ean13-3/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/12/slow-0.json b/tests/__snapshots__/ean13-3/12/slow-0.json index cd4bbe3e..52d0391d 100644 --- a/tests/__snapshots__/ean13-3/12/slow-0.json +++ b/tests/__snapshots__/ean13-3/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/12/slow-180.json b/tests/__snapshots__/ean13-3/12/slow-180.json index 300c7d2f..eba0c838 100644 --- a/tests/__snapshots__/ean13-3/12/slow-180.json +++ b/tests/__snapshots__/ean13-3/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/14/fast-0.json b/tests/__snapshots__/ean13-3/14/fast-0.json index 1bdd0b9b..c8db121f 100644 --- a/tests/__snapshots__/ean13-3/14/fast-0.json +++ b/tests/__snapshots__/ean13-3/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/14/fast-180.json b/tests/__snapshots__/ean13-3/14/fast-180.json index 96120ef6..c54d15eb 100644 --- a/tests/__snapshots__/ean13-3/14/fast-180.json +++ b/tests/__snapshots__/ean13-3/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/14/slow-0.json b/tests/__snapshots__/ean13-3/14/slow-0.json index 7c6494d1..c4ed5010 100644 --- a/tests/__snapshots__/ean13-3/14/slow-0.json +++ b/tests/__snapshots__/ean13-3/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/14/slow-180.json b/tests/__snapshots__/ean13-3/14/slow-180.json index 8eed5689..a359ae8e 100644 --- a/tests/__snapshots__/ean13-3/14/slow-180.json +++ b/tests/__snapshots__/ean13-3/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/17/fast-0.json b/tests/__snapshots__/ean13-3/17/fast-0.json index edb37a60..08352795 100644 --- a/tests/__snapshots__/ean13-3/17/fast-0.json +++ b/tests/__snapshots__/ean13-3/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/17/fast-180.json b/tests/__snapshots__/ean13-3/17/fast-180.json index 72861219..13d1cf3c 100644 --- a/tests/__snapshots__/ean13-3/17/fast-180.json +++ b/tests/__snapshots__/ean13-3/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/17/slow-0.json b/tests/__snapshots__/ean13-3/17/slow-0.json index b0140613..89dfc930 100644 --- a/tests/__snapshots__/ean13-3/17/slow-0.json +++ b/tests/__snapshots__/ean13-3/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/17/slow-180.json b/tests/__snapshots__/ean13-3/17/slow-180.json index 64888ae0..e0c4797f 100644 --- a/tests/__snapshots__/ean13-3/17/slow-180.json +++ b/tests/__snapshots__/ean13-3/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a440469", "bytesECI": "c90e282", "text": "9780596008574", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/22/fast-0.json b/tests/__snapshots__/ean13-3/22/fast-0.json index 1178fe11..1fac69f2 100644 --- a/tests/__snapshots__/ean13-3/22/fast-0.json +++ b/tests/__snapshots__/ean13-3/22/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/22/fast-180.json b/tests/__snapshots__/ean13-3/22/fast-180.json index e15b6e10..94a43629 100644 --- a/tests/__snapshots__/ean13-3/22/fast-180.json +++ b/tests/__snapshots__/ean13-3/22/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/22/slow-0.json b/tests/__snapshots__/ean13-3/22/slow-0.json index ad908c83..5fad9aee 100644 --- a/tests/__snapshots__/ean13-3/22/slow-0.json +++ b/tests/__snapshots__/ean13-3/22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/22/slow-180.json b/tests/__snapshots__/ean13-3/22/slow-180.json index d316d188..0c66c870 100644 --- a/tests/__snapshots__/ean13-3/22/slow-180.json +++ b/tests/__snapshots__/ean13-3/22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/24/fast-0.json b/tests/__snapshots__/ean13-3/24/fast-0.json index 2bda770b..ba34d3b9 100644 --- a/tests/__snapshots__/ean13-3/24/fast-0.json +++ b/tests/__snapshots__/ean13-3/24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/24/fast-180.json b/tests/__snapshots__/ean13-3/24/fast-180.json index 0fcccd25..24994321 100644 --- a/tests/__snapshots__/ean13-3/24/fast-180.json +++ b/tests/__snapshots__/ean13-3/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/24/slow-0.json b/tests/__snapshots__/ean13-3/24/slow-0.json index 9f9aaa9a..bea3aae2 100644 --- a/tests/__snapshots__/ean13-3/24/slow-0.json +++ b/tests/__snapshots__/ean13-3/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/24/slow-180.json b/tests/__snapshots__/ean13-3/24/slow-180.json index 244c7151..b0ac4b55 100644 --- a/tests/__snapshots__/ean13-3/24/slow-180.json +++ b/tests/__snapshots__/ean13-3/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/26/fast-0.json b/tests/__snapshots__/ean13-3/26/fast-0.json index 01164967..9f3379ae 100644 --- a/tests/__snapshots__/ean13-3/26/fast-0.json +++ b/tests/__snapshots__/ean13-3/26/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/26/fast-180.json b/tests/__snapshots__/ean13-3/26/fast-180.json index 966c78c2..310891d4 100644 --- a/tests/__snapshots__/ean13-3/26/fast-180.json +++ b/tests/__snapshots__/ean13-3/26/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/26/slow-0.json b/tests/__snapshots__/ean13-3/26/slow-0.json index 91c05d7f..d02d41a7 100644 --- a/tests/__snapshots__/ean13-3/26/slow-0.json +++ b/tests/__snapshots__/ean13-3/26/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/26/slow-180.json b/tests/__snapshots__/ean13-3/26/slow-180.json index 95d6f99d..7dd4d17c 100644 --- a/tests/__snapshots__/ean13-3/26/slow-180.json +++ b/tests/__snapshots__/ean13-3/26/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/30/fast-180.json b/tests/__snapshots__/ean13-3/30/fast-180.json index e26bc2ec..6e7bfd92 100644 --- a/tests/__snapshots__/ean13-3/30/fast-180.json +++ b/tests/__snapshots__/ean13-3/30/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/30/slow-0.json b/tests/__snapshots__/ean13-3/30/slow-0.json index d2fa1592..b176b9e1 100644 --- a/tests/__snapshots__/ean13-3/30/slow-0.json +++ b/tests/__snapshots__/ean13-3/30/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/30/slow-180.json b/tests/__snapshots__/ean13-3/30/slow-180.json index e406843c..e95af5d3 100644 --- a/tests/__snapshots__/ean13-3/30/slow-180.json +++ b/tests/__snapshots__/ean13-3/30/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/34/fast-0.json b/tests/__snapshots__/ean13-3/34/fast-0.json index 0177a1ae..1910d13d 100644 --- a/tests/__snapshots__/ean13-3/34/fast-0.json +++ b/tests/__snapshots__/ean13-3/34/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/34/fast-180.json b/tests/__snapshots__/ean13-3/34/fast-180.json index defe8dc4..e53efa09 100644 --- a/tests/__snapshots__/ean13-3/34/fast-180.json +++ b/tests/__snapshots__/ean13-3/34/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/34/slow-0.json b/tests/__snapshots__/ean13-3/34/slow-0.json index 1f121c30..da35c0eb 100644 --- a/tests/__snapshots__/ean13-3/34/slow-0.json +++ b/tests/__snapshots__/ean13-3/34/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/34/slow-180.json b/tests/__snapshots__/ean13-3/34/slow-180.json index 4a2d2bfb..30801b04 100644 --- a/tests/__snapshots__/ean13-3/34/slow-180.json +++ b/tests/__snapshots__/ean13-3/34/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4823268", "bytesECI": "1d2d208", "text": "9780201310054", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/36/fast-0.json b/tests/__snapshots__/ean13-3/36/fast-0.json index 2daffad9..5e532882 100644 --- a/tests/__snapshots__/ean13-3/36/fast-0.json +++ b/tests/__snapshots__/ean13-3/36/fast-0.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/36/fast-180.json b/tests/__snapshots__/ean13-3/36/fast-180.json index 7dfd8333..cb179acc 100644 --- a/tests/__snapshots__/ean13-3/36/fast-180.json +++ b/tests/__snapshots__/ean13-3/36/fast-180.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/36/slow-0.json b/tests/__snapshots__/ean13-3/36/slow-0.json index 70517e7b..43f4649c 100644 --- a/tests/__snapshots__/ean13-3/36/slow-0.json +++ b/tests/__snapshots__/ean13-3/36/slow-0.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/36/slow-180.json b/tests/__snapshots__/ean13-3/36/slow-180.json index 340cb2e7..e8908115 100644 --- a/tests/__snapshots__/ean13-3/36/slow-180.json +++ b/tests/__snapshots__/ean13-3/36/slow-180.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/38/fast-0.json b/tests/__snapshots__/ean13-3/38/fast-0.json index 0e4d1a6b..60c3401e 100644 --- a/tests/__snapshots__/ean13-3/38/fast-0.json +++ b/tests/__snapshots__/ean13-3/38/fast-0.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/38/fast-180.json b/tests/__snapshots__/ean13-3/38/fast-180.json index 8c2750e2..2115e024 100644 --- a/tests/__snapshots__/ean13-3/38/fast-180.json +++ b/tests/__snapshots__/ean13-3/38/fast-180.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/38/slow-0.json b/tests/__snapshots__/ean13-3/38/slow-0.json index d0542b67..a70f30b5 100644 --- a/tests/__snapshots__/ean13-3/38/slow-0.json +++ b/tests/__snapshots__/ean13-3/38/slow-0.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/38/slow-180.json b/tests/__snapshots__/ean13-3/38/slow-180.json index 6e2e0fbc..b29a7fe2 100644 --- a/tests/__snapshots__/ean13-3/38/slow-180.json +++ b/tests/__snapshots__/ean13-3/38/slow-180.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/41/fast-0.json b/tests/__snapshots__/ean13-3/41/fast-0.json index e7246d00..80afa91e 100644 --- a/tests/__snapshots__/ean13-3/41/fast-0.json +++ b/tests/__snapshots__/ean13-3/41/fast-0.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/41/fast-180.json b/tests/__snapshots__/ean13-3/41/fast-180.json index e2c846d5..df8d4f69 100644 --- a/tests/__snapshots__/ean13-3/41/fast-180.json +++ b/tests/__snapshots__/ean13-3/41/fast-180.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/41/slow-0.json b/tests/__snapshots__/ean13-3/41/slow-0.json index e7246d00..80afa91e 100644 --- a/tests/__snapshots__/ean13-3/41/slow-0.json +++ b/tests/__snapshots__/ean13-3/41/slow-0.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/41/slow-180.json b/tests/__snapshots__/ean13-3/41/slow-180.json index c8b8b975..b1a18473 100644 --- a/tests/__snapshots__/ean13-3/41/slow-180.json +++ b/tests/__snapshots__/ean13-3/41/slow-180.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/43/fast-0.json b/tests/__snapshots__/ean13-3/43/fast-0.json index 4415b2fd..e7287d8e 100644 --- a/tests/__snapshots__/ean13-3/43/fast-0.json +++ b/tests/__snapshots__/ean13-3/43/fast-0.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/43/fast-180.json b/tests/__snapshots__/ean13-3/43/fast-180.json index 17fa38ae..884fa701 100644 --- a/tests/__snapshots__/ean13-3/43/fast-180.json +++ b/tests/__snapshots__/ean13-3/43/fast-180.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/43/slow-0.json b/tests/__snapshots__/ean13-3/43/slow-0.json index 4415b2fd..e7287d8e 100644 --- a/tests/__snapshots__/ean13-3/43/slow-0.json +++ b/tests/__snapshots__/ean13-3/43/slow-0.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/43/slow-180.json b/tests/__snapshots__/ean13-3/43/slow-180.json index 332a0916..cf8a9521 100644 --- a/tests/__snapshots__/ean13-3/43/slow-180.json +++ b/tests/__snapshots__/ean13-3/43/slow-180.json @@ -5,7 +5,7 @@ "bytes": "42cb9eb", "bytesECI": "3c24e64", "text": "9781585730575", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/44/fast-0.json b/tests/__snapshots__/ean13-3/44/fast-0.json index 12ec1404..836b7c39 100644 --- a/tests/__snapshots__/ean13-3/44/fast-0.json +++ b/tests/__snapshots__/ean13-3/44/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/44/fast-180.json b/tests/__snapshots__/ean13-3/44/fast-180.json index fcb8221b..48ce17fc 100644 --- a/tests/__snapshots__/ean13-3/44/fast-180.json +++ b/tests/__snapshots__/ean13-3/44/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/44/slow-0.json b/tests/__snapshots__/ean13-3/44/slow-0.json index 813185eb..896b3569 100644 --- a/tests/__snapshots__/ean13-3/44/slow-0.json +++ b/tests/__snapshots__/ean13-3/44/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/44/slow-180.json b/tests/__snapshots__/ean13-3/44/slow-180.json index e56aa990..e07177a6 100644 --- a/tests/__snapshots__/ean13-3/44/slow-180.json +++ b/tests/__snapshots__/ean13-3/44/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/45/fast-0.json b/tests/__snapshots__/ean13-3/45/fast-0.json index b9c3ef48..164d7565 100644 --- a/tests/__snapshots__/ean13-3/45/fast-0.json +++ b/tests/__snapshots__/ean13-3/45/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/45/fast-180.json b/tests/__snapshots__/ean13-3/45/fast-180.json index 4c2b5d51..55d6a6f6 100644 --- a/tests/__snapshots__/ean13-3/45/fast-180.json +++ b/tests/__snapshots__/ean13-3/45/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/45/slow-0.json b/tests/__snapshots__/ean13-3/45/slow-0.json index 1220fda2..cfa84ed8 100644 --- a/tests/__snapshots__/ean13-3/45/slow-0.json +++ b/tests/__snapshots__/ean13-3/45/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/45/slow-180.json b/tests/__snapshots__/ean13-3/45/slow-180.json index fd9cc939..b9a6f153 100644 --- a/tests/__snapshots__/ean13-3/45/slow-180.json +++ b/tests/__snapshots__/ean13-3/45/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/47/fast-0.json b/tests/__snapshots__/ean13-3/47/fast-0.json index c926d954..a6635c80 100644 --- a/tests/__snapshots__/ean13-3/47/fast-0.json +++ b/tests/__snapshots__/ean13-3/47/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/47/fast-180.json b/tests/__snapshots__/ean13-3/47/fast-180.json index 390dafeb..741c1552 100644 --- a/tests/__snapshots__/ean13-3/47/fast-180.json +++ b/tests/__snapshots__/ean13-3/47/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/47/slow-0.json b/tests/__snapshots__/ean13-3/47/slow-0.json index 637e688e..1a36c18b 100644 --- a/tests/__snapshots__/ean13-3/47/slow-0.json +++ b/tests/__snapshots__/ean13-3/47/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/47/slow-180.json b/tests/__snapshots__/ean13-3/47/slow-180.json index e7673b92..818cd1b0 100644 --- a/tests/__snapshots__/ean13-3/47/slow-180.json +++ b/tests/__snapshots__/ean13-3/47/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/52/fast-0.json b/tests/__snapshots__/ean13-3/52/fast-0.json index e5bace1b..74f49261 100644 --- a/tests/__snapshots__/ean13-3/52/fast-0.json +++ b/tests/__snapshots__/ean13-3/52/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/52/fast-180.json b/tests/__snapshots__/ean13-3/52/fast-180.json index cdc5e015..459d46a3 100644 --- a/tests/__snapshots__/ean13-3/52/fast-180.json +++ b/tests/__snapshots__/ean13-3/52/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/52/slow-0.json b/tests/__snapshots__/ean13-3/52/slow-0.json index fb4f5cd9..c8b2fe67 100644 --- a/tests/__snapshots__/ean13-3/52/slow-0.json +++ b/tests/__snapshots__/ean13-3/52/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/52/slow-180.json b/tests/__snapshots__/ean13-3/52/slow-180.json index 30f79dc0..115fb089 100644 --- a/tests/__snapshots__/ean13-3/52/slow-180.json +++ b/tests/__snapshots__/ean13-3/52/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/53/fast-0.json b/tests/__snapshots__/ean13-3/53/fast-0.json index 8264fecf..dc931e5b 100644 --- a/tests/__snapshots__/ean13-3/53/fast-0.json +++ b/tests/__snapshots__/ean13-3/53/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/53/fast-180.json b/tests/__snapshots__/ean13-3/53/fast-180.json index 10cf4b82..72f6a020 100644 --- a/tests/__snapshots__/ean13-3/53/fast-180.json +++ b/tests/__snapshots__/ean13-3/53/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/53/slow-0.json b/tests/__snapshots__/ean13-3/53/slow-0.json index 760c27a2..6eb7d8ae 100644 --- a/tests/__snapshots__/ean13-3/53/slow-0.json +++ b/tests/__snapshots__/ean13-3/53/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-3/53/slow-180.json b/tests/__snapshots__/ean13-3/53/slow-180.json index e96726a0..af05805b 100644 --- a/tests/__snapshots__/ean13-3/53/slow-180.json +++ b/tests/__snapshots__/ean13-3/53/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9659022", "bytesECI": "4404517", "text": "9780735619937", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/01/fast-0.json b/tests/__snapshots__/ean13-4/01/fast-0.json index 6407189a..ee5078df 100644 --- a/tests/__snapshots__/ean13-4/01/fast-0.json +++ b/tests/__snapshots__/ean13-4/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/01/fast-180.json b/tests/__snapshots__/ean13-4/01/fast-180.json index f6672625..e2f75a53 100644 --- a/tests/__snapshots__/ean13-4/01/fast-180.json +++ b/tests/__snapshots__/ean13-4/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/01/slow-0.json b/tests/__snapshots__/ean13-4/01/slow-0.json index 038b13b9..880ac9de 100644 --- a/tests/__snapshots__/ean13-4/01/slow-0.json +++ b/tests/__snapshots__/ean13-4/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/01/slow-180.json b/tests/__snapshots__/ean13-4/01/slow-180.json index 4fb6f548..d80e2285 100644 --- a/tests/__snapshots__/ean13-4/01/slow-180.json +++ b/tests/__snapshots__/ean13-4/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/02/fast-0.json b/tests/__snapshots__/ean13-4/02/fast-0.json index 933b70ff..5510c516 100644 --- a/tests/__snapshots__/ean13-4/02/fast-0.json +++ b/tests/__snapshots__/ean13-4/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/02/fast-180.json b/tests/__snapshots__/ean13-4/02/fast-180.json index 568c965a..cf1a7fce 100644 --- a/tests/__snapshots__/ean13-4/02/fast-180.json +++ b/tests/__snapshots__/ean13-4/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/02/slow-0.json b/tests/__snapshots__/ean13-4/02/slow-0.json index cd5399f6..a6a127d5 100644 --- a/tests/__snapshots__/ean13-4/02/slow-0.json +++ b/tests/__snapshots__/ean13-4/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/02/slow-180.json b/tests/__snapshots__/ean13-4/02/slow-180.json index 5de1f96f..2e6216bd 100644 --- a/tests/__snapshots__/ean13-4/02/slow-180.json +++ b/tests/__snapshots__/ean13-4/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/04/slow-0.json b/tests/__snapshots__/ean13-4/04/slow-0.json index fb6b7f1f..f1671ce0 100644 --- a/tests/__snapshots__/ean13-4/04/slow-0.json +++ b/tests/__snapshots__/ean13-4/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/04/slow-180.json b/tests/__snapshots__/ean13-4/04/slow-180.json index 651ef74a..22fb3893 100644 --- a/tests/__snapshots__/ean13-4/04/slow-180.json +++ b/tests/__snapshots__/ean13-4/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/05/slow-0.json b/tests/__snapshots__/ean13-4/05/slow-0.json index 85c2047e..5fb5abde 100644 --- a/tests/__snapshots__/ean13-4/05/slow-0.json +++ b/tests/__snapshots__/ean13-4/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/05/slow-180.json b/tests/__snapshots__/ean13-4/05/slow-180.json index ff9a8b78..f0fa4996 100644 --- a/tests/__snapshots__/ean13-4/05/slow-180.json +++ b/tests/__snapshots__/ean13-4/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/06/fast-0.json b/tests/__snapshots__/ean13-4/06/fast-0.json index 549724ab..44cc7793 100644 --- a/tests/__snapshots__/ean13-4/06/fast-0.json +++ b/tests/__snapshots__/ean13-4/06/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/06/fast-180.json b/tests/__snapshots__/ean13-4/06/fast-180.json index 4396e979..d1096afb 100644 --- a/tests/__snapshots__/ean13-4/06/fast-180.json +++ b/tests/__snapshots__/ean13-4/06/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/06/slow-0.json b/tests/__snapshots__/ean13-4/06/slow-0.json index 7f099755..6feff3e7 100644 --- a/tests/__snapshots__/ean13-4/06/slow-0.json +++ b/tests/__snapshots__/ean13-4/06/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/06/slow-180.json b/tests/__snapshots__/ean13-4/06/slow-180.json index e6e52c3c..e9fc5675 100644 --- a/tests/__snapshots__/ean13-4/06/slow-180.json +++ b/tests/__snapshots__/ean13-4/06/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/07/slow-0.json b/tests/__snapshots__/ean13-4/07/slow-0.json index fd54dc75..8f6d8bd4 100644 --- a/tests/__snapshots__/ean13-4/07/slow-0.json +++ b/tests/__snapshots__/ean13-4/07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/07/slow-180.json b/tests/__snapshots__/ean13-4/07/slow-180.json index ede21891..6b84d676 100644 --- a/tests/__snapshots__/ean13-4/07/slow-180.json +++ b/tests/__snapshots__/ean13-4/07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/09/slow-0.json b/tests/__snapshots__/ean13-4/09/slow-0.json index ed93a273..201645f2 100644 --- a/tests/__snapshots__/ean13-4/09/slow-0.json +++ b/tests/__snapshots__/ean13-4/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/09/slow-180.json b/tests/__snapshots__/ean13-4/09/slow-180.json index 25991170..b11e9c16 100644 --- a/tests/__snapshots__/ean13-4/09/slow-180.json +++ b/tests/__snapshots__/ean13-4/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/11/fast-180.json b/tests/__snapshots__/ean13-4/11/fast-180.json index ecbd460f..fd595577 100644 --- a/tests/__snapshots__/ean13-4/11/fast-180.json +++ b/tests/__snapshots__/ean13-4/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/11/slow-0.json b/tests/__snapshots__/ean13-4/11/slow-0.json index e3fdf4cd..a6f3a672 100644 --- a/tests/__snapshots__/ean13-4/11/slow-0.json +++ b/tests/__snapshots__/ean13-4/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/11/slow-180.json b/tests/__snapshots__/ean13-4/11/slow-180.json index 3dea4527..1b401fb1 100644 --- a/tests/__snapshots__/ean13-4/11/slow-180.json +++ b/tests/__snapshots__/ean13-4/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/13/fast-0.json b/tests/__snapshots__/ean13-4/13/fast-0.json index d08d647b..c166e687 100644 --- a/tests/__snapshots__/ean13-4/13/fast-0.json +++ b/tests/__snapshots__/ean13-4/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/13/fast-180.json b/tests/__snapshots__/ean13-4/13/fast-180.json index 2a860cc5..8b04f1dc 100644 --- a/tests/__snapshots__/ean13-4/13/fast-180.json +++ b/tests/__snapshots__/ean13-4/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/13/slow-0.json b/tests/__snapshots__/ean13-4/13/slow-0.json index 6eb97745..f6326088 100644 --- a/tests/__snapshots__/ean13-4/13/slow-0.json +++ b/tests/__snapshots__/ean13-4/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/13/slow-180.json b/tests/__snapshots__/ean13-4/13/slow-180.json index db2620d6..9e61c42d 100644 --- a/tests/__snapshots__/ean13-4/13/slow-180.json +++ b/tests/__snapshots__/ean13-4/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/14/slow-0.json b/tests/__snapshots__/ean13-4/14/slow-0.json index 29ed6dec..8d6af659 100644 --- a/tests/__snapshots__/ean13-4/14/slow-0.json +++ b/tests/__snapshots__/ean13-4/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/14/slow-180.json b/tests/__snapshots__/ean13-4/14/slow-180.json index bddd75e3..95d927cb 100644 --- a/tests/__snapshots__/ean13-4/14/slow-180.json +++ b/tests/__snapshots__/ean13-4/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/15/fast-0.json b/tests/__snapshots__/ean13-4/15/fast-0.json index d05f4640..023ab256 100644 --- a/tests/__snapshots__/ean13-4/15/fast-0.json +++ b/tests/__snapshots__/ean13-4/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/15/fast-180.json b/tests/__snapshots__/ean13-4/15/fast-180.json index 48fbcf29..7be381eb 100644 --- a/tests/__snapshots__/ean13-4/15/fast-180.json +++ b/tests/__snapshots__/ean13-4/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/15/slow-0.json b/tests/__snapshots__/ean13-4/15/slow-0.json index a21243bc..a718184d 100644 --- a/tests/__snapshots__/ean13-4/15/slow-0.json +++ b/tests/__snapshots__/ean13-4/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/15/slow-180.json b/tests/__snapshots__/ean13-4/15/slow-180.json index a4ad5591..c5eda557 100644 --- a/tests/__snapshots__/ean13-4/15/slow-180.json +++ b/tests/__snapshots__/ean13-4/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/18/slow-0.json b/tests/__snapshots__/ean13-4/18/slow-0.json index 0f6918d7..07f12fb4 100644 --- a/tests/__snapshots__/ean13-4/18/slow-0.json +++ b/tests/__snapshots__/ean13-4/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/18/slow-180.json b/tests/__snapshots__/ean13-4/18/slow-180.json index 83e38831..bc521fed 100644 --- a/tests/__snapshots__/ean13-4/18/slow-180.json +++ b/tests/__snapshots__/ean13-4/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/20/fast-0.json b/tests/__snapshots__/ean13-4/20/fast-0.json index a2ce7a0d..4111a531 100644 --- a/tests/__snapshots__/ean13-4/20/fast-0.json +++ b/tests/__snapshots__/ean13-4/20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/20/fast-180.json b/tests/__snapshots__/ean13-4/20/fast-180.json index 86a8ed3a..8bbeba30 100644 --- a/tests/__snapshots__/ean13-4/20/fast-180.json +++ b/tests/__snapshots__/ean13-4/20/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/20/slow-0.json b/tests/__snapshots__/ean13-4/20/slow-0.json index b2d727e1..ac80ad3c 100644 --- a/tests/__snapshots__/ean13-4/20/slow-0.json +++ b/tests/__snapshots__/ean13-4/20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-4/20/slow-180.json b/tests/__snapshots__/ean13-4/20/slow-180.json index 32e19bd6..194e8ff9 100644 --- a/tests/__snapshots__/ean13-4/20/slow-180.json +++ b/tests/__snapshots__/ean13-4/20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4e1ed42", "bytesECI": "70dcb8c", "text": "9780441014989", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/1/fast-0.json b/tests/__snapshots__/ean13-extension-1/1/fast-0.json index 4474b213..fec66574 100644 --- a/tests/__snapshots__/ean13-extension-1/1/fast-0.json +++ b/tests/__snapshots__/ean13-extension-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5adba23", "bytesECI": "2dcdd22", "text": "9780735200449 51299", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/1/fast-180.json b/tests/__snapshots__/ean13-extension-1/1/fast-180.json index 7ef86a58..f7f71f05 100644 --- a/tests/__snapshots__/ean13-extension-1/1/fast-180.json +++ b/tests/__snapshots__/ean13-extension-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5adba23", "bytesECI": "2dcdd22", "text": "9780735200449 51299", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/1/slow-0.json b/tests/__snapshots__/ean13-extension-1/1/slow-0.json index 91de8b18..0ded5687 100644 --- a/tests/__snapshots__/ean13-extension-1/1/slow-0.json +++ b/tests/__snapshots__/ean13-extension-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5adba23", "bytesECI": "2dcdd22", "text": "9780735200449 51299", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/1/slow-180.json b/tests/__snapshots__/ean13-extension-1/1/slow-180.json index 4212521c..39aa920e 100644 --- a/tests/__snapshots__/ean13-extension-1/1/slow-180.json +++ b/tests/__snapshots__/ean13-extension-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5adba23", "bytesECI": "2dcdd22", "text": "9780735200449 51299", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/2/slow-0.json b/tests/__snapshots__/ean13-extension-1/2/slow-0.json index c13e057a..d4ab44d9 100644 --- a/tests/__snapshots__/ean13-extension-1/2/slow-0.json +++ b/tests/__snapshots__/ean13-extension-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6ee0a7c", "bytesECI": "c182220", "text": "9780884271789 52495", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/2/slow-180.json b/tests/__snapshots__/ean13-extension-1/2/slow-180.json index 71c932b2..a33848de 100644 --- a/tests/__snapshots__/ean13-extension-1/2/slow-180.json +++ b/tests/__snapshots__/ean13-extension-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6ee0a7c", "bytesECI": "c182220", "text": "9780884271789 52495", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/32/fast-0.json b/tests/__snapshots__/ean13-extension-1/32/fast-0.json index 6d029936..1ae1ad10 100644 --- a/tests/__snapshots__/ean13-extension-1/32/fast-0.json +++ b/tests/__snapshots__/ean13-extension-1/32/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1e41ca6", "bytesECI": "773c405", "text": "9780393058673 52595", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/32/fast-180.json b/tests/__snapshots__/ean13-extension-1/32/fast-180.json index f9ddb6c3..4d0ad6ce 100644 --- a/tests/__snapshots__/ean13-extension-1/32/fast-180.json +++ b/tests/__snapshots__/ean13-extension-1/32/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1e41ca6", "bytesECI": "773c405", "text": "9780393058673 52595", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/32/slow-0.json b/tests/__snapshots__/ean13-extension-1/32/slow-0.json index 4ae4427d..0dffbfd0 100644 --- a/tests/__snapshots__/ean13-extension-1/32/slow-0.json +++ b/tests/__snapshots__/ean13-extension-1/32/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1e41ca6", "bytesECI": "773c405", "text": "9780393058673 52595", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/32/slow-180.json b/tests/__snapshots__/ean13-extension-1/32/slow-180.json index c81c2108..77760755 100644 --- a/tests/__snapshots__/ean13-extension-1/32/slow-180.json +++ b/tests/__snapshots__/ean13-extension-1/32/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1e41ca6", "bytesECI": "773c405", "text": "9780393058673 52595", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/33/fast-0.json b/tests/__snapshots__/ean13-extension-1/33/fast-0.json index db101e0c..a7063f42 100644 --- a/tests/__snapshots__/ean13-extension-1/33/fast-0.json +++ b/tests/__snapshots__/ean13-extension-1/33/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d198d9b", "bytesECI": "2cb33e7", "text": "9781558604971 90000", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/33/fast-180.json b/tests/__snapshots__/ean13-extension-1/33/fast-180.json index 43f504cb..c92ab376 100644 --- a/tests/__snapshots__/ean13-extension-1/33/fast-180.json +++ b/tests/__snapshots__/ean13-extension-1/33/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d198d9b", "bytesECI": "2cb33e7", "text": "9781558604971 90000", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/33/slow-0.json b/tests/__snapshots__/ean13-extension-1/33/slow-0.json index e302210d..b52b8c38 100644 --- a/tests/__snapshots__/ean13-extension-1/33/slow-0.json +++ b/tests/__snapshots__/ean13-extension-1/33/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d198d9b", "bytesECI": "2cb33e7", "text": "9781558604971 90000", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/33/slow-180.json b/tests/__snapshots__/ean13-extension-1/33/slow-180.json index 9b1bc610..eca924c6 100644 --- a/tests/__snapshots__/ean13-extension-1/33/slow-180.json +++ b/tests/__snapshots__/ean13-extension-1/33/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d198d9b", "bytesECI": "2cb33e7", "text": "9781558604971 90000", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/38/slow-0.json b/tests/__snapshots__/ean13-extension-1/38/slow-0.json index 9e2d0dc7..5bb267da 100644 --- a/tests/__snapshots__/ean13-extension-1/38/slow-0.json +++ b/tests/__snapshots__/ean13-extension-1/38/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b5c0f66", "bytesECI": "c54951c", "text": "9780201752847 55999", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean13-extension-1/38/slow-180.json b/tests/__snapshots__/ean13-extension-1/38/slow-180.json index e1be416a..f86a8f92 100644 --- a/tests/__snapshots__/ean13-extension-1/38/slow-180.json +++ b/tests/__snapshots__/ean13-extension-1/38/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b5c0f66", "bytesECI": "c54951c", "text": "9780201752847 55999", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/1/fast-0.json b/tests/__snapshots__/ean8-1/1/fast-0.json index 616f446c..eacd8eec 100644 --- a/tests/__snapshots__/ean8-1/1/fast-0.json +++ b/tests/__snapshots__/ean8-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ad1824d", "bytesECI": "34df8d7", "text": "48512343", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/1/fast-180.json b/tests/__snapshots__/ean8-1/1/fast-180.json index 6b7ea992..891d3220 100644 --- a/tests/__snapshots__/ean8-1/1/fast-180.json +++ b/tests/__snapshots__/ean8-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ad1824d", "bytesECI": "34df8d7", "text": "48512343", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/1/pure-0.json b/tests/__snapshots__/ean8-1/1/pure-0.json index f54d45ea..cdee49cd 100644 --- a/tests/__snapshots__/ean8-1/1/pure-0.json +++ b/tests/__snapshots__/ean8-1/1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ad1824d", "bytesECI": "34df8d7", "text": "48512343", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/1/slow-0.json b/tests/__snapshots__/ean8-1/1/slow-0.json index 85a29243..8b3aa2ad 100644 --- a/tests/__snapshots__/ean8-1/1/slow-0.json +++ b/tests/__snapshots__/ean8-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad1824d", "bytesECI": "34df8d7", "text": "48512343", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/1/slow-180.json b/tests/__snapshots__/ean8-1/1/slow-180.json index 98117ed8..191e864f 100644 --- a/tests/__snapshots__/ean8-1/1/slow-180.json +++ b/tests/__snapshots__/ean8-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad1824d", "bytesECI": "34df8d7", "text": "48512343", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/2/fast-0.json b/tests/__snapshots__/ean8-1/2/fast-0.json index 330bbf2d..2322fd05 100644 --- a/tests/__snapshots__/ean8-1/2/fast-0.json +++ b/tests/__snapshots__/ean8-1/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/2/fast-180.json b/tests/__snapshots__/ean8-1/2/fast-180.json index 1ead5a0d..f3768587 100644 --- a/tests/__snapshots__/ean8-1/2/fast-180.json +++ b/tests/__snapshots__/ean8-1/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/2/pure-0.json b/tests/__snapshots__/ean8-1/2/pure-0.json index 7450a84b..8a45d812 100644 --- a/tests/__snapshots__/ean8-1/2/pure-0.json +++ b/tests/__snapshots__/ean8-1/2/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/2/slow-0.json b/tests/__snapshots__/ean8-1/2/slow-0.json index 06fc38b4..a1fcdba4 100644 --- a/tests/__snapshots__/ean8-1/2/slow-0.json +++ b/tests/__snapshots__/ean8-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/2/slow-180.json b/tests/__snapshots__/ean8-1/2/slow-180.json index 489fa1ac..bc92e473 100644 --- a/tests/__snapshots__/ean8-1/2/slow-180.json +++ b/tests/__snapshots__/ean8-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/3/fast-0.json b/tests/__snapshots__/ean8-1/3/fast-0.json index e53d64c1..6f4c54a3 100644 --- a/tests/__snapshots__/ean8-1/3/fast-0.json +++ b/tests/__snapshots__/ean8-1/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/3/fast-180.json b/tests/__snapshots__/ean8-1/3/fast-180.json index 277dbcc7..82b03ff0 100644 --- a/tests/__snapshots__/ean8-1/3/fast-180.json +++ b/tests/__snapshots__/ean8-1/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/3/pure-0.json b/tests/__snapshots__/ean8-1/3/pure-0.json index e37cc0b3..70e0c655 100644 --- a/tests/__snapshots__/ean8-1/3/pure-0.json +++ b/tests/__snapshots__/ean8-1/3/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/3/slow-0.json b/tests/__snapshots__/ean8-1/3/slow-0.json index 2aa8102c..365ba3d8 100644 --- a/tests/__snapshots__/ean8-1/3/slow-0.json +++ b/tests/__snapshots__/ean8-1/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/3/slow-180.json b/tests/__snapshots__/ean8-1/3/slow-180.json index 5cdc036a..2de64322 100644 --- a/tests/__snapshots__/ean8-1/3/slow-180.json +++ b/tests/__snapshots__/ean8-1/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/4/fast-0.json b/tests/__snapshots__/ean8-1/4/fast-0.json index d13237b9..6d7993a5 100644 --- a/tests/__snapshots__/ean8-1/4/fast-0.json +++ b/tests/__snapshots__/ean8-1/4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6a9f865", "bytesECI": "6a55eb9", "text": "67678983", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/4/fast-180.json b/tests/__snapshots__/ean8-1/4/fast-180.json index 62b9372d..78a74f6d 100644 --- a/tests/__snapshots__/ean8-1/4/fast-180.json +++ b/tests/__snapshots__/ean8-1/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6a9f865", "bytesECI": "6a55eb9", "text": "67678983", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/4/pure-0.json b/tests/__snapshots__/ean8-1/4/pure-0.json index c32bb1f3..a8fb0f6b 100644 --- a/tests/__snapshots__/ean8-1/4/pure-0.json +++ b/tests/__snapshots__/ean8-1/4/pure-0.json @@ -5,7 +5,7 @@ "bytes": "6a9f865", "bytesECI": "6a55eb9", "text": "67678983", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/4/slow-0.json b/tests/__snapshots__/ean8-1/4/slow-0.json index c1069fe5..ae44c354 100644 --- a/tests/__snapshots__/ean8-1/4/slow-0.json +++ b/tests/__snapshots__/ean8-1/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6a9f865", "bytesECI": "6a55eb9", "text": "67678983", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/4/slow-180.json b/tests/__snapshots__/ean8-1/4/slow-180.json index cd55c02c..82c012f7 100644 --- a/tests/__snapshots__/ean8-1/4/slow-180.json +++ b/tests/__snapshots__/ean8-1/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6a9f865", "bytesECI": "6a55eb9", "text": "67678983", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/5/fast-0.json b/tests/__snapshots__/ean8-1/5/fast-0.json index 19d63957..6a30e55c 100644 --- a/tests/__snapshots__/ean8-1/5/fast-0.json +++ b/tests/__snapshots__/ean8-1/5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b8d02f6", "bytesECI": "4fe6ead", "text": "80674313", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/5/fast-180.json b/tests/__snapshots__/ean8-1/5/fast-180.json index 2745f113..686f2624 100644 --- a/tests/__snapshots__/ean8-1/5/fast-180.json +++ b/tests/__snapshots__/ean8-1/5/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b8d02f6", "bytesECI": "4fe6ead", "text": "80674313", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/5/pure-0.json b/tests/__snapshots__/ean8-1/5/pure-0.json index 1e8354b6..9a632f96 100644 --- a/tests/__snapshots__/ean8-1/5/pure-0.json +++ b/tests/__snapshots__/ean8-1/5/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b8d02f6", "bytesECI": "4fe6ead", "text": "80674313", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/5/slow-0.json b/tests/__snapshots__/ean8-1/5/slow-0.json index 18c35256..7645f7c1 100644 --- a/tests/__snapshots__/ean8-1/5/slow-0.json +++ b/tests/__snapshots__/ean8-1/5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b8d02f6", "bytesECI": "4fe6ead", "text": "80674313", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/5/slow-180.json b/tests/__snapshots__/ean8-1/5/slow-180.json index 518be3d4..50e27c6a 100644 --- a/tests/__snapshots__/ean8-1/5/slow-180.json +++ b/tests/__snapshots__/ean8-1/5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b8d02f6", "bytesECI": "4fe6ead", "text": "80674313", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/6/fast-0.json b/tests/__snapshots__/ean8-1/6/fast-0.json index e4c49de3..b76af1bd 100644 --- a/tests/__snapshots__/ean8-1/6/fast-0.json +++ b/tests/__snapshots__/ean8-1/6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2bc04cf", "bytesECI": "15dcbe1", "text": "59001270", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/6/fast-180.json b/tests/__snapshots__/ean8-1/6/fast-180.json index cfb1b128..3919c9ff 100644 --- a/tests/__snapshots__/ean8-1/6/fast-180.json +++ b/tests/__snapshots__/ean8-1/6/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2bc04cf", "bytesECI": "15dcbe1", "text": "59001270", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/6/pure-0.json b/tests/__snapshots__/ean8-1/6/pure-0.json index 45daa513..8b491b37 100644 --- a/tests/__snapshots__/ean8-1/6/pure-0.json +++ b/tests/__snapshots__/ean8-1/6/pure-0.json @@ -5,7 +5,7 @@ "bytes": "2bc04cf", "bytesECI": "15dcbe1", "text": "59001270", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/6/slow-0.json b/tests/__snapshots__/ean8-1/6/slow-0.json index 5b56c210..c7711e8e 100644 --- a/tests/__snapshots__/ean8-1/6/slow-0.json +++ b/tests/__snapshots__/ean8-1/6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2bc04cf", "bytesECI": "15dcbe1", "text": "59001270", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/6/slow-180.json b/tests/__snapshots__/ean8-1/6/slow-180.json index 8e4d57c7..d3d03e2a 100644 --- a/tests/__snapshots__/ean8-1/6/slow-180.json +++ b/tests/__snapshots__/ean8-1/6/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2bc04cf", "bytesECI": "15dcbe1", "text": "59001270", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/7/fast-0.json b/tests/__snapshots__/ean8-1/7/fast-0.json index 1b39921c..938b334c 100644 --- a/tests/__snapshots__/ean8-1/7/fast-0.json +++ b/tests/__snapshots__/ean8-1/7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "caba8e7", "bytesECI": "2fe54bc", "text": "50487066", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/7/fast-180.json b/tests/__snapshots__/ean8-1/7/fast-180.json index 7e48197b..f0d2f22e 100644 --- a/tests/__snapshots__/ean8-1/7/fast-180.json +++ b/tests/__snapshots__/ean8-1/7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "caba8e7", "bytesECI": "2fe54bc", "text": "50487066", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/7/pure-0.json b/tests/__snapshots__/ean8-1/7/pure-0.json index 860c6a8b..a0290c6c 100644 --- a/tests/__snapshots__/ean8-1/7/pure-0.json +++ b/tests/__snapshots__/ean8-1/7/pure-0.json @@ -5,7 +5,7 @@ "bytes": "caba8e7", "bytesECI": "2fe54bc", "text": "50487066", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/7/slow-0.json b/tests/__snapshots__/ean8-1/7/slow-0.json index 024e2c5d..6dc293cc 100644 --- a/tests/__snapshots__/ean8-1/7/slow-0.json +++ b/tests/__snapshots__/ean8-1/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "caba8e7", "bytesECI": "2fe54bc", "text": "50487066", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/7/slow-180.json b/tests/__snapshots__/ean8-1/7/slow-180.json index 88198118..ad992d5d 100644 --- a/tests/__snapshots__/ean8-1/7/slow-180.json +++ b/tests/__snapshots__/ean8-1/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "caba8e7", "bytesECI": "2fe54bc", "text": "50487066", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/8/fast-0.json b/tests/__snapshots__/ean8-1/8/fast-0.json index 3ea22fd8..98f64850 100644 --- a/tests/__snapshots__/ean8-1/8/fast-0.json +++ b/tests/__snapshots__/ean8-1/8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "99c498e", "bytesECI": "13ed060", "text": "55123457", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/8/fast-180.json b/tests/__snapshots__/ean8-1/8/fast-180.json index ed0cf50a..d6a085c2 100644 --- a/tests/__snapshots__/ean8-1/8/fast-180.json +++ b/tests/__snapshots__/ean8-1/8/fast-180.json @@ -5,7 +5,7 @@ "bytes": "99c498e", "bytesECI": "13ed060", "text": "55123457", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/8/pure-0.json b/tests/__snapshots__/ean8-1/8/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/ean8-1/8/pure-0.json +++ b/tests/__snapshots__/ean8-1/8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/8/slow-0.json b/tests/__snapshots__/ean8-1/8/slow-0.json index 34541491..cd382ba4 100644 --- a/tests/__snapshots__/ean8-1/8/slow-0.json +++ b/tests/__snapshots__/ean8-1/8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "99c498e", "bytesECI": "13ed060", "text": "55123457", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/8/slow-180.json b/tests/__snapshots__/ean8-1/8/slow-180.json index 16057041..99ecd58a 100644 --- a/tests/__snapshots__/ean8-1/8/slow-180.json +++ b/tests/__snapshots__/ean8-1/8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "99c498e", "bytesECI": "13ed060", "text": "55123457", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/single-line/fast-0.json b/tests/__snapshots__/ean8-1/single-line/fast-0.json index 01e13f6b..a6813bf7 100644 --- a/tests/__snapshots__/ean8-1/single-line/fast-0.json +++ b/tests/__snapshots__/ean8-1/single-line/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/single-line/fast-180.json b/tests/__snapshots__/ean8-1/single-line/fast-180.json index fa8183a6..3f802cec 100644 --- a/tests/__snapshots__/ean8-1/single-line/fast-180.json +++ b/tests/__snapshots__/ean8-1/single-line/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/single-line/pure-0.json b/tests/__snapshots__/ean8-1/single-line/pure-0.json index 01e13f6b..a6813bf7 100644 --- a/tests/__snapshots__/ean8-1/single-line/pure-0.json +++ b/tests/__snapshots__/ean8-1/single-line/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/single-line/slow-0.json b/tests/__snapshots__/ean8-1/single-line/slow-0.json index 01e13f6b..a6813bf7 100644 --- a/tests/__snapshots__/ean8-1/single-line/slow-0.json +++ b/tests/__snapshots__/ean8-1/single-line/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/ean8-1/single-line/slow-180.json b/tests/__snapshots__/ean8-1/single-line/slow-180.json index fa8183a6..3f802cec 100644 --- a/tests/__snapshots__/ean8-1/single-line/slow-180.json +++ b/tests/__snapshots__/ean8-1/single-line/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8f1fb53", "bytesECI": "2cce875", "text": "12345670", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/#245/pure-0.json b/tests/__snapshots__/falsepositives-1/#245/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/#245/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/#245/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/#570/pure-0.json b/tests/__snapshots__/falsepositives-1/#570/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/#570/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/#570/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/01/pure-0.json b/tests/__snapshots__/falsepositives-1/01/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/01/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/01/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/02/pure-0.json b/tests/__snapshots__/falsepositives-1/02/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/02/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/02/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/03/pure-0.json b/tests/__snapshots__/falsepositives-1/03/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/03/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/03/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/04/pure-0.json b/tests/__snapshots__/falsepositives-1/04/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/04/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/04/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/05/pure-0.json b/tests/__snapshots__/falsepositives-1/05/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/05/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/05/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/06/pure-0.json b/tests/__snapshots__/falsepositives-1/06/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/06/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/06/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/07/pure-0.json b/tests/__snapshots__/falsepositives-1/07/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/07/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/07/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/08/pure-0.json b/tests/__snapshots__/falsepositives-1/08/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/08/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/08/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/09/pure-0.json b/tests/__snapshots__/falsepositives-1/09/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/09/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/09/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/10/pure-0.json b/tests/__snapshots__/falsepositives-1/10/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/10/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/10/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/11/pure-0.json b/tests/__snapshots__/falsepositives-1/11/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/11/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/11/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/12/pure-0.json b/tests/__snapshots__/falsepositives-1/12/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/12/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/13/pure-0.json b/tests/__snapshots__/falsepositives-1/13/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/13/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/13/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/14/pure-0.json b/tests/__snapshots__/falsepositives-1/14/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/14/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/14/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/15/pure-0.json b/tests/__snapshots__/falsepositives-1/15/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/15/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/15/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/16/pure-0.json b/tests/__snapshots__/falsepositives-1/16/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/16/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/16/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/17/pure-0.json b/tests/__snapshots__/falsepositives-1/17/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/17/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/17/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/18/pure-0.json b/tests/__snapshots__/falsepositives-1/18/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/18/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/18/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/19/pure-0.json b/tests/__snapshots__/falsepositives-1/19/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/19/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/19/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/1x1/pure-0.json b/tests/__snapshots__/falsepositives-1/1x1/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/1x1/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/1x1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/1x100/pure-0.json b/tests/__snapshots__/falsepositives-1/1x100/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/1x100/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/1x100/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/20/pure-0.json b/tests/__snapshots__/falsepositives-1/20/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/20/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/20/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/21/pure-0.json b/tests/__snapshots__/falsepositives-1/21/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/21/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/21/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/22/pure-0.json b/tests/__snapshots__/falsepositives-1/22/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/22/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/22/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-1/MQR-falsepositive/pure-0.json b/tests/__snapshots__/falsepositives-1/MQR-falsepositive/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-1/MQR-falsepositive/pure-0.json +++ b/tests/__snapshots__/falsepositives-1/MQR-falsepositive/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/01/pure-0.json b/tests/__snapshots__/falsepositives-2/01/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/01/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/01/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/02/pure-0.json b/tests/__snapshots__/falsepositives-2/02/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/02/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/02/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/03/pure-0.json b/tests/__snapshots__/falsepositives-2/03/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/03/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/03/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/04/pure-0.json b/tests/__snapshots__/falsepositives-2/04/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/04/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/04/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/05/pure-0.json b/tests/__snapshots__/falsepositives-2/05/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/05/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/05/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/06/pure-0.json b/tests/__snapshots__/falsepositives-2/06/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/06/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/06/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/07/pure-0.json b/tests/__snapshots__/falsepositives-2/07/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/07/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/07/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/08/pure-0.json b/tests/__snapshots__/falsepositives-2/08/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/08/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/08/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/09/pure-0.json b/tests/__snapshots__/falsepositives-2/09/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/09/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/09/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/10/pure-0.json b/tests/__snapshots__/falsepositives-2/10/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/10/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/10/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/11/pure-0.json b/tests/__snapshots__/falsepositives-2/11/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/11/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/11/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/12/pure-0.json b/tests/__snapshots__/falsepositives-2/12/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/12/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/13/pure-0.json b/tests/__snapshots__/falsepositives-2/13/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/13/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/13/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/14/pure-0.json b/tests/__snapshots__/falsepositives-2/14/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/14/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/14/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/15/pure-0.json b/tests/__snapshots__/falsepositives-2/15/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/15/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/15/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/16/pure-0.json b/tests/__snapshots__/falsepositives-2/16/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/16/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/16/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/17/pure-0.json b/tests/__snapshots__/falsepositives-2/17/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/17/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/17/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/18/pure-0.json b/tests/__snapshots__/falsepositives-2/18/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/18/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/18/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/19/pure-0.json b/tests/__snapshots__/falsepositives-2/19/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/19/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/19/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/20/pure-0.json b/tests/__snapshots__/falsepositives-2/20/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/20/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/20/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/21/pure-0.json b/tests/__snapshots__/falsepositives-2/21/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/21/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/21/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/22/pure-0.json b/tests/__snapshots__/falsepositives-2/22/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/22/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/22/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/23/pure-0.json b/tests/__snapshots__/falsepositives-2/23/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/23/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/23/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/24/pure-0.json b/tests/__snapshots__/falsepositives-2/24/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/24/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/24/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/falsepositives-2/25/pure-0.json b/tests/__snapshots__/falsepositives-2/25/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/falsepositives-2/25/pure-0.json +++ b/tests/__snapshots__/falsepositives-2/25/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/#220/slow-0.json b/tests/__snapshots__/itf-1/#220/slow-0.json index 0670d8f6..3387aedc 100644 --- a/tests/__snapshots__/itf-1/#220/slow-0.json +++ b/tests/__snapshots__/itf-1/#220/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8c82a99", "bytesECI": "850eefe", "text": "0000091897", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/#220/slow-180.json b/tests/__snapshots__/itf-1/#220/slow-180.json index b8d80bfa..325a854e 100644 --- a/tests/__snapshots__/itf-1/#220/slow-180.json +++ b/tests/__snapshots__/itf-1/#220/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8c82a99", "bytesECI": "850eefe", "text": "0000091897", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/#853/fast-0.json b/tests/__snapshots__/itf-1/#853/fast-0.json index e0279336..09aaee8e 100644 --- a/tests/__snapshots__/itf-1/#853/fast-0.json +++ b/tests/__snapshots__/itf-1/#853/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f1ee529", "bytesECI": "0201cf8", "text": "1515", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/#853/fast-180.json b/tests/__snapshots__/itf-1/#853/fast-180.json index 460f77b2..d704acf5 100644 --- a/tests/__snapshots__/itf-1/#853/fast-180.json +++ b/tests/__snapshots__/itf-1/#853/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f1ee529", "bytesECI": "0201cf8", "text": "1515", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/#853/slow-0.json b/tests/__snapshots__/itf-1/#853/slow-0.json index e0279336..09aaee8e 100644 --- a/tests/__snapshots__/itf-1/#853/slow-0.json +++ b/tests/__snapshots__/itf-1/#853/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f1ee529", "bytesECI": "0201cf8", "text": "1515", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/#853/slow-180.json b/tests/__snapshots__/itf-1/#853/slow-180.json index 460f77b2..d704acf5 100644 --- a/tests/__snapshots__/itf-1/#853/slow-180.json +++ b/tests/__snapshots__/itf-1/#853/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f1ee529", "bytesECI": "0201cf8", "text": "1515", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/1-slanted/fast-0.json b/tests/__snapshots__/itf-1/1-slanted/fast-0.json index 19032a13..4bdcce77 100644 --- a/tests/__snapshots__/itf-1/1-slanted/fast-0.json +++ b/tests/__snapshots__/itf-1/1-slanted/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4f50564", "bytesECI": "d464871", "text": "30712345000010", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/1-slanted/fast-180.json b/tests/__snapshots__/itf-1/1-slanted/fast-180.json index 28293a7a..a914416c 100644 --- a/tests/__snapshots__/itf-1/1-slanted/fast-180.json +++ b/tests/__snapshots__/itf-1/1-slanted/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4f50564", "bytesECI": "d464871", "text": "30712345000010", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/1-slanted/slow-0.json b/tests/__snapshots__/itf-1/1-slanted/slow-0.json index 19032a13..4bdcce77 100644 --- a/tests/__snapshots__/itf-1/1-slanted/slow-0.json +++ b/tests/__snapshots__/itf-1/1-slanted/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4f50564", "bytesECI": "d464871", "text": "30712345000010", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/1-slanted/slow-180.json b/tests/__snapshots__/itf-1/1-slanted/slow-180.json index 28293a7a..a914416c 100644 --- a/tests/__snapshots__/itf-1/1-slanted/slow-180.json +++ b/tests/__snapshots__/itf-1/1-slanted/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4f50564", "bytesECI": "d464871", "text": "30712345000010", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/1/fast-0.json b/tests/__snapshots__/itf-1/1/fast-0.json index c28a7b56..59e11e1c 100644 --- a/tests/__snapshots__/itf-1/1/fast-0.json +++ b/tests/__snapshots__/itf-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4f50564", "bytesECI": "d464871", "text": "30712345000010", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/1/fast-180.json b/tests/__snapshots__/itf-1/1/fast-180.json index 7449397b..02a8f78a 100644 --- a/tests/__snapshots__/itf-1/1/fast-180.json +++ b/tests/__snapshots__/itf-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4f50564", "bytesECI": "d464871", "text": "30712345000010", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/1/slow-0.json b/tests/__snapshots__/itf-1/1/slow-0.json index 8759d71b..ba3c2aae 100644 --- a/tests/__snapshots__/itf-1/1/slow-0.json +++ b/tests/__snapshots__/itf-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4f50564", "bytesECI": "d464871", "text": "30712345000010", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/1/slow-180.json b/tests/__snapshots__/itf-1/1/slow-180.json index e975deb1..af6640d8 100644 --- a/tests/__snapshots__/itf-1/1/slow-180.json +++ b/tests/__snapshots__/itf-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4f50564", "bytesECI": "d464871", "text": "30712345000010", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/13/fast-0.json b/tests/__snapshots__/itf-1/13/fast-0.json index b4f56fc2..a91aec26 100644 --- a/tests/__snapshots__/itf-1/13/fast-0.json +++ b/tests/__snapshots__/itf-1/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "97558b4", "bytesECI": "1bbbd22", "text": "0829220875", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/13/fast-180.json b/tests/__snapshots__/itf-1/13/fast-180.json index 3b7b1aa0..b00500af 100644 --- a/tests/__snapshots__/itf-1/13/fast-180.json +++ b/tests/__snapshots__/itf-1/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "97558b4", "bytesECI": "1bbbd22", "text": "0829220875", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/13/slow-0.json b/tests/__snapshots__/itf-1/13/slow-0.json index 13316ef8..8466f4db 100644 --- a/tests/__snapshots__/itf-1/13/slow-0.json +++ b/tests/__snapshots__/itf-1/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "97558b4", "bytesECI": "1bbbd22", "text": "0829220875", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/13/slow-180.json b/tests/__snapshots__/itf-1/13/slow-180.json index b126daa6..cfd93a8a 100644 --- a/tests/__snapshots__/itf-1/13/slow-180.json +++ b/tests/__snapshots__/itf-1/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "97558b4", "bytesECI": "1bbbd22", "text": "0829220875", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/17/fast-0.json b/tests/__snapshots__/itf-1/17/fast-0.json index ab9db970..d68ab84c 100644 --- a/tests/__snapshots__/itf-1/17/fast-0.json +++ b/tests/__snapshots__/itf-1/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "07aafef", "bytesECI": "f423149", "text": "3018108390", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/17/fast-180.json b/tests/__snapshots__/itf-1/17/fast-180.json index 97969533..25d4dbe0 100644 --- a/tests/__snapshots__/itf-1/17/fast-180.json +++ b/tests/__snapshots__/itf-1/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "07aafef", "bytesECI": "f423149", "text": "3018108390", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/17/slow-0.json b/tests/__snapshots__/itf-1/17/slow-0.json index a1724281..d6b1bef7 100644 --- a/tests/__snapshots__/itf-1/17/slow-0.json +++ b/tests/__snapshots__/itf-1/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "07aafef", "bytesECI": "f423149", "text": "3018108390", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/17/slow-180.json b/tests/__snapshots__/itf-1/17/slow-180.json index 4948b860..2ae39c6b 100644 --- a/tests/__snapshots__/itf-1/17/slow-180.json +++ b/tests/__snapshots__/itf-1/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "07aafef", "bytesECI": "f423149", "text": "3018108390", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/2/fast-0.json b/tests/__snapshots__/itf-1/2/fast-0.json index 29c3e39d..30f6749f 100644 --- a/tests/__snapshots__/itf-1/2/fast-0.json +++ b/tests/__snapshots__/itf-1/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "3873b74", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/2/fast-180.json b/tests/__snapshots__/itf-1/2/fast-180.json index 8a494e31..d36ac315 100644 --- a/tests/__snapshots__/itf-1/2/fast-180.json +++ b/tests/__snapshots__/itf-1/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "3873b74", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/2/slow-0.json b/tests/__snapshots__/itf-1/2/slow-0.json index 07bcd581..0f1862a7 100644 --- a/tests/__snapshots__/itf-1/2/slow-0.json +++ b/tests/__snapshots__/itf-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "3873b74", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/2/slow-180.json b/tests/__snapshots__/itf-1/2/slow-180.json index f83a9c76..0016694f 100644 --- a/tests/__snapshots__/itf-1/2/slow-180.json +++ b/tests/__snapshots__/itf-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "3873b74", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/3/fast-0.json b/tests/__snapshots__/itf-1/3/fast-0.json index 061b6614..bbc1cccd 100644 --- a/tests/__snapshots__/itf-1/3/fast-0.json +++ b/tests/__snapshots__/itf-1/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6670e14", "bytesECI": "72f8d3c", "text": "0053611912", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/3/fast-180.json b/tests/__snapshots__/itf-1/3/fast-180.json index 4132515c..d15958e9 100644 --- a/tests/__snapshots__/itf-1/3/fast-180.json +++ b/tests/__snapshots__/itf-1/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6670e14", "bytesECI": "72f8d3c", "text": "0053611912", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/3/slow-0.json b/tests/__snapshots__/itf-1/3/slow-0.json index 8e55908c..d4e67caa 100644 --- a/tests/__snapshots__/itf-1/3/slow-0.json +++ b/tests/__snapshots__/itf-1/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6670e14", "bytesECI": "72f8d3c", "text": "0053611912", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/3/slow-180.json b/tests/__snapshots__/itf-1/3/slow-180.json index a4544eee..e33e8265 100644 --- a/tests/__snapshots__/itf-1/3/slow-180.json +++ b/tests/__snapshots__/itf-1/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6670e14", "bytesECI": "72f8d3c", "text": "0053611912", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/5/fast-0.json b/tests/__snapshots__/itf-1/5/fast-0.json index 68f9d4de..2b121003 100644 --- a/tests/__snapshots__/itf-1/5/fast-0.json +++ b/tests/__snapshots__/itf-1/5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "97558b4", "bytesECI": "1bbbd22", "text": "0829220875", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/5/fast-180.json b/tests/__snapshots__/itf-1/5/fast-180.json index 42568d98..b90371f7 100644 --- a/tests/__snapshots__/itf-1/5/fast-180.json +++ b/tests/__snapshots__/itf-1/5/fast-180.json @@ -5,7 +5,7 @@ "bytes": "97558b4", "bytesECI": "1bbbd22", "text": "0829220875", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/5/slow-0.json b/tests/__snapshots__/itf-1/5/slow-0.json index d2ab8e1a..fc560ac6 100644 --- a/tests/__snapshots__/itf-1/5/slow-0.json +++ b/tests/__snapshots__/itf-1/5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "97558b4", "bytesECI": "1bbbd22", "text": "0829220875", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/5/slow-180.json b/tests/__snapshots__/itf-1/5/slow-180.json index d14db88e..3e2d28c4 100644 --- a/tests/__snapshots__/itf-1/5/slow-180.json +++ b/tests/__snapshots__/itf-1/5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "97558b4", "bytesECI": "1bbbd22", "text": "0829220875", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/6/fast-0.json b/tests/__snapshots__/itf-1/6/fast-0.json index b3168736..97624ec5 100644 --- a/tests/__snapshots__/itf-1/6/fast-0.json +++ b/tests/__snapshots__/itf-1/6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "89ae977", "bytesECI": "4b0742c", "text": "0829220874", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/6/fast-180.json b/tests/__snapshots__/itf-1/6/fast-180.json index 5b920f18..0f44cebe 100644 --- a/tests/__snapshots__/itf-1/6/fast-180.json +++ b/tests/__snapshots__/itf-1/6/fast-180.json @@ -5,7 +5,7 @@ "bytes": "89ae977", "bytesECI": "4b0742c", "text": "0829220874", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/6/slow-0.json b/tests/__snapshots__/itf-1/6/slow-0.json index 5e3aca54..f1fbc478 100644 --- a/tests/__snapshots__/itf-1/6/slow-0.json +++ b/tests/__snapshots__/itf-1/6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89ae977", "bytesECI": "4b0742c", "text": "0829220874", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/6/slow-180.json b/tests/__snapshots__/itf-1/6/slow-180.json index fa2880c9..061c703e 100644 --- a/tests/__snapshots__/itf-1/6/slow-180.json +++ b/tests/__snapshots__/itf-1/6/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89ae977", "bytesECI": "4b0742c", "text": "0829220874", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/7/fast-0.json b/tests/__snapshots__/itf-1/7/fast-0.json index 563ec108..113b404f 100644 --- a/tests/__snapshots__/itf-1/7/fast-0.json +++ b/tests/__snapshots__/itf-1/7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6229080", "bytesECI": "846adab", "text": "0817605453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/7/fast-180.json b/tests/__snapshots__/itf-1/7/fast-180.json index a79d2dbb..35df4e25 100644 --- a/tests/__snapshots__/itf-1/7/fast-180.json +++ b/tests/__snapshots__/itf-1/7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6229080", "bytesECI": "846adab", "text": "0817605453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/7/slow-0.json b/tests/__snapshots__/itf-1/7/slow-0.json index 6062342d..3fe633b2 100644 --- a/tests/__snapshots__/itf-1/7/slow-0.json +++ b/tests/__snapshots__/itf-1/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6229080", "bytesECI": "846adab", "text": "0817605453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/7/slow-180.json b/tests/__snapshots__/itf-1/7/slow-180.json index e9881d0d..fb572dfe 100644 --- a/tests/__snapshots__/itf-1/7/slow-180.json +++ b/tests/__snapshots__/itf-1/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6229080", "bytesECI": "846adab", "text": "0817605453", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/8/fast-0.json b/tests/__snapshots__/itf-1/8/fast-0.json index c5c94065..fdcdc9a2 100644 --- a/tests/__snapshots__/itf-1/8/fast-0.json +++ b/tests/__snapshots__/itf-1/8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "89ae977", "bytesECI": "4b0742c", "text": "0829220874", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/8/fast-180.json b/tests/__snapshots__/itf-1/8/fast-180.json index 3fea60b7..1f84b74b 100644 --- a/tests/__snapshots__/itf-1/8/fast-180.json +++ b/tests/__snapshots__/itf-1/8/fast-180.json @@ -5,7 +5,7 @@ "bytes": "89ae977", "bytesECI": "4b0742c", "text": "0829220874", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/8/slow-0.json b/tests/__snapshots__/itf-1/8/slow-0.json index f8c4915d..8276cecc 100644 --- a/tests/__snapshots__/itf-1/8/slow-0.json +++ b/tests/__snapshots__/itf-1/8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89ae977", "bytesECI": "4b0742c", "text": "0829220874", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/8/slow-180.json b/tests/__snapshots__/itf-1/8/slow-180.json index c1d28638..c42d0ef6 100644 --- a/tests/__snapshots__/itf-1/8/slow-180.json +++ b/tests/__snapshots__/itf-1/8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89ae977", "bytesECI": "4b0742c", "text": "0829220874", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/9/fast-0.json b/tests/__snapshots__/itf-1/9/fast-0.json index 6373b85d..4fa1775f 100644 --- a/tests/__snapshots__/itf-1/9/fast-0.json +++ b/tests/__snapshots__/itf-1/9/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6670e14", "bytesECI": "72f8d3c", "text": "0053611912", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/9/fast-180.json b/tests/__snapshots__/itf-1/9/fast-180.json index fbba0047..d3473d2d 100644 --- a/tests/__snapshots__/itf-1/9/fast-180.json +++ b/tests/__snapshots__/itf-1/9/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6670e14", "bytesECI": "72f8d3c", "text": "0053611912", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/9/slow-0.json b/tests/__snapshots__/itf-1/9/slow-0.json index 117429ed..db7edd16 100644 --- a/tests/__snapshots__/itf-1/9/slow-0.json +++ b/tests/__snapshots__/itf-1/9/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6670e14", "bytesECI": "72f8d3c", "text": "0053611912", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/9/slow-180.json b/tests/__snapshots__/itf-1/9/slow-180.json index 46d7ed63..29f386cd 100644 --- a/tests/__snapshots__/itf-1/9/slow-180.json +++ b/tests/__snapshots__/itf-1/9/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6670e14", "bytesECI": "72f8d3c", "text": "0053611912", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/with-tail/fast-0.json b/tests/__snapshots__/itf-1/with-tail/fast-0.json index 9ef74e73..88011257 100644 --- a/tests/__snapshots__/itf-1/with-tail/fast-0.json +++ b/tests/__snapshots__/itf-1/with-tail/fast-0.json @@ -5,7 +5,7 @@ "bytes": "70d5240", "bytesECI": "527ce69", "text": "00123456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/with-tail/fast-180.json b/tests/__snapshots__/itf-1/with-tail/fast-180.json index 0f7580cc..9e6f8fc9 100644 --- a/tests/__snapshots__/itf-1/with-tail/fast-180.json +++ b/tests/__snapshots__/itf-1/with-tail/fast-180.json @@ -5,7 +5,7 @@ "bytes": "70d5240", "bytesECI": "527ce69", "text": "00123456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/with-tail/slow-0.json b/tests/__snapshots__/itf-1/with-tail/slow-0.json index 9ef74e73..88011257 100644 --- a/tests/__snapshots__/itf-1/with-tail/slow-0.json +++ b/tests/__snapshots__/itf-1/with-tail/slow-0.json @@ -5,7 +5,7 @@ "bytes": "70d5240", "bytesECI": "527ce69", "text": "00123456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-1/with-tail/slow-180.json b/tests/__snapshots__/itf-1/with-tail/slow-180.json index 0f7580cc..9e6f8fc9 100644 --- a/tests/__snapshots__/itf-1/with-tail/slow-180.json +++ b/tests/__snapshots__/itf-1/with-tail/slow-180.json @@ -5,7 +5,7 @@ "bytes": "70d5240", "bytesECI": "527ce69", "text": "00123456", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/01/fast-0.json b/tests/__snapshots__/itf-2/01/fast-0.json index 65fb04fe..aebeabd4 100644 --- a/tests/__snapshots__/itf-2/01/fast-0.json +++ b/tests/__snapshots__/itf-2/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/01/fast-180.json b/tests/__snapshots__/itf-2/01/fast-180.json index 31b722da..fea9123a 100644 --- a/tests/__snapshots__/itf-2/01/fast-180.json +++ b/tests/__snapshots__/itf-2/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/01/slow-0.json b/tests/__snapshots__/itf-2/01/slow-0.json index 4b99f1d8..25a9254e 100644 --- a/tests/__snapshots__/itf-2/01/slow-0.json +++ b/tests/__snapshots__/itf-2/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/01/slow-180.json b/tests/__snapshots__/itf-2/01/slow-180.json index 781add80..53f3b936 100644 --- a/tests/__snapshots__/itf-2/01/slow-180.json +++ b/tests/__snapshots__/itf-2/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/04/fast-0.json b/tests/__snapshots__/itf-2/04/fast-0.json index 2f4457af..01c54ed9 100644 --- a/tests/__snapshots__/itf-2/04/fast-0.json +++ b/tests/__snapshots__/itf-2/04/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/04/fast-180.json b/tests/__snapshots__/itf-2/04/fast-180.json index 730f233c..ef59a150 100644 --- a/tests/__snapshots__/itf-2/04/fast-180.json +++ b/tests/__snapshots__/itf-2/04/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/04/slow-0.json b/tests/__snapshots__/itf-2/04/slow-0.json index a8a9a920..292ef20f 100644 --- a/tests/__snapshots__/itf-2/04/slow-0.json +++ b/tests/__snapshots__/itf-2/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/04/slow-180.json b/tests/__snapshots__/itf-2/04/slow-180.json index 5f58e11b..cd2500e2 100644 --- a/tests/__snapshots__/itf-2/04/slow-180.json +++ b/tests/__snapshots__/itf-2/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/06/fast-0.json b/tests/__snapshots__/itf-2/06/fast-0.json index c276ba57..9b2696c4 100644 --- a/tests/__snapshots__/itf-2/06/fast-0.json +++ b/tests/__snapshots__/itf-2/06/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/06/fast-180.json b/tests/__snapshots__/itf-2/06/fast-180.json index 010fec04..ffad0f96 100644 --- a/tests/__snapshots__/itf-2/06/fast-180.json +++ b/tests/__snapshots__/itf-2/06/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/06/slow-0.json b/tests/__snapshots__/itf-2/06/slow-0.json index 58137787..8eef012b 100644 --- a/tests/__snapshots__/itf-2/06/slow-0.json +++ b/tests/__snapshots__/itf-2/06/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/06/slow-180.json b/tests/__snapshots__/itf-2/06/slow-180.json index 747d943d..9042d634 100644 --- a/tests/__snapshots__/itf-2/06/slow-180.json +++ b/tests/__snapshots__/itf-2/06/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/07/fast-0.json b/tests/__snapshots__/itf-2/07/fast-0.json index e62aaa7e..17670c6b 100644 --- a/tests/__snapshots__/itf-2/07/fast-0.json +++ b/tests/__snapshots__/itf-2/07/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/07/fast-180.json b/tests/__snapshots__/itf-2/07/fast-180.json index 32818b1f..31e1413c 100644 --- a/tests/__snapshots__/itf-2/07/fast-180.json +++ b/tests/__snapshots__/itf-2/07/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/07/slow-0.json b/tests/__snapshots__/itf-2/07/slow-0.json index b126d41f..175e7848 100644 --- a/tests/__snapshots__/itf-2/07/slow-0.json +++ b/tests/__snapshots__/itf-2/07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/07/slow-180.json b/tests/__snapshots__/itf-2/07/slow-180.json index 9b2d29b1..40b923b2 100644 --- a/tests/__snapshots__/itf-2/07/slow-180.json +++ b/tests/__snapshots__/itf-2/07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/08/fast-0.json b/tests/__snapshots__/itf-2/08/fast-0.json index d4d8eb63..2a57ad7d 100644 --- a/tests/__snapshots__/itf-2/08/fast-0.json +++ b/tests/__snapshots__/itf-2/08/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/08/fast-180.json b/tests/__snapshots__/itf-2/08/fast-180.json index 34b44540..38ee62b1 100644 --- a/tests/__snapshots__/itf-2/08/fast-180.json +++ b/tests/__snapshots__/itf-2/08/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/08/slow-0.json b/tests/__snapshots__/itf-2/08/slow-0.json index b3fa26c3..8a22a56d 100644 --- a/tests/__snapshots__/itf-2/08/slow-0.json +++ b/tests/__snapshots__/itf-2/08/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/08/slow-180.json b/tests/__snapshots__/itf-2/08/slow-180.json index c976c633..e0e46160 100644 --- a/tests/__snapshots__/itf-2/08/slow-180.json +++ b/tests/__snapshots__/itf-2/08/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/13/fast-0.json b/tests/__snapshots__/itf-2/13/fast-0.json index c6948115..0b2bbff9 100644 --- a/tests/__snapshots__/itf-2/13/fast-0.json +++ b/tests/__snapshots__/itf-2/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/13/fast-180.json b/tests/__snapshots__/itf-2/13/fast-180.json index 3e84f1df..2bfbf78d 100644 --- a/tests/__snapshots__/itf-2/13/fast-180.json +++ b/tests/__snapshots__/itf-2/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/13/slow-0.json b/tests/__snapshots__/itf-2/13/slow-0.json index 75bea642..dd436ede 100644 --- a/tests/__snapshots__/itf-2/13/slow-0.json +++ b/tests/__snapshots__/itf-2/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/itf-2/13/slow-180.json b/tests/__snapshots__/itf-2/13/slow-180.json index 49ef262e..fae99be7 100644 --- a/tests/__snapshots__/itf-2/13/slow-180.json +++ b/tests/__snapshots__/itf-2/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2356df1", "bytesECI": "54c71d2", "text": "070429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/maxicode-1/MODE2/fast-0.json b/tests/__snapshots__/maxicode-1/MODE2/fast-0.json index 50fefbdf..0a721b98 100644 --- a/tests/__snapshots__/maxicode-1/MODE2/fast-0.json +++ b/tests/__snapshots__/maxicode-1/MODE2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5954f0b", "bytesECI": "24b63e3", "text": "[)>0196123450000222111MODE2", - "eccLevel": "2", + "ecLevel": "2", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "2" } diff --git a/tests/__snapshots__/maxicode-1/MODE2/slow-0.json b/tests/__snapshots__/maxicode-1/MODE2/slow-0.json index 50fefbdf..0a721b98 100644 --- a/tests/__snapshots__/maxicode-1/MODE2/slow-0.json +++ b/tests/__snapshots__/maxicode-1/MODE2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5954f0b", "bytesECI": "24b63e3", "text": "[)>0196123450000222111MODE2", - "eccLevel": "2", + "ecLevel": "2", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "2" } diff --git a/tests/__snapshots__/maxicode-1/MODE3/fast-0.json b/tests/__snapshots__/maxicode-1/MODE3/fast-0.json index 08f976e8..ff23f5c8 100644 --- a/tests/__snapshots__/maxicode-1/MODE3/fast-0.json +++ b/tests/__snapshots__/maxicode-1/MODE3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f2fe5be", "bytesECI": "5c1a435", "text": "[)>0196123450000222111MODE3", - "eccLevel": "2", + "ecLevel": "2", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "2" } diff --git a/tests/__snapshots__/maxicode-1/MODE3/slow-0.json b/tests/__snapshots__/maxicode-1/MODE3/slow-0.json index 08f976e8..ff23f5c8 100644 --- a/tests/__snapshots__/maxicode-1/MODE3/slow-0.json +++ b/tests/__snapshots__/maxicode-1/MODE3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f2fe5be", "bytesECI": "5c1a435", "text": "[)>0196123450000222111MODE3", - "eccLevel": "2", + "ecLevel": "2", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "2" } diff --git a/tests/__snapshots__/maxicode-1/MODE4/fast-0.json b/tests/__snapshots__/maxicode-1/MODE4/fast-0.json index dd627834..5fe5fff7 100644 --- a/tests/__snapshots__/maxicode-1/MODE4/fast-0.json +++ b/tests/__snapshots__/maxicode-1/MODE4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c4d868f", "bytesECI": "a748539", "text": "[)>0196123450000222111MODE4", - "eccLevel": "2", + "ecLevel": "2", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "2" } diff --git a/tests/__snapshots__/maxicode-1/MODE4/slow-0.json b/tests/__snapshots__/maxicode-1/MODE4/slow-0.json index dd627834..5fe5fff7 100644 --- a/tests/__snapshots__/maxicode-1/MODE4/slow-0.json +++ b/tests/__snapshots__/maxicode-1/MODE4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c4d868f", "bytesECI": "a748539", "text": "[)>0196123450000222111MODE4", - "eccLevel": "2", + "ecLevel": "2", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "2" } diff --git a/tests/__snapshots__/maxicode-1/MODE5/fast-0.json b/tests/__snapshots__/maxicode-1/MODE5/fast-0.json index 066ce7af..58f87866 100644 --- a/tests/__snapshots__/maxicode-1/MODE5/fast-0.json +++ b/tests/__snapshots__/maxicode-1/MODE5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "057ada5", "bytesECI": "5c4c6da", "text": "[)>0196123450000222111MODE5", - "eccLevel": "2", + "ecLevel": "2", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "2" } diff --git a/tests/__snapshots__/maxicode-1/MODE5/slow-0.json b/tests/__snapshots__/maxicode-1/MODE5/slow-0.json index 066ce7af..58f87866 100644 --- a/tests/__snapshots__/maxicode-1/MODE5/slow-0.json +++ b/tests/__snapshots__/maxicode-1/MODE5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "057ada5", "bytesECI": "5c4c6da", "text": "[)>0196123450000222111MODE5", - "eccLevel": "2", + "ecLevel": "2", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "2" } diff --git a/tests/__snapshots__/maxicode-1/MODE6/fast-0.json b/tests/__snapshots__/maxicode-1/MODE6/fast-0.json index 44103a95..6b051905 100644 --- a/tests/__snapshots__/maxicode-1/MODE6/fast-0.json +++ b/tests/__snapshots__/maxicode-1/MODE6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6a59256", "bytesECI": "2af00d0", "text": "[)>0196123450000222111MODE6", - "eccLevel": "2", + "ecLevel": "2", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "2" } diff --git a/tests/__snapshots__/maxicode-1/MODE6/slow-0.json b/tests/__snapshots__/maxicode-1/MODE6/slow-0.json index 44103a95..6b051905 100644 --- a/tests/__snapshots__/maxicode-1/MODE6/slow-0.json +++ b/tests/__snapshots__/maxicode-1/MODE6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6a59256", "bytesECI": "2af00d0", "text": "[)>0196123450000222111MODE6", - "eccLevel": "2", + "ecLevel": "2", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "2" } diff --git a/tests/__snapshots__/maxicode-1/Wikipedia/fast-0.json b/tests/__snapshots__/maxicode-1/Wikipedia/fast-0.json index ac4ab846..e0035efd 100644 --- a/tests/__snapshots__/maxicode-1/Wikipedia/fast-0.json +++ b/tests/__snapshots__/maxicode-1/Wikipedia/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0252866", "bytesECI": "1a84d39", "text": "Wikipedia, the free encyclopedia", - "eccLevel": "4", + "ecLevel": "4", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "4" } diff --git a/tests/__snapshots__/maxicode-1/Wikipedia/slow-0.json b/tests/__snapshots__/maxicode-1/Wikipedia/slow-0.json index ac4ab846..e0035efd 100644 --- a/tests/__snapshots__/maxicode-1/Wikipedia/slow-0.json +++ b/tests/__snapshots__/maxicode-1/Wikipedia/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0252866", "bytesECI": "1a84d39", "text": "Wikipedia, the free encyclopedia", - "eccLevel": "4", + "ecLevel": "4", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "4" } diff --git a/tests/__snapshots__/maxicode-1/mode4-mixed-ecis/fast-0.json b/tests/__snapshots__/maxicode-1/mode4-mixed-ecis/fast-0.json index 10383060..1de99500 100644 --- a/tests/__snapshots__/maxicode-1/mode4-mixed-ecis/fast-0.json +++ b/tests/__snapshots__/maxicode-1/mode4-mixed-ecis/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ed5dad9", "bytesECI": "45a8d9f", "text": "", - "eccLevel": "4", + "ecLevel": "4", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "4" } diff --git a/tests/__snapshots__/maxicode-1/mode4-mixed-ecis/slow-0.json b/tests/__snapshots__/maxicode-1/mode4-mixed-ecis/slow-0.json index 10383060..1de99500 100644 --- a/tests/__snapshots__/maxicode-1/mode4-mixed-ecis/slow-0.json +++ b/tests/__snapshots__/maxicode-1/mode4-mixed-ecis/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ed5dad9", "bytesECI": "45a8d9f", "text": "", - "eccLevel": "4", + "ecLevel": "4", "contentType": "UnknownECI", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "4" } diff --git a/tests/__snapshots__/maxicode-1/mode4-mixed-sets/fast-0.json b/tests/__snapshots__/maxicode-1/mode4-mixed-sets/fast-0.json index 1b1c1942..c285a404 100644 --- a/tests/__snapshots__/maxicode-1/mode4-mixed-sets/fast-0.json +++ b/tests/__snapshots__/maxicode-1/mode4-mixed-sets/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4f07a38", "bytesECI": "94657b4", "text": "ABCDE12abcde1ÀÁÂ⣤¥1àáâãabcde123A123456789àáâ㢣¤¥abcdÚÛÜÝ123456789¾", - "eccLevel": "4", + "ecLevel": "4", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "4" } diff --git a/tests/__snapshots__/maxicode-1/mode4-mixed-sets/slow-0.json b/tests/__snapshots__/maxicode-1/mode4-mixed-sets/slow-0.json index 1b1c1942..c285a404 100644 --- a/tests/__snapshots__/maxicode-1/mode4-mixed-sets/slow-0.json +++ b/tests/__snapshots__/maxicode-1/mode4-mixed-sets/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4f07a38", "bytesECI": "94657b4", "text": "ABCDE12abcde1ÀÁÂ⣤¥1àáâãabcde123A123456789àáâ㢣¤¥abcdÚÛÜÝ123456789¾", - "eccLevel": "4", + "ecLevel": "4", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "4" } diff --git a/tests/__snapshots__/maxicode-1/mode5-sequence2of3/fast-0.json b/tests/__snapshots__/maxicode-1/mode5-sequence2of3/fast-0.json index 3d45344a..63e67537 100644 --- a/tests/__snapshots__/maxicode-1/mode5-sequence2of3/fast-0.json +++ b/tests/__snapshots__/maxicode-1/mode5-sequence2of3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c37d691", "bytesECI": "6e2373d", "text": "123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901", - "eccLevel": "5", + "ecLevel": "5", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "5" } diff --git a/tests/__snapshots__/maxicode-1/mode5-sequence2of3/slow-0.json b/tests/__snapshots__/maxicode-1/mode5-sequence2of3/slow-0.json index 3d45344a..63e67537 100644 --- a/tests/__snapshots__/maxicode-1/mode5-sequence2of3/slow-0.json +++ b/tests/__snapshots__/maxicode-1/mode5-sequence2of3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c37d691", "bytesECI": "6e2373d", "text": "123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901", - "eccLevel": "5", + "ecLevel": "5", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "5" } diff --git a/tests/__snapshots__/microqrcode-1/1/fast-0.json b/tests/__snapshots__/microqrcode-1/1/fast-0.json index 949cf1e9..b709a6ee 100644 --- a/tests/__snapshots__/microqrcode-1/1/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d38b38a", "bytesECI": "571c384", "text": "Wikipedia", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/1/fast-180.json b/tests/__snapshots__/microqrcode-1/1/fast-180.json index d049ec3b..4ecf3d9f 100644 --- a/tests/__snapshots__/microqrcode-1/1/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d38b38a", "bytesECI": "571c384", "text": "Wikipedia", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/1/fast-270.json b/tests/__snapshots__/microqrcode-1/1/fast-270.json index be396c47..99c1d38d 100644 --- a/tests/__snapshots__/microqrcode-1/1/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/1/fast-270.json @@ -5,7 +5,7 @@ "bytes": "d38b38a", "bytesECI": "571c384", "text": "Wikipedia", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/1/fast-90.json b/tests/__snapshots__/microqrcode-1/1/fast-90.json index d2de10b4..dbe0be33 100644 --- a/tests/__snapshots__/microqrcode-1/1/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/1/fast-90.json @@ -5,7 +5,7 @@ "bytes": "d38b38a", "bytesECI": "571c384", "text": "Wikipedia", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/1/pure-0.json b/tests/__snapshots__/microqrcode-1/1/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/microqrcode-1/1/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/microqrcode-1/1/slow-0.json b/tests/__snapshots__/microqrcode-1/1/slow-0.json index 949cf1e9..b709a6ee 100644 --- a/tests/__snapshots__/microqrcode-1/1/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d38b38a", "bytesECI": "571c384", "text": "Wikipedia", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/1/slow-180.json b/tests/__snapshots__/microqrcode-1/1/slow-180.json index d049ec3b..4ecf3d9f 100644 --- a/tests/__snapshots__/microqrcode-1/1/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d38b38a", "bytesECI": "571c384", "text": "Wikipedia", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/1/slow-270.json b/tests/__snapshots__/microqrcode-1/1/slow-270.json index be396c47..99c1d38d 100644 --- a/tests/__snapshots__/microqrcode-1/1/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/1/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d38b38a", "bytesECI": "571c384", "text": "Wikipedia", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/1/slow-90.json b/tests/__snapshots__/microqrcode-1/1/slow-90.json index d2de10b4..dbe0be33 100644 --- a/tests/__snapshots__/microqrcode-1/1/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/1/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d38b38a", "bytesECI": "571c384", "text": "Wikipedia", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/11/fast-0.json b/tests/__snapshots__/microqrcode-1/11/fast-0.json index c0cf6350..4bd7ce07 100644 --- a/tests/__snapshots__/microqrcode-1/11/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "97a0730", "bytesECI": "0dc9136", "text": "Loser", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/microqrcode-1/11/fast-180.json b/tests/__snapshots__/microqrcode-1/11/fast-180.json index 50f6161e..e94f4b2e 100644 --- a/tests/__snapshots__/microqrcode-1/11/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "97a0730", "bytesECI": "0dc9136", "text": "Loser", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/microqrcode-1/11/fast-270.json b/tests/__snapshots__/microqrcode-1/11/fast-270.json index d72f8307..6cb71f47 100644 --- a/tests/__snapshots__/microqrcode-1/11/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/11/fast-270.json @@ -5,7 +5,7 @@ "bytes": "97a0730", "bytesECI": "0dc9136", "text": "Loser", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/microqrcode-1/11/fast-90.json b/tests/__snapshots__/microqrcode-1/11/fast-90.json index 5b35b26f..b71ab35f 100644 --- a/tests/__snapshots__/microqrcode-1/11/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/11/fast-90.json @@ -5,7 +5,7 @@ "bytes": "97a0730", "bytesECI": "0dc9136", "text": "Loser", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/microqrcode-1/11/pure-0.json b/tests/__snapshots__/microqrcode-1/11/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/microqrcode-1/11/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/11/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/microqrcode-1/11/slow-0.json b/tests/__snapshots__/microqrcode-1/11/slow-0.json index c0cf6350..4bd7ce07 100644 --- a/tests/__snapshots__/microqrcode-1/11/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "97a0730", "bytesECI": "0dc9136", "text": "Loser", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/microqrcode-1/11/slow-180.json b/tests/__snapshots__/microqrcode-1/11/slow-180.json index 50f6161e..e94f4b2e 100644 --- a/tests/__snapshots__/microqrcode-1/11/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "97a0730", "bytesECI": "0dc9136", "text": "Loser", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/microqrcode-1/11/slow-270.json b/tests/__snapshots__/microqrcode-1/11/slow-270.json index d72f8307..6cb71f47 100644 --- a/tests/__snapshots__/microqrcode-1/11/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/11/slow-270.json @@ -5,7 +5,7 @@ "bytes": "97a0730", "bytesECI": "0dc9136", "text": "Loser", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/microqrcode-1/11/slow-90.json b/tests/__snapshots__/microqrcode-1/11/slow-90.json index 5b35b26f..b71ab35f 100644 --- a/tests/__snapshots__/microqrcode-1/11/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/11/slow-90.json @@ -5,7 +5,7 @@ "bytes": "97a0730", "bytesECI": "0dc9136", "text": "Loser", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/microqrcode-1/12/pure-0.json b/tests/__snapshots__/microqrcode-1/12/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/microqrcode-1/12/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/microqrcode-1/3/fast-0.json b/tests/__snapshots__/microqrcode-1/3/fast-0.json index 1f6416d8..b888b564 100644 --- a/tests/__snapshots__/microqrcode-1/3/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9532f83", "bytesECI": "70a6cd3", "text": "malgajninto", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/3/fast-180.json b/tests/__snapshots__/microqrcode-1/3/fast-180.json index 995a9b27..249e74b5 100644 --- a/tests/__snapshots__/microqrcode-1/3/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9532f83", "bytesECI": "70a6cd3", "text": "malgajninto", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/3/fast-270.json b/tests/__snapshots__/microqrcode-1/3/fast-270.json index ea05cba2..4e93c755 100644 --- a/tests/__snapshots__/microqrcode-1/3/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/3/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9532f83", "bytesECI": "70a6cd3", "text": "malgajninto", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/3/fast-90.json b/tests/__snapshots__/microqrcode-1/3/fast-90.json index ab643d0f..a3593b0f 100644 --- a/tests/__snapshots__/microqrcode-1/3/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/3/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9532f83", "bytesECI": "70a6cd3", "text": "malgajninto", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/3/pure-0.json b/tests/__snapshots__/microqrcode-1/3/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/microqrcode-1/3/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/3/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/microqrcode-1/3/slow-0.json b/tests/__snapshots__/microqrcode-1/3/slow-0.json index 1f6416d8..b888b564 100644 --- a/tests/__snapshots__/microqrcode-1/3/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9532f83", "bytesECI": "70a6cd3", "text": "malgajninto", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/3/slow-180.json b/tests/__snapshots__/microqrcode-1/3/slow-180.json index 995a9b27..249e74b5 100644 --- a/tests/__snapshots__/microqrcode-1/3/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9532f83", "bytesECI": "70a6cd3", "text": "malgajninto", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/3/slow-270.json b/tests/__snapshots__/microqrcode-1/3/slow-270.json index ea05cba2..4e93c755 100644 --- a/tests/__snapshots__/microqrcode-1/3/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/3/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9532f83", "bytesECI": "70a6cd3", "text": "malgajninto", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/3/slow-90.json b/tests/__snapshots__/microqrcode-1/3/slow-90.json index ab643d0f..a3593b0f 100644 --- a/tests/__snapshots__/microqrcode-1/3/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/3/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9532f83", "bytesECI": "70a6cd3", "text": "malgajninto", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/7/fast-0.json b/tests/__snapshots__/microqrcode-1/7/fast-0.json index bbe66b85..7d5535d7 100644 --- a/tests/__snapshots__/microqrcode-1/7/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1c5f468", "bytesECI": "2b250a9", "text": "Victus", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/7/fast-180.json b/tests/__snapshots__/microqrcode-1/7/fast-180.json index 2d96d729..9f609126 100644 --- a/tests/__snapshots__/microqrcode-1/7/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1c5f468", "bytesECI": "2b250a9", "text": "Victus", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/7/fast-270.json b/tests/__snapshots__/microqrcode-1/7/fast-270.json index 3b821949..cf9c84c2 100644 --- a/tests/__snapshots__/microqrcode-1/7/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/7/fast-270.json @@ -5,7 +5,7 @@ "bytes": "1c5f468", "bytesECI": "2b250a9", "text": "Victus", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/7/fast-90.json b/tests/__snapshots__/microqrcode-1/7/fast-90.json index 9627bd5f..cea04657 100644 --- a/tests/__snapshots__/microqrcode-1/7/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/7/fast-90.json @@ -5,7 +5,7 @@ "bytes": "1c5f468", "bytesECI": "2b250a9", "text": "Victus", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/7/pure-0.json b/tests/__snapshots__/microqrcode-1/7/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/microqrcode-1/7/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/7/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/microqrcode-1/7/slow-0.json b/tests/__snapshots__/microqrcode-1/7/slow-0.json index bbe66b85..7d5535d7 100644 --- a/tests/__snapshots__/microqrcode-1/7/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1c5f468", "bytesECI": "2b250a9", "text": "Victus", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/7/slow-180.json b/tests/__snapshots__/microqrcode-1/7/slow-180.json index 2d96d729..9f609126 100644 --- a/tests/__snapshots__/microqrcode-1/7/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1c5f468", "bytesECI": "2b250a9", "text": "Victus", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/7/slow-270.json b/tests/__snapshots__/microqrcode-1/7/slow-270.json index 3b821949..cf9c84c2 100644 --- a/tests/__snapshots__/microqrcode-1/7/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/7/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1c5f468", "bytesECI": "2b250a9", "text": "Victus", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/7/slow-90.json b/tests/__snapshots__/microqrcode-1/7/slow-90.json index 9627bd5f..cea04657 100644 --- a/tests/__snapshots__/microqrcode-1/7/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/7/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1c5f468", "bytesECI": "2b250a9", "text": "Victus", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/9/fast-0.json b/tests/__snapshots__/microqrcode-1/9/fast-0.json index c9f91fed..e544a97b 100644 --- a/tests/__snapshots__/microqrcode-1/9/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/9/fast-0.json @@ -5,7 +5,7 @@ "bytes": "04798bc", "bytesECI": "74915e9", "text": "ezik", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/9/fast-180.json b/tests/__snapshots__/microqrcode-1/9/fast-180.json index 85415e61..3e3978e8 100644 --- a/tests/__snapshots__/microqrcode-1/9/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/9/fast-180.json @@ -5,7 +5,7 @@ "bytes": "04798bc", "bytesECI": "74915e9", "text": "ezik", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/9/fast-270.json b/tests/__snapshots__/microqrcode-1/9/fast-270.json index fff461c1..1d7ec56a 100644 --- a/tests/__snapshots__/microqrcode-1/9/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/9/fast-270.json @@ -5,7 +5,7 @@ "bytes": "04798bc", "bytesECI": "74915e9", "text": "ezik", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/9/fast-90.json b/tests/__snapshots__/microqrcode-1/9/fast-90.json index 9209f40e..85afff4a 100644 --- a/tests/__snapshots__/microqrcode-1/9/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/9/fast-90.json @@ -5,7 +5,7 @@ "bytes": "04798bc", "bytesECI": "74915e9", "text": "ezik", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/9/pure-0.json b/tests/__snapshots__/microqrcode-1/9/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/microqrcode-1/9/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/9/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/microqrcode-1/9/slow-0.json b/tests/__snapshots__/microqrcode-1/9/slow-0.json index c9f91fed..e544a97b 100644 --- a/tests/__snapshots__/microqrcode-1/9/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/9/slow-0.json @@ -5,7 +5,7 @@ "bytes": "04798bc", "bytesECI": "74915e9", "text": "ezik", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/9/slow-180.json b/tests/__snapshots__/microqrcode-1/9/slow-180.json index 85415e61..3e3978e8 100644 --- a/tests/__snapshots__/microqrcode-1/9/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/9/slow-180.json @@ -5,7 +5,7 @@ "bytes": "04798bc", "bytesECI": "74915e9", "text": "ezik", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/9/slow-270.json b/tests/__snapshots__/microqrcode-1/9/slow-270.json index fff461c1..1d7ec56a 100644 --- a/tests/__snapshots__/microqrcode-1/9/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/9/slow-270.json @@ -5,7 +5,7 @@ "bytes": "04798bc", "bytesECI": "74915e9", "text": "ezik", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/9/slow-90.json b/tests/__snapshots__/microqrcode-1/9/slow-90.json index 9209f40e..85afff4a 100644 --- a/tests/__snapshots__/microqrcode-1/9/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/9/slow-90.json @@ -5,7 +5,7 @@ "bytes": "04798bc", "bytesECI": "74915e9", "text": "ezik", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-0.json b/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-0.json index cc7f7444..e64039d8 100644 --- a/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-180.json b/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-180.json index 7fb842ed..0289fb17 100644 --- a/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-270.json b/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-270.json index 41dd8378..52723211 100644 --- a/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-270.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-90.json b/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-90.json index 3399d49f..c912dd0e 100644 --- a/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/M1-Numeric/fast-90.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M1-Numeric/pure-0.json b/tests/__snapshots__/microqrcode-1/M1-Numeric/pure-0.json index 70b5815b..26a1aeed 100644 --- a/tests/__snapshots__/microqrcode-1/M1-Numeric/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/M1-Numeric/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-0.json b/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-0.json index cc7f7444..e64039d8 100644 --- a/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-180.json b/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-180.json index 7fb842ed..0289fb17 100644 --- a/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-270.json b/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-270.json index 41dd8378..52723211 100644 --- a/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-270.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-90.json b/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-90.json index 3399d49f..c912dd0e 100644 --- a/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/M1-Numeric/slow-90.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-0.json b/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-0.json index b2d5095e..e4765b99 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b5d4045", "bytesECI": "a2bb5f7", "text": "ABC", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-180.json b/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-180.json index 024fc146..21b7b13f 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b5d4045", "bytesECI": "a2bb5f7", "text": "ABC", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-270.json b/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-270.json index 5f251357..0a21c1aa 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-270.json @@ -5,7 +5,7 @@ "bytes": "b5d4045", "bytesECI": "a2bb5f7", "text": "ABC", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-90.json b/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-90.json index c6891c14..8d231e29 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/M2-Alpha/fast-90.json @@ -5,7 +5,7 @@ "bytes": "b5d4045", "bytesECI": "a2bb5f7", "text": "ABC", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Alpha/pure-0.json b/tests/__snapshots__/microqrcode-1/M2-Alpha/pure-0.json index 2f0a154f..50b83c3e 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Alpha/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/M2-Alpha/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b5d4045", "bytesECI": "a2bb5f7", "text": "ABC", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-0.json b/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-0.json index b2d5095e..e4765b99 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b5d4045", "bytesECI": "a2bb5f7", "text": "ABC", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-180.json b/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-180.json index 024fc146..21b7b13f 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b5d4045", "bytesECI": "a2bb5f7", "text": "ABC", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-270.json b/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-270.json index 5f251357..0a21c1aa 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-270.json @@ -5,7 +5,7 @@ "bytes": "b5d4045", "bytesECI": "a2bb5f7", "text": "ABC", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-90.json b/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-90.json index c6891c14..8d231e29 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/M2-Alpha/slow-90.json @@ -5,7 +5,7 @@ "bytes": "b5d4045", "bytesECI": "a2bb5f7", "text": "ABC", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-0.json b/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-0.json index 3f0b5e8e..a0d53fde 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-180.json b/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-180.json index 38603206..2549eae1 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-270.json b/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-270.json index fbad4a91..9d72a732 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-90.json b/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-90.json index 550e6a75..6de90700 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/M2-Numeric/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Numeric/pure-0.json b/tests/__snapshots__/microqrcode-1/M2-Numeric/pure-0.json index 09018c9a..6a4d82a5 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Numeric/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/M2-Numeric/pure-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-0.json b/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-0.json index 3f0b5e8e..a0d53fde 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-180.json b/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-180.json index 38603206..2549eae1 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-270.json b/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-270.json index fbad4a91..9d72a732 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-90.json b/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-90.json index 550e6a75..6de90700 100644 --- a/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/M2-Numeric/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Binary/fast-0.json b/tests/__snapshots__/microqrcode-1/M3-Binary/fast-0.json index 739cc8a6..a1006172 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Binary/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/M3-Binary/fast-0.json @@ -5,7 +5,7 @@ "bytes": "03b680e", "bytesECI": "6d45656", "text": "E=mc²", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Binary/fast-180.json b/tests/__snapshots__/microqrcode-1/M3-Binary/fast-180.json index e43aeb8d..12dac48d 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Binary/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/M3-Binary/fast-180.json @@ -5,7 +5,7 @@ "bytes": "03b680e", "bytesECI": "6d45656", "text": "E=mc²", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Binary/fast-270.json b/tests/__snapshots__/microqrcode-1/M3-Binary/fast-270.json index ce48f89d..e3c923c9 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Binary/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/M3-Binary/fast-270.json @@ -5,7 +5,7 @@ "bytes": "03b680e", "bytesECI": "6d45656", "text": "E=mc²", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Binary/fast-90.json b/tests/__snapshots__/microqrcode-1/M3-Binary/fast-90.json index 160270a8..a39a2500 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Binary/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/M3-Binary/fast-90.json @@ -5,7 +5,7 @@ "bytes": "03b680e", "bytesECI": "6d45656", "text": "E=mc²", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Binary/pure-0.json b/tests/__snapshots__/microqrcode-1/M3-Binary/pure-0.json index d8c36582..a0d7d2f2 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Binary/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/M3-Binary/pure-0.json @@ -5,7 +5,7 @@ "bytes": "03b680e", "bytesECI": "6d45656", "text": "E=mc²", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Binary/slow-0.json b/tests/__snapshots__/microqrcode-1/M3-Binary/slow-0.json index 739cc8a6..a1006172 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Binary/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/M3-Binary/slow-0.json @@ -5,7 +5,7 @@ "bytes": "03b680e", "bytesECI": "6d45656", "text": "E=mc²", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Binary/slow-180.json b/tests/__snapshots__/microqrcode-1/M3-Binary/slow-180.json index e43aeb8d..12dac48d 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Binary/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/M3-Binary/slow-180.json @@ -5,7 +5,7 @@ "bytes": "03b680e", "bytesECI": "6d45656", "text": "E=mc²", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Binary/slow-270.json b/tests/__snapshots__/microqrcode-1/M3-Binary/slow-270.json index ce48f89d..e3c923c9 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Binary/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/M3-Binary/slow-270.json @@ -5,7 +5,7 @@ "bytes": "03b680e", "bytesECI": "6d45656", "text": "E=mc²", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Binary/slow-90.json b/tests/__snapshots__/microqrcode-1/M3-Binary/slow-90.json index 160270a8..a39a2500 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Binary/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/M3-Binary/slow-90.json @@ -5,7 +5,7 @@ "bytes": "03b680e", "bytesECI": "6d45656", "text": "E=mc²", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-0.json b/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-0.json index da3cc7e0..a0374e97 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d828beb", "bytesECI": "f3fcdda", "text": "誠", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-180.json b/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-180.json index 551ad762..b0d58542 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d828beb", "bytesECI": "f3fcdda", "text": "誠", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-270.json b/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-270.json index 1e7ffe23..889d8628 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-270.json @@ -5,7 +5,7 @@ "bytes": "d828beb", "bytesECI": "f3fcdda", "text": "誠", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-90.json b/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-90.json index ebaf16b9..a43094eb 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/M3-Kanji/fast-90.json @@ -5,7 +5,7 @@ "bytes": "d828beb", "bytesECI": "f3fcdda", "text": "誠", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Kanji/pure-0.json b/tests/__snapshots__/microqrcode-1/M3-Kanji/pure-0.json index de66700f..b7974af5 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Kanji/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/M3-Kanji/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d828beb", "bytesECI": "f3fcdda", "text": "誠", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-0.json b/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-0.json index da3cc7e0..a0374e97 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d828beb", "bytesECI": "f3fcdda", "text": "誠", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-180.json b/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-180.json index 551ad762..b0d58542 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d828beb", "bytesECI": "f3fcdda", "text": "誠", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-270.json b/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-270.json index 1e7ffe23..889d8628 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d828beb", "bytesECI": "f3fcdda", "text": "誠", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-90.json b/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-90.json index ebaf16b9..a43094eb 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/M3-Kanji/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d828beb", "bytesECI": "f3fcdda", "text": "誠", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-0.json b/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-0.json index 90e3c50f..640ddcb8 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2a33f4a", "bytesECI": "0c1c315", "text": "1234 ABCD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-180.json b/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-180.json index 30fef94e..55cdcf48 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2a33f4a", "bytesECI": "0c1c315", "text": "1234 ABCD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-270.json b/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-270.json index 31bf94c9..0afb0f93 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-270.json @@ -5,7 +5,7 @@ "bytes": "2a33f4a", "bytesECI": "0c1c315", "text": "1234 ABCD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-90.json b/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-90.json index 7c3b6675..e99ef8c0 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/M3-Mixed/fast-90.json @@ -5,7 +5,7 @@ "bytes": "2a33f4a", "bytesECI": "0c1c315", "text": "1234 ABCD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Mixed/pure-0.json b/tests/__snapshots__/microqrcode-1/M3-Mixed/pure-0.json index 07ea20a0..94a97eeb 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Mixed/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/M3-Mixed/pure-0.json @@ -5,7 +5,7 @@ "bytes": "2a33f4a", "bytesECI": "0c1c315", "text": "1234 ABCD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-0.json b/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-0.json index 90e3c50f..640ddcb8 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2a33f4a", "bytesECI": "0c1c315", "text": "1234 ABCD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-180.json b/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-180.json index 30fef94e..55cdcf48 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2a33f4a", "bytesECI": "0c1c315", "text": "1234 ABCD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-270.json b/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-270.json index 31bf94c9..0afb0f93 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-270.json @@ -5,7 +5,7 @@ "bytes": "2a33f4a", "bytesECI": "0c1c315", "text": "1234 ABCD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-90.json b/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-90.json index 7c3b6675..e99ef8c0 100644 --- a/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/M3-Mixed/slow-90.json @@ -5,7 +5,7 @@ "bytes": "2a33f4a", "bytesECI": "0c1c315", "text": "1234 ABCD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Binary/fast-0.json b/tests/__snapshots__/microqrcode-1/M4-Binary/fast-0.json index 32fef91a..423a5bdf 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Binary/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/M4-Binary/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e3433eb", "bytesECI": "3b3e66b", "text": "!\"§$%&/()=?`", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Binary/fast-180.json b/tests/__snapshots__/microqrcode-1/M4-Binary/fast-180.json index f33366c7..5636781b 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Binary/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/M4-Binary/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e3433eb", "bytesECI": "3b3e66b", "text": "!\"§$%&/()=?`", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Binary/fast-270.json b/tests/__snapshots__/microqrcode-1/M4-Binary/fast-270.json index 709b0242..66c775b4 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Binary/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/M4-Binary/fast-270.json @@ -5,7 +5,7 @@ "bytes": "e3433eb", "bytesECI": "3b3e66b", "text": "!\"§$%&/()=?`", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Binary/fast-90.json b/tests/__snapshots__/microqrcode-1/M4-Binary/fast-90.json index e452af98..5afbb3ce 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Binary/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/M4-Binary/fast-90.json @@ -5,7 +5,7 @@ "bytes": "e3433eb", "bytesECI": "3b3e66b", "text": "!\"§$%&/()=?`", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Binary/pure-0.json b/tests/__snapshots__/microqrcode-1/M4-Binary/pure-0.json index 233201e6..099c23b1 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Binary/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/M4-Binary/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3433eb", "bytesECI": "3b3e66b", "text": "!\"§$%&/()=?`", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Binary/slow-0.json b/tests/__snapshots__/microqrcode-1/M4-Binary/slow-0.json index 32fef91a..423a5bdf 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Binary/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/M4-Binary/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e3433eb", "bytesECI": "3b3e66b", "text": "!\"§$%&/()=?`", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Binary/slow-180.json b/tests/__snapshots__/microqrcode-1/M4-Binary/slow-180.json index f33366c7..5636781b 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Binary/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/M4-Binary/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e3433eb", "bytesECI": "3b3e66b", "text": "!\"§$%&/()=?`", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Binary/slow-270.json b/tests/__snapshots__/microqrcode-1/M4-Binary/slow-270.json index 709b0242..66c775b4 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Binary/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/M4-Binary/slow-270.json @@ -5,7 +5,7 @@ "bytes": "e3433eb", "bytesECI": "3b3e66b", "text": "!\"§$%&/()=?`", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Binary/slow-90.json b/tests/__snapshots__/microqrcode-1/M4-Binary/slow-90.json index e452af98..5afbb3ce 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Binary/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/M4-Binary/slow-90.json @@ -5,7 +5,7 @@ "bytes": "e3433eb", "bytesECI": "3b3e66b", "text": "!\"§$%&/()=?`", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-0.json b/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-0.json index 0ad5febf..4ea4170a 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-0.json @@ -5,7 +5,7 @@ "bytes": "de49f6f", "bytesECI": "513809b", "text": "1234 ABCD abcd", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-180.json b/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-180.json index 63feb157..c615d05f 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-180.json @@ -5,7 +5,7 @@ "bytes": "de49f6f", "bytesECI": "513809b", "text": "1234 ABCD abcd", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-270.json b/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-270.json index 5a4f5d80..013cfc50 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-270.json @@ -5,7 +5,7 @@ "bytes": "de49f6f", "bytesECI": "513809b", "text": "1234 ABCD abcd", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-90.json b/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-90.json index 2a9a61fb..6aae2047 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/M4-Mixed/fast-90.json @@ -5,7 +5,7 @@ "bytes": "de49f6f", "bytesECI": "513809b", "text": "1234 ABCD abcd", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Mixed/pure-0.json b/tests/__snapshots__/microqrcode-1/M4-Mixed/pure-0.json index 47f6e684..aaf7dbe2 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Mixed/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/M4-Mixed/pure-0.json @@ -5,7 +5,7 @@ "bytes": "de49f6f", "bytesECI": "513809b", "text": "1234 ABCD abcd", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-0.json b/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-0.json index 0ad5febf..4ea4170a 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-0.json @@ -5,7 +5,7 @@ "bytes": "de49f6f", "bytesECI": "513809b", "text": "1234 ABCD abcd", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-180.json b/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-180.json index 63feb157..c615d05f 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-180.json @@ -5,7 +5,7 @@ "bytes": "de49f6f", "bytesECI": "513809b", "text": "1234 ABCD abcd", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-270.json b/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-270.json index 5a4f5d80..013cfc50 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-270.json @@ -5,7 +5,7 @@ "bytes": "de49f6f", "bytesECI": "513809b", "text": "1234 ABCD abcd", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-90.json b/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-90.json index 2a9a61fb..6aae2047 100644 --- a/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/M4-Mixed/slow-90.json @@ -5,7 +5,7 @@ "bytes": "de49f6f", "bytesECI": "513809b", "text": "1234 ABCD abcd", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/fast-0.json b/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/fast-0.json index 50abc292..ce7a6d23 100644 --- a/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/fast-0.json @@ -5,7 +5,7 @@ "bytes": "19280d8", "bytesECI": "c022dec", "text": "Micro QR Code", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/fast-90.json b/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/fast-90.json index 552f5668..b302bb7b 100644 --- a/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/fast-90.json @@ -5,7 +5,7 @@ "bytes": "19280d8", "bytesECI": "c022dec", "text": "Micro QR Code", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/pure-0.json b/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/slow-0.json b/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/slow-0.json index 50abc292..ce7a6d23 100644 --- a/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/slow-0.json @@ -5,7 +5,7 @@ "bytes": "19280d8", "bytesECI": "c022dec", "text": "Micro QR Code", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/slow-90.json b/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/slow-90.json index 552f5668..b302bb7b 100644 --- a/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/MQR-needs-br-update/slow-90.json @@ -5,7 +5,7 @@ "bytes": "19280d8", "bytesECI": "c022dec", "text": "Micro QR Code", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-0.json b/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-0.json index 6694a5b9..02ad8d98 100644 --- a/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-0.json +++ b/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-180.json b/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-180.json index cd36d908..2630acde 100644 --- a/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-180.json +++ b/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-270.json b/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-270.json index fc84f643..f172d450 100644 --- a/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-270.json +++ b/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-270.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-90.json b/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-90.json index 1989e0b1..054e8ab8 100644 --- a/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-90.json +++ b/tests/__snapshots__/microqrcode-1/NoQuietZone/fast-90.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/NoQuietZone/pure-0.json b/tests/__snapshots__/microqrcode-1/NoQuietZone/pure-0.json index 65efc9b9..bceaa868 100644 --- a/tests/__snapshots__/microqrcode-1/NoQuietZone/pure-0.json +++ b/tests/__snapshots__/microqrcode-1/NoQuietZone/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-0.json b/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-0.json index 6694a5b9..02ad8d98 100644 --- a/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-0.json +++ b/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-180.json b/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-180.json index cd36d908..2630acde 100644 --- a/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-180.json +++ b/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-270.json b/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-270.json index fc84f643..f172d450 100644 --- a/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-270.json +++ b/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-270.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-90.json b/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-90.json index 1989e0b1..054e8ab8 100644 --- a/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-90.json +++ b/tests/__snapshots__/microqrcode-1/NoQuietZone/slow-90.json @@ -5,7 +5,7 @@ "bytes": "5994471", "bytesECI": "37af69d", "text": "12345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/pdf417-1/01/fast-0.json b/tests/__snapshots__/pdf417-1/01/fast-0.json index 2fc7e762..9143516d 100644 --- a/tests/__snapshots__/pdf417-1/01/fast-0.json +++ b/tests/__snapshots__/pdf417-1/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-1/01/fast-180.json b/tests/__snapshots__/pdf417-1/01/fast-180.json index a42be877..ebdbd9b3 100644 --- a/tests/__snapshots__/pdf417-1/01/fast-180.json +++ b/tests/__snapshots__/pdf417-1/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-1/01/pure-0.json b/tests/__snapshots__/pdf417-1/01/pure-0.json index 836a3a9b..40cc6682 100644 --- a/tests/__snapshots__/pdf417-1/01/pure-0.json +++ b/tests/__snapshots__/pdf417-1/01/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-1/01/slow-0.json b/tests/__snapshots__/pdf417-1/01/slow-0.json index 2fc7e762..9143516d 100644 --- a/tests/__snapshots__/pdf417-1/01/slow-0.json +++ b/tests/__snapshots__/pdf417-1/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-1/01/slow-180.json b/tests/__snapshots__/pdf417-1/01/slow-180.json index a42be877..ebdbd9b3 100644 --- a/tests/__snapshots__/pdf417-1/01/slow-180.json +++ b/tests/__snapshots__/pdf417-1/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-1/01/slow-270.json b/tests/__snapshots__/pdf417-1/01/slow-270.json index 3efeb228..ac2b9b94 100644 --- a/tests/__snapshots__/pdf417-1/01/slow-270.json +++ b/tests/__snapshots__/pdf417-1/01/slow-270.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-1/01/slow-90.json b/tests/__snapshots__/pdf417-1/01/slow-90.json index fbe2bf9e..c530a5ba 100644 --- a/tests/__snapshots__/pdf417-1/01/slow-90.json +++ b/tests/__snapshots__/pdf417-1/01/slow-90.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-1/02/fast-0.json b/tests/__snapshots__/pdf417-1/02/fast-0.json index 1a25f674..03f85155 100644 --- a/tests/__snapshots__/pdf417-1/02/fast-0.json +++ b/tests/__snapshots__/pdf417-1/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ef797c8", "bytesECI": "01cb8c1", "text": "12345678", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/02/fast-180.json b/tests/__snapshots__/pdf417-1/02/fast-180.json index 077206fd..747d5724 100644 --- a/tests/__snapshots__/pdf417-1/02/fast-180.json +++ b/tests/__snapshots__/pdf417-1/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ef797c8", "bytesECI": "01cb8c1", "text": "12345678", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/02/pure-0.json b/tests/__snapshots__/pdf417-1/02/pure-0.json index 8b02ca72..1d388f38 100644 --- a/tests/__snapshots__/pdf417-1/02/pure-0.json +++ b/tests/__snapshots__/pdf417-1/02/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ef797c8", "bytesECI": "01cb8c1", "text": "12345678", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/02/slow-0.json b/tests/__snapshots__/pdf417-1/02/slow-0.json index 1a25f674..03f85155 100644 --- a/tests/__snapshots__/pdf417-1/02/slow-0.json +++ b/tests/__snapshots__/pdf417-1/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ef797c8", "bytesECI": "01cb8c1", "text": "12345678", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/02/slow-180.json b/tests/__snapshots__/pdf417-1/02/slow-180.json index 077206fd..747d5724 100644 --- a/tests/__snapshots__/pdf417-1/02/slow-180.json +++ b/tests/__snapshots__/pdf417-1/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ef797c8", "bytesECI": "01cb8c1", "text": "12345678", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/02/slow-270.json b/tests/__snapshots__/pdf417-1/02/slow-270.json index f5cfb722..1f04fbcd 100644 --- a/tests/__snapshots__/pdf417-1/02/slow-270.json +++ b/tests/__snapshots__/pdf417-1/02/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ef797c8", "bytesECI": "01cb8c1", "text": "12345678", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/02/slow-90.json b/tests/__snapshots__/pdf417-1/02/slow-90.json index f90f18a1..a75aea51 100644 --- a/tests/__snapshots__/pdf417-1/02/slow-90.json +++ b/tests/__snapshots__/pdf417-1/02/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ef797c8", "bytesECI": "01cb8c1", "text": "12345678", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/03-aliased/fast-0.json b/tests/__snapshots__/pdf417-1/03-aliased/fast-0.json index 27600ab7..3b9770b0 100644 --- a/tests/__snapshots__/pdf417-1/03-aliased/fast-0.json +++ b/tests/__snapshots__/pdf417-1/03-aliased/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-aliased/fast-180.json b/tests/__snapshots__/pdf417-1/03-aliased/fast-180.json index 9c99f5f3..6b48be1c 100644 --- a/tests/__snapshots__/pdf417-1/03-aliased/fast-180.json +++ b/tests/__snapshots__/pdf417-1/03-aliased/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-aliased/pure-0.json b/tests/__snapshots__/pdf417-1/03-aliased/pure-0.json index 27600ab7..3b9770b0 100644 --- a/tests/__snapshots__/pdf417-1/03-aliased/pure-0.json +++ b/tests/__snapshots__/pdf417-1/03-aliased/pure-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-aliased/slow-0.json b/tests/__snapshots__/pdf417-1/03-aliased/slow-0.json index 27600ab7..3b9770b0 100644 --- a/tests/__snapshots__/pdf417-1/03-aliased/slow-0.json +++ b/tests/__snapshots__/pdf417-1/03-aliased/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-aliased/slow-180.json b/tests/__snapshots__/pdf417-1/03-aliased/slow-180.json index 9c99f5f3..6b48be1c 100644 --- a/tests/__snapshots__/pdf417-1/03-aliased/slow-180.json +++ b/tests/__snapshots__/pdf417-1/03-aliased/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-aliased/slow-270.json b/tests/__snapshots__/pdf417-1/03-aliased/slow-270.json index ab2f167a..a98bc410 100644 --- a/tests/__snapshots__/pdf417-1/03-aliased/slow-270.json +++ b/tests/__snapshots__/pdf417-1/03-aliased/slow-270.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-aliased/slow-90.json b/tests/__snapshots__/pdf417-1/03-aliased/slow-90.json index 2c19a43d..c42f7d04 100644 --- a/tests/__snapshots__/pdf417-1/03-aliased/slow-90.json +++ b/tests/__snapshots__/pdf417-1/03-aliased/slow-90.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-bot/fast-0.json b/tests/__snapshots__/pdf417-1/03-cut-bot/fast-0.json index 6490dfde..37ea8bb2 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-bot/fast-0.json +++ b/tests/__snapshots__/pdf417-1/03-cut-bot/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-bot/fast-180.json b/tests/__snapshots__/pdf417-1/03-cut-bot/fast-180.json index 91a0964c..80cc0359 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-bot/fast-180.json +++ b/tests/__snapshots__/pdf417-1/03-cut-bot/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-bot/pure-0.json b/tests/__snapshots__/pdf417-1/03-cut-bot/pure-0.json index 4bce0cff..5d47d4bf 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-bot/pure-0.json +++ b/tests/__snapshots__/pdf417-1/03-cut-bot/pure-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-bot/slow-0.json b/tests/__snapshots__/pdf417-1/03-cut-bot/slow-0.json index 6490dfde..37ea8bb2 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-bot/slow-0.json +++ b/tests/__snapshots__/pdf417-1/03-cut-bot/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-bot/slow-180.json b/tests/__snapshots__/pdf417-1/03-cut-bot/slow-180.json index 91a0964c..80cc0359 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-bot/slow-180.json +++ b/tests/__snapshots__/pdf417-1/03-cut-bot/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-bot/slow-270.json b/tests/__snapshots__/pdf417-1/03-cut-bot/slow-270.json index b91e4ba6..ae85e42a 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-bot/slow-270.json +++ b/tests/__snapshots__/pdf417-1/03-cut-bot/slow-270.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-bot/slow-90.json b/tests/__snapshots__/pdf417-1/03-cut-bot/slow-90.json index a814b383..ed04f050 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-bot/slow-90.json +++ b/tests/__snapshots__/pdf417-1/03-cut-bot/slow-90.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-top/fast-0.json b/tests/__snapshots__/pdf417-1/03-cut-top/fast-0.json index ee7d2f00..b61fc9ba 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-top/fast-0.json +++ b/tests/__snapshots__/pdf417-1/03-cut-top/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-top/fast-180.json b/tests/__snapshots__/pdf417-1/03-cut-top/fast-180.json index 0a71a91c..ac6fc8eb 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-top/fast-180.json +++ b/tests/__snapshots__/pdf417-1/03-cut-top/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-top/pure-0.json b/tests/__snapshots__/pdf417-1/03-cut-top/pure-0.json index d101bfdb..da2ed045 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-top/pure-0.json +++ b/tests/__snapshots__/pdf417-1/03-cut-top/pure-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-top/slow-0.json b/tests/__snapshots__/pdf417-1/03-cut-top/slow-0.json index ee7d2f00..b61fc9ba 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-top/slow-0.json +++ b/tests/__snapshots__/pdf417-1/03-cut-top/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-top/slow-180.json b/tests/__snapshots__/pdf417-1/03-cut-top/slow-180.json index 0a71a91c..ac6fc8eb 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-top/slow-180.json +++ b/tests/__snapshots__/pdf417-1/03-cut-top/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-top/slow-270.json b/tests/__snapshots__/pdf417-1/03-cut-top/slow-270.json index 54523567..7ae3adbf 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-top/slow-270.json +++ b/tests/__snapshots__/pdf417-1/03-cut-top/slow-270.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-cut-top/slow-90.json b/tests/__snapshots__/pdf417-1/03-cut-top/slow-90.json index 54bdcaf4..e4996ebf 100644 --- a/tests/__snapshots__/pdf417-1/03-cut-top/slow-90.json +++ b/tests/__snapshots__/pdf417-1/03-cut-top/slow-90.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-flipped/fast-0.json b/tests/__snapshots__/pdf417-1/03-flipped/fast-0.json index d28c12ed..f200fa98 100644 --- a/tests/__snapshots__/pdf417-1/03-flipped/fast-0.json +++ b/tests/__snapshots__/pdf417-1/03-flipped/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-flipped/fast-180.json b/tests/__snapshots__/pdf417-1/03-flipped/fast-180.json index 001abf30..6d098508 100644 --- a/tests/__snapshots__/pdf417-1/03-flipped/fast-180.json +++ b/tests/__snapshots__/pdf417-1/03-flipped/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-flipped/pure-0.json b/tests/__snapshots__/pdf417-1/03-flipped/pure-0.json index 7a6eceb0..cd065245 100644 --- a/tests/__snapshots__/pdf417-1/03-flipped/pure-0.json +++ b/tests/__snapshots__/pdf417-1/03-flipped/pure-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-flipped/slow-0.json b/tests/__snapshots__/pdf417-1/03-flipped/slow-0.json index d28c12ed..f200fa98 100644 --- a/tests/__snapshots__/pdf417-1/03-flipped/slow-0.json +++ b/tests/__snapshots__/pdf417-1/03-flipped/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-flipped/slow-180.json b/tests/__snapshots__/pdf417-1/03-flipped/slow-180.json index 001abf30..6d098508 100644 --- a/tests/__snapshots__/pdf417-1/03-flipped/slow-180.json +++ b/tests/__snapshots__/pdf417-1/03-flipped/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-flipped/slow-270.json b/tests/__snapshots__/pdf417-1/03-flipped/slow-270.json index 8d73da7c..3d275fb5 100644 --- a/tests/__snapshots__/pdf417-1/03-flipped/slow-270.json +++ b/tests/__snapshots__/pdf417-1/03-flipped/slow-270.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-flipped/slow-90.json b/tests/__snapshots__/pdf417-1/03-flipped/slow-90.json index b2392b2c..4307afec 100644 --- a/tests/__snapshots__/pdf417-1/03-flipped/slow-90.json +++ b/tests/__snapshots__/pdf417-1/03-flipped/slow-90.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-rot90/fast-270.json b/tests/__snapshots__/pdf417-1/03-rot90/fast-270.json index a9ea9e96..0505a9ed 100644 --- a/tests/__snapshots__/pdf417-1/03-rot90/fast-270.json +++ b/tests/__snapshots__/pdf417-1/03-rot90/fast-270.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-rot90/fast-90.json b/tests/__snapshots__/pdf417-1/03-rot90/fast-90.json index 985a1c22..54929773 100644 --- a/tests/__snapshots__/pdf417-1/03-rot90/fast-90.json +++ b/tests/__snapshots__/pdf417-1/03-rot90/fast-90.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-rot90/pure-0.json b/tests/__snapshots__/pdf417-1/03-rot90/pure-0.json index 49e0edae..05e6aaeb 100644 --- a/tests/__snapshots__/pdf417-1/03-rot90/pure-0.json +++ b/tests/__snapshots__/pdf417-1/03-rot90/pure-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-rot90/slow-0.json b/tests/__snapshots__/pdf417-1/03-rot90/slow-0.json index e1186228..2238540b 100644 --- a/tests/__snapshots__/pdf417-1/03-rot90/slow-0.json +++ b/tests/__snapshots__/pdf417-1/03-rot90/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-rot90/slow-180.json b/tests/__snapshots__/pdf417-1/03-rot90/slow-180.json index 088bf431..c27eeaa7 100644 --- a/tests/__snapshots__/pdf417-1/03-rot90/slow-180.json +++ b/tests/__snapshots__/pdf417-1/03-rot90/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-rot90/slow-270.json b/tests/__snapshots__/pdf417-1/03-rot90/slow-270.json index a9ea9e96..0505a9ed 100644 --- a/tests/__snapshots__/pdf417-1/03-rot90/slow-270.json +++ b/tests/__snapshots__/pdf417-1/03-rot90/slow-270.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03-rot90/slow-90.json b/tests/__snapshots__/pdf417-1/03-rot90/slow-90.json index 985a1c22..54929773 100644 --- a/tests/__snapshots__/pdf417-1/03-rot90/slow-90.json +++ b/tests/__snapshots__/pdf417-1/03-rot90/slow-90.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03/fast-0.json b/tests/__snapshots__/pdf417-1/03/fast-0.json index 985a1c22..54929773 100644 --- a/tests/__snapshots__/pdf417-1/03/fast-0.json +++ b/tests/__snapshots__/pdf417-1/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03/fast-180.json b/tests/__snapshots__/pdf417-1/03/fast-180.json index a9ea9e96..0505a9ed 100644 --- a/tests/__snapshots__/pdf417-1/03/fast-180.json +++ b/tests/__snapshots__/pdf417-1/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03/pure-0.json b/tests/__snapshots__/pdf417-1/03/pure-0.json index a95f9f49..96bea587 100644 --- a/tests/__snapshots__/pdf417-1/03/pure-0.json +++ b/tests/__snapshots__/pdf417-1/03/pure-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03/slow-0.json b/tests/__snapshots__/pdf417-1/03/slow-0.json index 985a1c22..54929773 100644 --- a/tests/__snapshots__/pdf417-1/03/slow-0.json +++ b/tests/__snapshots__/pdf417-1/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03/slow-180.json b/tests/__snapshots__/pdf417-1/03/slow-180.json index a9ea9e96..0505a9ed 100644 --- a/tests/__snapshots__/pdf417-1/03/slow-180.json +++ b/tests/__snapshots__/pdf417-1/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03/slow-270.json b/tests/__snapshots__/pdf417-1/03/slow-270.json index e1186228..2238540b 100644 --- a/tests/__snapshots__/pdf417-1/03/slow-270.json +++ b/tests/__snapshots__/pdf417-1/03/slow-270.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/03/slow-90.json b/tests/__snapshots__/pdf417-1/03/slow-90.json index 088bf431..c27eeaa7 100644 --- a/tests/__snapshots__/pdf417-1/03/slow-90.json +++ b/tests/__snapshots__/pdf417-1/03/slow-90.json @@ -5,7 +5,7 @@ "bytes": "7342734", "bytesECI": "3d44969", "text": "ActiveBarcode", - "eccLevel": "47%", + "ecLevel": "47%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "47%" } diff --git a/tests/__snapshots__/pdf417-1/04/fast-0.json b/tests/__snapshots__/pdf417-1/04/fast-0.json index 8abfb5e7..0296271d 100644 --- a/tests/__snapshots__/pdf417-1/04/fast-0.json +++ b/tests/__snapshots__/pdf417-1/04/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3fd035d", "bytesECI": "23d0585", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "23%", + "ecLevel": "23%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "23%" } diff --git a/tests/__snapshots__/pdf417-1/04/fast-180.json b/tests/__snapshots__/pdf417-1/04/fast-180.json index 28af89c3..5ee4cc4e 100644 --- a/tests/__snapshots__/pdf417-1/04/fast-180.json +++ b/tests/__snapshots__/pdf417-1/04/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3fd035d", "bytesECI": "23d0585", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "23%", + "ecLevel": "23%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "23%" } diff --git a/tests/__snapshots__/pdf417-1/04/pure-0.json b/tests/__snapshots__/pdf417-1/04/pure-0.json index ab7ac6df..4aff5b1c 100644 --- a/tests/__snapshots__/pdf417-1/04/pure-0.json +++ b/tests/__snapshots__/pdf417-1/04/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3fd035d", "bytesECI": "23d0585", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "23%", + "ecLevel": "23%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "23%" } diff --git a/tests/__snapshots__/pdf417-1/04/slow-0.json b/tests/__snapshots__/pdf417-1/04/slow-0.json index 8abfb5e7..0296271d 100644 --- a/tests/__snapshots__/pdf417-1/04/slow-0.json +++ b/tests/__snapshots__/pdf417-1/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3fd035d", "bytesECI": "23d0585", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "23%", + "ecLevel": "23%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "23%" } diff --git a/tests/__snapshots__/pdf417-1/04/slow-180.json b/tests/__snapshots__/pdf417-1/04/slow-180.json index 28af89c3..5ee4cc4e 100644 --- a/tests/__snapshots__/pdf417-1/04/slow-180.json +++ b/tests/__snapshots__/pdf417-1/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3fd035d", "bytesECI": "23d0585", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "23%", + "ecLevel": "23%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "23%" } diff --git a/tests/__snapshots__/pdf417-1/04/slow-270.json b/tests/__snapshots__/pdf417-1/04/slow-270.json index d1e09f01..95bc01d5 100644 --- a/tests/__snapshots__/pdf417-1/04/slow-270.json +++ b/tests/__snapshots__/pdf417-1/04/slow-270.json @@ -5,7 +5,7 @@ "bytes": "3fd035d", "bytesECI": "23d0585", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "23%", + "ecLevel": "23%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "23%" } diff --git a/tests/__snapshots__/pdf417-1/04/slow-90.json b/tests/__snapshots__/pdf417-1/04/slow-90.json index 3ef880b7..dc8a73a7 100644 --- a/tests/__snapshots__/pdf417-1/04/slow-90.json +++ b/tests/__snapshots__/pdf417-1/04/slow-90.json @@ -5,7 +5,7 @@ "bytes": "3fd035d", "bytesECI": "23d0585", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ", - "eccLevel": "23%", + "ecLevel": "23%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "23%" } diff --git a/tests/__snapshots__/pdf417-1/05/fast-0.json b/tests/__snapshots__/pdf417-1/05/fast-0.json index 7fff830e..843489ec 100644 --- a/tests/__snapshots__/pdf417-1/05/fast-0.json +++ b/tests/__snapshots__/pdf417-1/05/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2d7c1c5", "bytesECI": "1deabd4", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "21%", + "ecLevel": "21%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "21%" } diff --git a/tests/__snapshots__/pdf417-1/05/fast-180.json b/tests/__snapshots__/pdf417-1/05/fast-180.json index e57f32e8..6e8f29a8 100644 --- a/tests/__snapshots__/pdf417-1/05/fast-180.json +++ b/tests/__snapshots__/pdf417-1/05/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2d7c1c5", "bytesECI": "1deabd4", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "21%", + "ecLevel": "21%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "21%" } diff --git a/tests/__snapshots__/pdf417-1/05/pure-0.json b/tests/__snapshots__/pdf417-1/05/pure-0.json index ca6faf7c..4acc48cf 100644 --- a/tests/__snapshots__/pdf417-1/05/pure-0.json +++ b/tests/__snapshots__/pdf417-1/05/pure-0.json @@ -5,7 +5,7 @@ "bytes": "2d7c1c5", "bytesECI": "1deabd4", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "21%", + "ecLevel": "21%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "21%" } diff --git a/tests/__snapshots__/pdf417-1/05/slow-0.json b/tests/__snapshots__/pdf417-1/05/slow-0.json index 7fff830e..843489ec 100644 --- a/tests/__snapshots__/pdf417-1/05/slow-0.json +++ b/tests/__snapshots__/pdf417-1/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2d7c1c5", "bytesECI": "1deabd4", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "21%", + "ecLevel": "21%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "21%" } diff --git a/tests/__snapshots__/pdf417-1/05/slow-180.json b/tests/__snapshots__/pdf417-1/05/slow-180.json index e57f32e8..6e8f29a8 100644 --- a/tests/__snapshots__/pdf417-1/05/slow-180.json +++ b/tests/__snapshots__/pdf417-1/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2d7c1c5", "bytesECI": "1deabd4", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "21%", + "ecLevel": "21%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "21%" } diff --git a/tests/__snapshots__/pdf417-1/05/slow-270.json b/tests/__snapshots__/pdf417-1/05/slow-270.json index 1849e691..8c8fc411 100644 --- a/tests/__snapshots__/pdf417-1/05/slow-270.json +++ b/tests/__snapshots__/pdf417-1/05/slow-270.json @@ -5,7 +5,7 @@ "bytes": "2d7c1c5", "bytesECI": "1deabd4", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "21%", + "ecLevel": "21%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "21%" } diff --git a/tests/__snapshots__/pdf417-1/05/slow-90.json b/tests/__snapshots__/pdf417-1/05/slow-90.json index c1a0b8e0..f9315340 100644 --- a/tests/__snapshots__/pdf417-1/05/slow-90.json +++ b/tests/__snapshots__/pdf417-1/05/slow-90.json @@ -5,7 +5,7 @@ "bytes": "2d7c1c5", "bytesECI": "1deabd4", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "21%", + "ecLevel": "21%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "21%" } diff --git a/tests/__snapshots__/pdf417-1/06/fast-0.json b/tests/__snapshots__/pdf417-1/06/fast-0.json index 33fae820..c98d4962 100644 --- a/tests/__snapshots__/pdf417-1/06/fast-0.json +++ b/tests/__snapshots__/pdf417-1/06/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0cbb651", "bytesECI": "dc9fd02", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/06/fast-180.json b/tests/__snapshots__/pdf417-1/06/fast-180.json index ea7f9e02..74345bc7 100644 --- a/tests/__snapshots__/pdf417-1/06/fast-180.json +++ b/tests/__snapshots__/pdf417-1/06/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0cbb651", "bytesECI": "dc9fd02", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/06/pure-0.json b/tests/__snapshots__/pdf417-1/06/pure-0.json index 37a63ed6..7b93fe6b 100644 --- a/tests/__snapshots__/pdf417-1/06/pure-0.json +++ b/tests/__snapshots__/pdf417-1/06/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0cbb651", "bytesECI": "dc9fd02", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/06/slow-0.json b/tests/__snapshots__/pdf417-1/06/slow-0.json index 33fae820..c98d4962 100644 --- a/tests/__snapshots__/pdf417-1/06/slow-0.json +++ b/tests/__snapshots__/pdf417-1/06/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0cbb651", "bytesECI": "dc9fd02", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/06/slow-180.json b/tests/__snapshots__/pdf417-1/06/slow-180.json index ea7f9e02..74345bc7 100644 --- a/tests/__snapshots__/pdf417-1/06/slow-180.json +++ b/tests/__snapshots__/pdf417-1/06/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0cbb651", "bytesECI": "dc9fd02", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/06/slow-270.json b/tests/__snapshots__/pdf417-1/06/slow-270.json index 09f4aace..b027c153 100644 --- a/tests/__snapshots__/pdf417-1/06/slow-270.json +++ b/tests/__snapshots__/pdf417-1/06/slow-270.json @@ -5,7 +5,7 @@ "bytes": "0cbb651", "bytesECI": "dc9fd02", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/06/slow-90.json b/tests/__snapshots__/pdf417-1/06/slow-90.json index ace4be48..4ef93f91 100644 --- a/tests/__snapshots__/pdf417-1/06/slow-90.json +++ b/tests/__snapshots__/pdf417-1/06/slow-90.json @@ -5,7 +5,7 @@ "bytes": "0cbb651", "bytesECI": "dc9fd02", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/07/fast-0.json b/tests/__snapshots__/pdf417-1/07/fast-0.json index 7d60c58d..3a7ec012 100644 --- a/tests/__snapshots__/pdf417-1/07/fast-0.json +++ b/tests/__snapshots__/pdf417-1/07/fast-0.json @@ -5,7 +5,7 @@ "bytes": "300095f", "bytesECI": "91c8bc5", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/07/fast-180.json b/tests/__snapshots__/pdf417-1/07/fast-180.json index 7e4425fe..cc75c6f4 100644 --- a/tests/__snapshots__/pdf417-1/07/fast-180.json +++ b/tests/__snapshots__/pdf417-1/07/fast-180.json @@ -5,7 +5,7 @@ "bytes": "300095f", "bytesECI": "91c8bc5", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/07/pure-0.json b/tests/__snapshots__/pdf417-1/07/pure-0.json index ad771e9e..184e386f 100644 --- a/tests/__snapshots__/pdf417-1/07/pure-0.json +++ b/tests/__snapshots__/pdf417-1/07/pure-0.json @@ -5,7 +5,7 @@ "bytes": "300095f", "bytesECI": "91c8bc5", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/07/slow-0.json b/tests/__snapshots__/pdf417-1/07/slow-0.json index 7d60c58d..3a7ec012 100644 --- a/tests/__snapshots__/pdf417-1/07/slow-0.json +++ b/tests/__snapshots__/pdf417-1/07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "300095f", "bytesECI": "91c8bc5", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/07/slow-180.json b/tests/__snapshots__/pdf417-1/07/slow-180.json index 7e4425fe..cc75c6f4 100644 --- a/tests/__snapshots__/pdf417-1/07/slow-180.json +++ b/tests/__snapshots__/pdf417-1/07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "300095f", "bytesECI": "91c8bc5", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/07/slow-270.json b/tests/__snapshots__/pdf417-1/07/slow-270.json index 3d75f121..534cbae0 100644 --- a/tests/__snapshots__/pdf417-1/07/slow-270.json +++ b/tests/__snapshots__/pdf417-1/07/slow-270.json @@ -5,7 +5,7 @@ "bytes": "300095f", "bytesECI": "91c8bc5", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/07/slow-90.json b/tests/__snapshots__/pdf417-1/07/slow-90.json index 5b7b8dae..7ee21ee2 100644 --- a/tests/__snapshots__/pdf417-1/07/slow-90.json +++ b/tests/__snapshots__/pdf417-1/07/slow-90.json @@ -5,7 +5,7 @@ "bytes": "300095f", "bytesECI": "91c8bc5", "text": "-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-ActiveBarcode-ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890", - "eccLevel": "15%", + "ecLevel": "15%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "15%" } diff --git a/tests/__snapshots__/pdf417-1/09/fast-0.json b/tests/__snapshots__/pdf417-1/09/fast-0.json index d90bdc31..1ab2d214 100644 --- a/tests/__snapshots__/pdf417-1/09/fast-0.json +++ b/tests/__snapshots__/pdf417-1/09/fast-0.json @@ -5,7 +5,7 @@ "bytes": "506529b", "bytesECI": "ebbf91d", "text": "!!5/D??FZc'ÿm#F", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/09/fast-180.json b/tests/__snapshots__/pdf417-1/09/fast-180.json index 3d4faab2..b55c6d81 100644 --- a/tests/__snapshots__/pdf417-1/09/fast-180.json +++ b/tests/__snapshots__/pdf417-1/09/fast-180.json @@ -5,7 +5,7 @@ "bytes": "506529b", "bytesECI": "ebbf91d", "text": "!!5/D??FZc'ÿm#F", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/09/pure-0.json b/tests/__snapshots__/pdf417-1/09/pure-0.json index 019294e6..b7257df4 100644 --- a/tests/__snapshots__/pdf417-1/09/pure-0.json +++ b/tests/__snapshots__/pdf417-1/09/pure-0.json @@ -5,7 +5,7 @@ "bytes": "506529b", "bytesECI": "ebbf91d", "text": "!!5/D??FZc'ÿm#F", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/09/slow-0.json b/tests/__snapshots__/pdf417-1/09/slow-0.json index d90bdc31..1ab2d214 100644 --- a/tests/__snapshots__/pdf417-1/09/slow-0.json +++ b/tests/__snapshots__/pdf417-1/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "506529b", "bytesECI": "ebbf91d", "text": "!!5/D??FZc'ÿm#F", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/09/slow-180.json b/tests/__snapshots__/pdf417-1/09/slow-180.json index 3d4faab2..b55c6d81 100644 --- a/tests/__snapshots__/pdf417-1/09/slow-180.json +++ b/tests/__snapshots__/pdf417-1/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "506529b", "bytesECI": "ebbf91d", "text": "!!5/D??FZc'ÿm#F", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/09/slow-270.json b/tests/__snapshots__/pdf417-1/09/slow-270.json index 3e248df7..32ef89e8 100644 --- a/tests/__snapshots__/pdf417-1/09/slow-270.json +++ b/tests/__snapshots__/pdf417-1/09/slow-270.json @@ -5,7 +5,7 @@ "bytes": "506529b", "bytesECI": "ebbf91d", "text": "!!5/D??FZc'ÿm#F", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/09/slow-90.json b/tests/__snapshots__/pdf417-1/09/slow-90.json index 87a50712..70c0c4c0 100644 --- a/tests/__snapshots__/pdf417-1/09/slow-90.json +++ b/tests/__snapshots__/pdf417-1/09/slow-90.json @@ -5,7 +5,7 @@ "bytes": "506529b", "bytesECI": "ebbf91d", "text": "!!5/D??FZc'ÿm#F", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/10/fast-0.json b/tests/__snapshots__/pdf417-1/10/fast-0.json index dc1ebec1..76cda0f3 100644 --- a/tests/__snapshots__/pdf417-1/10/fast-0.json +++ b/tests/__snapshots__/pdf417-1/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3b80afa", "bytesECI": "a514bd7", "text": "PDF-417", - "eccLevel": "50%", + "ecLevel": "50%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "50%" } diff --git a/tests/__snapshots__/pdf417-1/10/fast-180.json b/tests/__snapshots__/pdf417-1/10/fast-180.json index de0078f6..c9320a5c 100644 --- a/tests/__snapshots__/pdf417-1/10/fast-180.json +++ b/tests/__snapshots__/pdf417-1/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3b80afa", "bytesECI": "a514bd7", "text": "PDF-417", - "eccLevel": "50%", + "ecLevel": "50%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "50%" } diff --git a/tests/__snapshots__/pdf417-1/10/pure-0.json b/tests/__snapshots__/pdf417-1/10/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/pdf417-1/10/pure-0.json +++ b/tests/__snapshots__/pdf417-1/10/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/pdf417-1/10/slow-0.json b/tests/__snapshots__/pdf417-1/10/slow-0.json index dc1ebec1..76cda0f3 100644 --- a/tests/__snapshots__/pdf417-1/10/slow-0.json +++ b/tests/__snapshots__/pdf417-1/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3b80afa", "bytesECI": "a514bd7", "text": "PDF-417", - "eccLevel": "50%", + "ecLevel": "50%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "50%" } diff --git a/tests/__snapshots__/pdf417-1/10/slow-180.json b/tests/__snapshots__/pdf417-1/10/slow-180.json index de0078f6..c9320a5c 100644 --- a/tests/__snapshots__/pdf417-1/10/slow-180.json +++ b/tests/__snapshots__/pdf417-1/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3b80afa", "bytesECI": "a514bd7", "text": "PDF-417", - "eccLevel": "50%", + "ecLevel": "50%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "50%" } diff --git a/tests/__snapshots__/pdf417-1/10/slow-270.json b/tests/__snapshots__/pdf417-1/10/slow-270.json index b81fa9b2..e8ed89f5 100644 --- a/tests/__snapshots__/pdf417-1/10/slow-270.json +++ b/tests/__snapshots__/pdf417-1/10/slow-270.json @@ -5,7 +5,7 @@ "bytes": "3b80afa", "bytesECI": "a514bd7", "text": "PDF-417", - "eccLevel": "50%", + "ecLevel": "50%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "50%" } diff --git a/tests/__snapshots__/pdf417-1/10/slow-90.json b/tests/__snapshots__/pdf417-1/10/slow-90.json index 1cda6f83..c0dccc39 100644 --- a/tests/__snapshots__/pdf417-1/10/slow-90.json +++ b/tests/__snapshots__/pdf417-1/10/slow-90.json @@ -5,7 +5,7 @@ "bytes": "3b80afa", "bytesECI": "a514bd7", "text": "PDF-417", - "eccLevel": "50%", + "ecLevel": "50%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "50%" } diff --git a/tests/__snapshots__/pdf417-1/11/fast-0.json b/tests/__snapshots__/pdf417-1/11/fast-0.json index 059c3791..bb82d2ae 100644 --- a/tests/__snapshots__/pdf417-1/11/fast-0.json +++ b/tests/__snapshots__/pdf417-1/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "11dfc1e", "bytesECI": "f0c7621", "text": "This is just a test.", - "eccLevel": "33%", + "ecLevel": "33%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "33%" } diff --git a/tests/__snapshots__/pdf417-1/11/fast-180.json b/tests/__snapshots__/pdf417-1/11/fast-180.json index 2f793437..2bb261ab 100644 --- a/tests/__snapshots__/pdf417-1/11/fast-180.json +++ b/tests/__snapshots__/pdf417-1/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "11dfc1e", "bytesECI": "f0c7621", "text": "This is just a test.", - "eccLevel": "33%", + "ecLevel": "33%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "33%" } diff --git a/tests/__snapshots__/pdf417-1/11/pure-0.json b/tests/__snapshots__/pdf417-1/11/pure-0.json index 059c3791..bb82d2ae 100644 --- a/tests/__snapshots__/pdf417-1/11/pure-0.json +++ b/tests/__snapshots__/pdf417-1/11/pure-0.json @@ -5,7 +5,7 @@ "bytes": "11dfc1e", "bytesECI": "f0c7621", "text": "This is just a test.", - "eccLevel": "33%", + "ecLevel": "33%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "33%" } diff --git a/tests/__snapshots__/pdf417-1/11/slow-0.json b/tests/__snapshots__/pdf417-1/11/slow-0.json index 059c3791..bb82d2ae 100644 --- a/tests/__snapshots__/pdf417-1/11/slow-0.json +++ b/tests/__snapshots__/pdf417-1/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "11dfc1e", "bytesECI": "f0c7621", "text": "This is just a test.", - "eccLevel": "33%", + "ecLevel": "33%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "33%" } diff --git a/tests/__snapshots__/pdf417-1/11/slow-180.json b/tests/__snapshots__/pdf417-1/11/slow-180.json index 2f793437..2bb261ab 100644 --- a/tests/__snapshots__/pdf417-1/11/slow-180.json +++ b/tests/__snapshots__/pdf417-1/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "11dfc1e", "bytesECI": "f0c7621", "text": "This is just a test.", - "eccLevel": "33%", + "ecLevel": "33%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "33%" } diff --git a/tests/__snapshots__/pdf417-1/11/slow-270.json b/tests/__snapshots__/pdf417-1/11/slow-270.json index cc6bbd0a..68359d10 100644 --- a/tests/__snapshots__/pdf417-1/11/slow-270.json +++ b/tests/__snapshots__/pdf417-1/11/slow-270.json @@ -5,7 +5,7 @@ "bytes": "11dfc1e", "bytesECI": "f0c7621", "text": "This is just a test.", - "eccLevel": "33%", + "ecLevel": "33%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "33%" } diff --git a/tests/__snapshots__/pdf417-1/11/slow-90.json b/tests/__snapshots__/pdf417-1/11/slow-90.json index 5fc826dc..c67264b2 100644 --- a/tests/__snapshots__/pdf417-1/11/slow-90.json +++ b/tests/__snapshots__/pdf417-1/11/slow-90.json @@ -5,7 +5,7 @@ "bytes": "11dfc1e", "bytesECI": "f0c7621", "text": "This is just a test.", - "eccLevel": "33%", + "ecLevel": "33%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "33%" } diff --git a/tests/__snapshots__/pdf417-1/12-mixed-ecis/fast-0.json b/tests/__snapshots__/pdf417-1/12-mixed-ecis/fast-0.json index 6f7d2ff9..f6dcbc76 100644 --- a/tests/__snapshots__/pdf417-1/12-mixed-ecis/fast-0.json +++ b/tests/__snapshots__/pdf417-1/12-mixed-ecis/fast-0.json @@ -5,7 +5,7 @@ "bytes": "27a33e8", "bytesECI": "c1b6587", "text": "AB点茗テ齄膀赧αђŹ", - "eccLevel": "16%", + "ecLevel": "16%", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "16%" } diff --git a/tests/__snapshots__/pdf417-1/12-mixed-ecis/fast-180.json b/tests/__snapshots__/pdf417-1/12-mixed-ecis/fast-180.json index 3ef9909a..6bf671eb 100644 --- a/tests/__snapshots__/pdf417-1/12-mixed-ecis/fast-180.json +++ b/tests/__snapshots__/pdf417-1/12-mixed-ecis/fast-180.json @@ -5,7 +5,7 @@ "bytes": "27a33e8", "bytesECI": "c1b6587", "text": "AB点茗テ齄膀赧αђŹ", - "eccLevel": "16%", + "ecLevel": "16%", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "16%" } diff --git a/tests/__snapshots__/pdf417-1/12-mixed-ecis/pure-0.json b/tests/__snapshots__/pdf417-1/12-mixed-ecis/pure-0.json index 3f0713c8..e553b0c1 100644 --- a/tests/__snapshots__/pdf417-1/12-mixed-ecis/pure-0.json +++ b/tests/__snapshots__/pdf417-1/12-mixed-ecis/pure-0.json @@ -5,7 +5,7 @@ "bytes": "27a33e8", "bytesECI": "c1b6587", "text": "AB点茗テ齄膀赧αђŹ", - "eccLevel": "16%", + "ecLevel": "16%", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "16%" } diff --git a/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-0.json b/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-0.json index 6f7d2ff9..f6dcbc76 100644 --- a/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-0.json +++ b/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-0.json @@ -5,7 +5,7 @@ "bytes": "27a33e8", "bytesECI": "c1b6587", "text": "AB点茗テ齄膀赧αђŹ", - "eccLevel": "16%", + "ecLevel": "16%", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "16%" } diff --git a/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-180.json b/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-180.json index 3ef9909a..6bf671eb 100644 --- a/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-180.json +++ b/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-180.json @@ -5,7 +5,7 @@ "bytes": "27a33e8", "bytesECI": "c1b6587", "text": "AB点茗テ齄膀赧αђŹ", - "eccLevel": "16%", + "ecLevel": "16%", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "16%" } diff --git a/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-270.json b/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-270.json index 9cbf41ea..1be9f213 100644 --- a/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-270.json +++ b/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-270.json @@ -5,7 +5,7 @@ "bytes": "27a33e8", "bytesECI": "c1b6587", "text": "AB点茗テ齄膀赧αђŹ", - "eccLevel": "16%", + "ecLevel": "16%", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "16%" } diff --git a/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-90.json b/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-90.json index fa00bc01..c61698fe 100644 --- a/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-90.json +++ b/tests/__snapshots__/pdf417-1/12-mixed-ecis/slow-90.json @@ -5,7 +5,7 @@ "bytes": "27a33e8", "bytesECI": "c1b6587", "text": "AB点茗テ齄膀赧αђŹ", - "eccLevel": "16%", + "ecLevel": "16%", "contentType": "Text", "hasECI": true, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "16%" } diff --git a/tests/__snapshots__/pdf417-1/13-readerinit/fast-0.json b/tests/__snapshots__/pdf417-1/13-readerinit/fast-0.json index 661e7064..d0a5dc57 100644 --- a/tests/__snapshots__/pdf417-1/13-readerinit/fast-0.json +++ b/tests/__snapshots__/pdf417-1/13-readerinit/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "426471b", "text": "$I", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/13-readerinit/fast-180.json b/tests/__snapshots__/pdf417-1/13-readerinit/fast-180.json index b147cef3..be8b3205 100644 --- a/tests/__snapshots__/pdf417-1/13-readerinit/fast-180.json +++ b/tests/__snapshots__/pdf417-1/13-readerinit/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "426471b", "text": "$I", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/13-readerinit/pure-0.json b/tests/__snapshots__/pdf417-1/13-readerinit/pure-0.json index 661e7064..d0a5dc57 100644 --- a/tests/__snapshots__/pdf417-1/13-readerinit/pure-0.json +++ b/tests/__snapshots__/pdf417-1/13-readerinit/pure-0.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "426471b", "text": "$I", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/13-readerinit/slow-0.json b/tests/__snapshots__/pdf417-1/13-readerinit/slow-0.json index 661e7064..d0a5dc57 100644 --- a/tests/__snapshots__/pdf417-1/13-readerinit/slow-0.json +++ b/tests/__snapshots__/pdf417-1/13-readerinit/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "426471b", "text": "$I", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/13-readerinit/slow-180.json b/tests/__snapshots__/pdf417-1/13-readerinit/slow-180.json index b147cef3..be8b3205 100644 --- a/tests/__snapshots__/pdf417-1/13-readerinit/slow-180.json +++ b/tests/__snapshots__/pdf417-1/13-readerinit/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "426471b", "text": "$I", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/13-readerinit/slow-270.json b/tests/__snapshots__/pdf417-1/13-readerinit/slow-270.json index b04667fc..c526111c 100644 --- a/tests/__snapshots__/pdf417-1/13-readerinit/slow-270.json +++ b/tests/__snapshots__/pdf417-1/13-readerinit/slow-270.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "426471b", "text": "$I", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-1/13-readerinit/slow-90.json b/tests/__snapshots__/pdf417-1/13-readerinit/slow-90.json index 2d3b699f..5d78600b 100644 --- a/tests/__snapshots__/pdf417-1/13-readerinit/slow-90.json +++ b/tests/__snapshots__/pdf417-1/13-readerinit/slow-90.json @@ -5,7 +5,7 @@ "bytes": "f590405", "bytesECI": "426471b", "text": "$I", - "eccLevel": "57%", + "ecLevel": "57%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": true, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "57%" } diff --git a/tests/__snapshots__/pdf417-2/01/fast-0.json b/tests/__snapshots__/pdf417-2/01/fast-0.json index eb80e016..36c8a477 100644 --- a/tests/__snapshots__/pdf417-2/01/fast-0.json +++ b/tests/__snapshots__/pdf417-2/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/01/fast-180.json b/tests/__snapshots__/pdf417-2/01/fast-180.json index 336d18fc..0d4f0ab9 100644 --- a/tests/__snapshots__/pdf417-2/01/fast-180.json +++ b/tests/__snapshots__/pdf417-2/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/01/slow-0.json b/tests/__snapshots__/pdf417-2/01/slow-0.json index eb80e016..36c8a477 100644 --- a/tests/__snapshots__/pdf417-2/01/slow-0.json +++ b/tests/__snapshots__/pdf417-2/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/01/slow-180.json b/tests/__snapshots__/pdf417-2/01/slow-180.json index 336d18fc..0d4f0ab9 100644 --- a/tests/__snapshots__/pdf417-2/01/slow-180.json +++ b/tests/__snapshots__/pdf417-2/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/01/slow-270.json b/tests/__snapshots__/pdf417-2/01/slow-270.json index 58c67965..34b55b55 100644 --- a/tests/__snapshots__/pdf417-2/01/slow-270.json +++ b/tests/__snapshots__/pdf417-2/01/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/01/slow-90.json b/tests/__snapshots__/pdf417-2/01/slow-90.json index e632f23b..13e077ca 100644 --- a/tests/__snapshots__/pdf417-2/01/slow-90.json +++ b/tests/__snapshots__/pdf417-2/01/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/02/fast-0.json b/tests/__snapshots__/pdf417-2/02/fast-0.json index f688964e..24b14039 100644 --- a/tests/__snapshots__/pdf417-2/02/fast-0.json +++ b/tests/__snapshots__/pdf417-2/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/02/fast-180.json b/tests/__snapshots__/pdf417-2/02/fast-180.json index 2831f81b..894bcd53 100644 --- a/tests/__snapshots__/pdf417-2/02/fast-180.json +++ b/tests/__snapshots__/pdf417-2/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/02/slow-0.json b/tests/__snapshots__/pdf417-2/02/slow-0.json index f688964e..24b14039 100644 --- a/tests/__snapshots__/pdf417-2/02/slow-0.json +++ b/tests/__snapshots__/pdf417-2/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/02/slow-180.json b/tests/__snapshots__/pdf417-2/02/slow-180.json index 2831f81b..894bcd53 100644 --- a/tests/__snapshots__/pdf417-2/02/slow-180.json +++ b/tests/__snapshots__/pdf417-2/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/02/slow-270.json b/tests/__snapshots__/pdf417-2/02/slow-270.json index 11325808..723bd216 100644 --- a/tests/__snapshots__/pdf417-2/02/slow-270.json +++ b/tests/__snapshots__/pdf417-2/02/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/02/slow-90.json b/tests/__snapshots__/pdf417-2/02/slow-90.json index db6bdb11..19ab16e8 100644 --- a/tests/__snapshots__/pdf417-2/02/slow-90.json +++ b/tests/__snapshots__/pdf417-2/02/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/03/fast-0.json b/tests/__snapshots__/pdf417-2/03/fast-0.json index 47b19496..e2f93e45 100644 --- a/tests/__snapshots__/pdf417-2/03/fast-0.json +++ b/tests/__snapshots__/pdf417-2/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/03/fast-180.json b/tests/__snapshots__/pdf417-2/03/fast-180.json index 09ac8b44..2653dad3 100644 --- a/tests/__snapshots__/pdf417-2/03/fast-180.json +++ b/tests/__snapshots__/pdf417-2/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/03/slow-0.json b/tests/__snapshots__/pdf417-2/03/slow-0.json index 47b19496..e2f93e45 100644 --- a/tests/__snapshots__/pdf417-2/03/slow-0.json +++ b/tests/__snapshots__/pdf417-2/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/03/slow-180.json b/tests/__snapshots__/pdf417-2/03/slow-180.json index 09ac8b44..2653dad3 100644 --- a/tests/__snapshots__/pdf417-2/03/slow-180.json +++ b/tests/__snapshots__/pdf417-2/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/03/slow-270.json b/tests/__snapshots__/pdf417-2/03/slow-270.json index bcb55a35..8fc6113e 100644 --- a/tests/__snapshots__/pdf417-2/03/slow-270.json +++ b/tests/__snapshots__/pdf417-2/03/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/03/slow-90.json b/tests/__snapshots__/pdf417-2/03/slow-90.json index 3d8e8c77..75c3b4a0 100644 --- a/tests/__snapshots__/pdf417-2/03/slow-90.json +++ b/tests/__snapshots__/pdf417-2/03/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/04/fast-0.json b/tests/__snapshots__/pdf417-2/04/fast-0.json index de378091..8b745aec 100644 --- a/tests/__snapshots__/pdf417-2/04/fast-0.json +++ b/tests/__snapshots__/pdf417-2/04/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/04/fast-180.json b/tests/__snapshots__/pdf417-2/04/fast-180.json index c6842c9a..ddd4b75e 100644 --- a/tests/__snapshots__/pdf417-2/04/fast-180.json +++ b/tests/__snapshots__/pdf417-2/04/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/04/slow-0.json b/tests/__snapshots__/pdf417-2/04/slow-0.json index de378091..8b745aec 100644 --- a/tests/__snapshots__/pdf417-2/04/slow-0.json +++ b/tests/__snapshots__/pdf417-2/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/04/slow-180.json b/tests/__snapshots__/pdf417-2/04/slow-180.json index c6842c9a..ddd4b75e 100644 --- a/tests/__snapshots__/pdf417-2/04/slow-180.json +++ b/tests/__snapshots__/pdf417-2/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/04/slow-270.json b/tests/__snapshots__/pdf417-2/04/slow-270.json index 9e8f0e18..abd86c77 100644 --- a/tests/__snapshots__/pdf417-2/04/slow-270.json +++ b/tests/__snapshots__/pdf417-2/04/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/04/slow-90.json b/tests/__snapshots__/pdf417-2/04/slow-90.json index 3c6e3bf0..75ca8d8c 100644 --- a/tests/__snapshots__/pdf417-2/04/slow-90.json +++ b/tests/__snapshots__/pdf417-2/04/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/05/fast-0.json b/tests/__snapshots__/pdf417-2/05/fast-0.json index a7a6232d..125a18ee 100644 --- a/tests/__snapshots__/pdf417-2/05/fast-0.json +++ b/tests/__snapshots__/pdf417-2/05/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/05/fast-180.json b/tests/__snapshots__/pdf417-2/05/fast-180.json index 0f4e3d16..bd020000 100644 --- a/tests/__snapshots__/pdf417-2/05/fast-180.json +++ b/tests/__snapshots__/pdf417-2/05/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/05/slow-0.json b/tests/__snapshots__/pdf417-2/05/slow-0.json index a7a6232d..125a18ee 100644 --- a/tests/__snapshots__/pdf417-2/05/slow-0.json +++ b/tests/__snapshots__/pdf417-2/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/05/slow-180.json b/tests/__snapshots__/pdf417-2/05/slow-180.json index 0f4e3d16..bd020000 100644 --- a/tests/__snapshots__/pdf417-2/05/slow-180.json +++ b/tests/__snapshots__/pdf417-2/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/05/slow-270.json b/tests/__snapshots__/pdf417-2/05/slow-270.json index 0f41290c..57032729 100644 --- a/tests/__snapshots__/pdf417-2/05/slow-270.json +++ b/tests/__snapshots__/pdf417-2/05/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/05/slow-90.json b/tests/__snapshots__/pdf417-2/05/slow-90.json index f81bd54f..a80b92a5 100644 --- a/tests/__snapshots__/pdf417-2/05/slow-90.json +++ b/tests/__snapshots__/pdf417-2/05/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/06/fast-0.json b/tests/__snapshots__/pdf417-2/06/fast-0.json index e5b5adab..a9cda8bd 100644 --- a/tests/__snapshots__/pdf417-2/06/fast-0.json +++ b/tests/__snapshots__/pdf417-2/06/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/06/fast-180.json b/tests/__snapshots__/pdf417-2/06/fast-180.json index 2fe8a57c..427bf490 100644 --- a/tests/__snapshots__/pdf417-2/06/fast-180.json +++ b/tests/__snapshots__/pdf417-2/06/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/06/slow-0.json b/tests/__snapshots__/pdf417-2/06/slow-0.json index e5b5adab..a9cda8bd 100644 --- a/tests/__snapshots__/pdf417-2/06/slow-0.json +++ b/tests/__snapshots__/pdf417-2/06/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/06/slow-180.json b/tests/__snapshots__/pdf417-2/06/slow-180.json index 2fe8a57c..427bf490 100644 --- a/tests/__snapshots__/pdf417-2/06/slow-180.json +++ b/tests/__snapshots__/pdf417-2/06/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/06/slow-270.json b/tests/__snapshots__/pdf417-2/06/slow-270.json index 08ad62f6..dc2038c4 100644 --- a/tests/__snapshots__/pdf417-2/06/slow-270.json +++ b/tests/__snapshots__/pdf417-2/06/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/06/slow-90.json b/tests/__snapshots__/pdf417-2/06/slow-90.json index 91425c16..06095c1a 100644 --- a/tests/__snapshots__/pdf417-2/06/slow-90.json +++ b/tests/__snapshots__/pdf417-2/06/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/07/fast-0.json b/tests/__snapshots__/pdf417-2/07/fast-0.json index 241a62e8..bb8f0379 100644 --- a/tests/__snapshots__/pdf417-2/07/fast-0.json +++ b/tests/__snapshots__/pdf417-2/07/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/07/fast-180.json b/tests/__snapshots__/pdf417-2/07/fast-180.json index 637295f6..444de01d 100644 --- a/tests/__snapshots__/pdf417-2/07/fast-180.json +++ b/tests/__snapshots__/pdf417-2/07/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/07/slow-0.json b/tests/__snapshots__/pdf417-2/07/slow-0.json index 241a62e8..bb8f0379 100644 --- a/tests/__snapshots__/pdf417-2/07/slow-0.json +++ b/tests/__snapshots__/pdf417-2/07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/07/slow-180.json b/tests/__snapshots__/pdf417-2/07/slow-180.json index 637295f6..444de01d 100644 --- a/tests/__snapshots__/pdf417-2/07/slow-180.json +++ b/tests/__snapshots__/pdf417-2/07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/07/slow-270.json b/tests/__snapshots__/pdf417-2/07/slow-270.json index 05382622..b946b91a 100644 --- a/tests/__snapshots__/pdf417-2/07/slow-270.json +++ b/tests/__snapshots__/pdf417-2/07/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/07/slow-90.json b/tests/__snapshots__/pdf417-2/07/slow-90.json index e87c3b5a..b9e49abf 100644 --- a/tests/__snapshots__/pdf417-2/07/slow-90.json +++ b/tests/__snapshots__/pdf417-2/07/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "acd0613", "text": "1234567890", - "eccLevel": "30%", + "ecLevel": "30%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "30%" } diff --git a/tests/__snapshots__/pdf417-2/08/fast-0.json b/tests/__snapshots__/pdf417-2/08/fast-0.json index 8fea4241..459edef1 100644 --- a/tests/__snapshots__/pdf417-2/08/fast-0.json +++ b/tests/__snapshots__/pdf417-2/08/fast-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/08/fast-180.json b/tests/__snapshots__/pdf417-2/08/fast-180.json index 8624c2b2..cc780f12 100644 --- a/tests/__snapshots__/pdf417-2/08/fast-180.json +++ b/tests/__snapshots__/pdf417-2/08/fast-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/08/slow-0.json b/tests/__snapshots__/pdf417-2/08/slow-0.json index 8fea4241..459edef1 100644 --- a/tests/__snapshots__/pdf417-2/08/slow-0.json +++ b/tests/__snapshots__/pdf417-2/08/slow-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/08/slow-180.json b/tests/__snapshots__/pdf417-2/08/slow-180.json index 8624c2b2..cc780f12 100644 --- a/tests/__snapshots__/pdf417-2/08/slow-180.json +++ b/tests/__snapshots__/pdf417-2/08/slow-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/08/slow-270.json b/tests/__snapshots__/pdf417-2/08/slow-270.json index 7e82154e..3a4cac94 100644 --- a/tests/__snapshots__/pdf417-2/08/slow-270.json +++ b/tests/__snapshots__/pdf417-2/08/slow-270.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/08/slow-90.json b/tests/__snapshots__/pdf417-2/08/slow-90.json index d776c29a..38262fca 100644 --- a/tests/__snapshots__/pdf417-2/08/slow-90.json +++ b/tests/__snapshots__/pdf417-2/08/slow-90.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/09/fast-0.json b/tests/__snapshots__/pdf417-2/09/fast-0.json index cda88790..57f3e89a 100644 --- a/tests/__snapshots__/pdf417-2/09/fast-0.json +++ b/tests/__snapshots__/pdf417-2/09/fast-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/09/fast-180.json b/tests/__snapshots__/pdf417-2/09/fast-180.json index d080bb7f..4601c8ec 100644 --- a/tests/__snapshots__/pdf417-2/09/fast-180.json +++ b/tests/__snapshots__/pdf417-2/09/fast-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/09/slow-0.json b/tests/__snapshots__/pdf417-2/09/slow-0.json index cda88790..57f3e89a 100644 --- a/tests/__snapshots__/pdf417-2/09/slow-0.json +++ b/tests/__snapshots__/pdf417-2/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/09/slow-180.json b/tests/__snapshots__/pdf417-2/09/slow-180.json index d080bb7f..4601c8ec 100644 --- a/tests/__snapshots__/pdf417-2/09/slow-180.json +++ b/tests/__snapshots__/pdf417-2/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/09/slow-270.json b/tests/__snapshots__/pdf417-2/09/slow-270.json index b07ca946..d2b79af8 100644 --- a/tests/__snapshots__/pdf417-2/09/slow-270.json +++ b/tests/__snapshots__/pdf417-2/09/slow-270.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/09/slow-90.json b/tests/__snapshots__/pdf417-2/09/slow-90.json index 1675c334..eae85367 100644 --- a/tests/__snapshots__/pdf417-2/09/slow-90.json +++ b/tests/__snapshots__/pdf417-2/09/slow-90.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/10/fast-0.json b/tests/__snapshots__/pdf417-2/10/fast-0.json index 6ec8ea2d..dda134e7 100644 --- a/tests/__snapshots__/pdf417-2/10/fast-0.json +++ b/tests/__snapshots__/pdf417-2/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/10/fast-180.json b/tests/__snapshots__/pdf417-2/10/fast-180.json index cc6744e4..c80e7914 100644 --- a/tests/__snapshots__/pdf417-2/10/fast-180.json +++ b/tests/__snapshots__/pdf417-2/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/10/slow-0.json b/tests/__snapshots__/pdf417-2/10/slow-0.json index 6ec8ea2d..dda134e7 100644 --- a/tests/__snapshots__/pdf417-2/10/slow-0.json +++ b/tests/__snapshots__/pdf417-2/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/10/slow-180.json b/tests/__snapshots__/pdf417-2/10/slow-180.json index cc6744e4..c80e7914 100644 --- a/tests/__snapshots__/pdf417-2/10/slow-180.json +++ b/tests/__snapshots__/pdf417-2/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/10/slow-270.json b/tests/__snapshots__/pdf417-2/10/slow-270.json index 280e0bb8..9c30e01b 100644 --- a/tests/__snapshots__/pdf417-2/10/slow-270.json +++ b/tests/__snapshots__/pdf417-2/10/slow-270.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/10/slow-90.json b/tests/__snapshots__/pdf417-2/10/slow-90.json index 214a3109..9d11d445 100644 --- a/tests/__snapshots__/pdf417-2/10/slow-90.json +++ b/tests/__snapshots__/pdf417-2/10/slow-90.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/11/fast-0.json b/tests/__snapshots__/pdf417-2/11/fast-0.json index 5467490c..b3bfd7cd 100644 --- a/tests/__snapshots__/pdf417-2/11/fast-0.json +++ b/tests/__snapshots__/pdf417-2/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/11/fast-180.json b/tests/__snapshots__/pdf417-2/11/fast-180.json index c48ae25d..ded6483d 100644 --- a/tests/__snapshots__/pdf417-2/11/fast-180.json +++ b/tests/__snapshots__/pdf417-2/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/11/slow-0.json b/tests/__snapshots__/pdf417-2/11/slow-0.json index 5467490c..b3bfd7cd 100644 --- a/tests/__snapshots__/pdf417-2/11/slow-0.json +++ b/tests/__snapshots__/pdf417-2/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/11/slow-180.json b/tests/__snapshots__/pdf417-2/11/slow-180.json index c48ae25d..ded6483d 100644 --- a/tests/__snapshots__/pdf417-2/11/slow-180.json +++ b/tests/__snapshots__/pdf417-2/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/11/slow-270.json b/tests/__snapshots__/pdf417-2/11/slow-270.json index f1aab1bb..957f15db 100644 --- a/tests/__snapshots__/pdf417-2/11/slow-270.json +++ b/tests/__snapshots__/pdf417-2/11/slow-270.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/11/slow-90.json b/tests/__snapshots__/pdf417-2/11/slow-90.json index 2ff6cbfc..b1148b1a 100644 --- a/tests/__snapshots__/pdf417-2/11/slow-90.json +++ b/tests/__snapshots__/pdf417-2/11/slow-90.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/12/fast-0.json b/tests/__snapshots__/pdf417-2/12/fast-0.json index 4314e179..7a327276 100644 --- a/tests/__snapshots__/pdf417-2/12/fast-0.json +++ b/tests/__snapshots__/pdf417-2/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/12/fast-180.json b/tests/__snapshots__/pdf417-2/12/fast-180.json index 46e6a596..f1ffff21 100644 --- a/tests/__snapshots__/pdf417-2/12/fast-180.json +++ b/tests/__snapshots__/pdf417-2/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/12/slow-0.json b/tests/__snapshots__/pdf417-2/12/slow-0.json index 4314e179..7a327276 100644 --- a/tests/__snapshots__/pdf417-2/12/slow-0.json +++ b/tests/__snapshots__/pdf417-2/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/12/slow-180.json b/tests/__snapshots__/pdf417-2/12/slow-180.json index 46e6a596..f1ffff21 100644 --- a/tests/__snapshots__/pdf417-2/12/slow-180.json +++ b/tests/__snapshots__/pdf417-2/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/12/slow-270.json b/tests/__snapshots__/pdf417-2/12/slow-270.json index fc561dce..9446a2e8 100644 --- a/tests/__snapshots__/pdf417-2/12/slow-270.json +++ b/tests/__snapshots__/pdf417-2/12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/12/slow-90.json b/tests/__snapshots__/pdf417-2/12/slow-90.json index ddf11dee..1fecf791 100644 --- a/tests/__snapshots__/pdf417-2/12/slow-90.json +++ b/tests/__snapshots__/pdf417-2/12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/13/fast-0.json b/tests/__snapshots__/pdf417-2/13/fast-0.json index 2fdf9534..f9770b11 100644 --- a/tests/__snapshots__/pdf417-2/13/fast-0.json +++ b/tests/__snapshots__/pdf417-2/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/13/fast-180.json b/tests/__snapshots__/pdf417-2/13/fast-180.json index d8d94d55..c6eca6a2 100644 --- a/tests/__snapshots__/pdf417-2/13/fast-180.json +++ b/tests/__snapshots__/pdf417-2/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/13/slow-0.json b/tests/__snapshots__/pdf417-2/13/slow-0.json index 2fdf9534..f9770b11 100644 --- a/tests/__snapshots__/pdf417-2/13/slow-0.json +++ b/tests/__snapshots__/pdf417-2/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/13/slow-180.json b/tests/__snapshots__/pdf417-2/13/slow-180.json index d8d94d55..c6eca6a2 100644 --- a/tests/__snapshots__/pdf417-2/13/slow-180.json +++ b/tests/__snapshots__/pdf417-2/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/13/slow-270.json b/tests/__snapshots__/pdf417-2/13/slow-270.json index 11bd1f9f..ca4fcf01 100644 --- a/tests/__snapshots__/pdf417-2/13/slow-270.json +++ b/tests/__snapshots__/pdf417-2/13/slow-270.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/13/slow-90.json b/tests/__snapshots__/pdf417-2/13/slow-90.json index 9b784001..2554f766 100644 --- a/tests/__snapshots__/pdf417-2/13/slow-90.json +++ b/tests/__snapshots__/pdf417-2/13/slow-90.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/14/fast-0.json b/tests/__snapshots__/pdf417-2/14/fast-0.json index c25fb86e..b6dac56b 100644 --- a/tests/__snapshots__/pdf417-2/14/fast-0.json +++ b/tests/__snapshots__/pdf417-2/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/14/fast-180.json b/tests/__snapshots__/pdf417-2/14/fast-180.json index 027f8de7..eeb0293a 100644 --- a/tests/__snapshots__/pdf417-2/14/fast-180.json +++ b/tests/__snapshots__/pdf417-2/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/14/slow-0.json b/tests/__snapshots__/pdf417-2/14/slow-0.json index c25fb86e..b6dac56b 100644 --- a/tests/__snapshots__/pdf417-2/14/slow-0.json +++ b/tests/__snapshots__/pdf417-2/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/14/slow-180.json b/tests/__snapshots__/pdf417-2/14/slow-180.json index 027f8de7..eeb0293a 100644 --- a/tests/__snapshots__/pdf417-2/14/slow-180.json +++ b/tests/__snapshots__/pdf417-2/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/14/slow-270.json b/tests/__snapshots__/pdf417-2/14/slow-270.json index 7ec7ab85..7ab96d77 100644 --- a/tests/__snapshots__/pdf417-2/14/slow-270.json +++ b/tests/__snapshots__/pdf417-2/14/slow-270.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/14/slow-90.json b/tests/__snapshots__/pdf417-2/14/slow-90.json index ef7b2b95..b07163cc 100644 --- a/tests/__snapshots__/pdf417-2/14/slow-90.json +++ b/tests/__snapshots__/pdf417-2/14/slow-90.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/15/fast-0.json b/tests/__snapshots__/pdf417-2/15/fast-0.json index db3db692..38175429 100644 --- a/tests/__snapshots__/pdf417-2/15/fast-0.json +++ b/tests/__snapshots__/pdf417-2/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/15/fast-180.json b/tests/__snapshots__/pdf417-2/15/fast-180.json index eff3dc06..1683c74f 100644 --- a/tests/__snapshots__/pdf417-2/15/fast-180.json +++ b/tests/__snapshots__/pdf417-2/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/15/slow-0.json b/tests/__snapshots__/pdf417-2/15/slow-0.json index db3db692..38175429 100644 --- a/tests/__snapshots__/pdf417-2/15/slow-0.json +++ b/tests/__snapshots__/pdf417-2/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/15/slow-180.json b/tests/__snapshots__/pdf417-2/15/slow-180.json index eff3dc06..1683c74f 100644 --- a/tests/__snapshots__/pdf417-2/15/slow-180.json +++ b/tests/__snapshots__/pdf417-2/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/15/slow-270.json b/tests/__snapshots__/pdf417-2/15/slow-270.json index bfa61ba1..579114af 100644 --- a/tests/__snapshots__/pdf417-2/15/slow-270.json +++ b/tests/__snapshots__/pdf417-2/15/slow-270.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/15/slow-90.json b/tests/__snapshots__/pdf417-2/15/slow-90.json index 0b80110e..6dac5413 100644 --- a/tests/__snapshots__/pdf417-2/15/slow-90.json +++ b/tests/__snapshots__/pdf417-2/15/slow-90.json @@ -5,7 +5,7 @@ "bytes": "35a6729", "bytesECI": "568f1b1", "text": "A PDF 417 barcode with ASCII text", - "eccLevel": "14%", + "ecLevel": "14%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "14%" } diff --git a/tests/__snapshots__/pdf417-2/16/fast-0.json b/tests/__snapshots__/pdf417-2/16/fast-0.json index 74612747..bcd4d690 100644 --- a/tests/__snapshots__/pdf417-2/16/fast-0.json +++ b/tests/__snapshots__/pdf417-2/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/16/fast-180.json b/tests/__snapshots__/pdf417-2/16/fast-180.json index 4722a635..f1e8673d 100644 --- a/tests/__snapshots__/pdf417-2/16/fast-180.json +++ b/tests/__snapshots__/pdf417-2/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/16/slow-0.json b/tests/__snapshots__/pdf417-2/16/slow-0.json index 74612747..bcd4d690 100644 --- a/tests/__snapshots__/pdf417-2/16/slow-0.json +++ b/tests/__snapshots__/pdf417-2/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/16/slow-180.json b/tests/__snapshots__/pdf417-2/16/slow-180.json index 4722a635..f1e8673d 100644 --- a/tests/__snapshots__/pdf417-2/16/slow-180.json +++ b/tests/__snapshots__/pdf417-2/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/16/slow-270.json b/tests/__snapshots__/pdf417-2/16/slow-270.json index 73a09265..5a9ed1e3 100644 --- a/tests/__snapshots__/pdf417-2/16/slow-270.json +++ b/tests/__snapshots__/pdf417-2/16/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/16/slow-90.json b/tests/__snapshots__/pdf417-2/16/slow-90.json index 1418180c..b8f0de2b 100644 --- a/tests/__snapshots__/pdf417-2/16/slow-90.json +++ b/tests/__snapshots__/pdf417-2/16/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/17/fast-0.json b/tests/__snapshots__/pdf417-2/17/fast-0.json index c23010bb..252e8878 100644 --- a/tests/__snapshots__/pdf417-2/17/fast-0.json +++ b/tests/__snapshots__/pdf417-2/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/17/fast-180.json b/tests/__snapshots__/pdf417-2/17/fast-180.json index 178587be..128e9d50 100644 --- a/tests/__snapshots__/pdf417-2/17/fast-180.json +++ b/tests/__snapshots__/pdf417-2/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/17/slow-0.json b/tests/__snapshots__/pdf417-2/17/slow-0.json index c23010bb..252e8878 100644 --- a/tests/__snapshots__/pdf417-2/17/slow-0.json +++ b/tests/__snapshots__/pdf417-2/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/17/slow-180.json b/tests/__snapshots__/pdf417-2/17/slow-180.json index 178587be..128e9d50 100644 --- a/tests/__snapshots__/pdf417-2/17/slow-180.json +++ b/tests/__snapshots__/pdf417-2/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/17/slow-270.json b/tests/__snapshots__/pdf417-2/17/slow-270.json index 52cc5150..de5f6e5f 100644 --- a/tests/__snapshots__/pdf417-2/17/slow-270.json +++ b/tests/__snapshots__/pdf417-2/17/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/17/slow-90.json b/tests/__snapshots__/pdf417-2/17/slow-90.json index ba920dfa..cfda57a6 100644 --- a/tests/__snapshots__/pdf417-2/17/slow-90.json +++ b/tests/__snapshots__/pdf417-2/17/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/18/fast-0.json b/tests/__snapshots__/pdf417-2/18/fast-0.json index 2080d7f9..8a43e6d2 100644 --- a/tests/__snapshots__/pdf417-2/18/fast-0.json +++ b/tests/__snapshots__/pdf417-2/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/18/fast-180.json b/tests/__snapshots__/pdf417-2/18/fast-180.json index 9dc3934f..7f873955 100644 --- a/tests/__snapshots__/pdf417-2/18/fast-180.json +++ b/tests/__snapshots__/pdf417-2/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/18/slow-0.json b/tests/__snapshots__/pdf417-2/18/slow-0.json index 2080d7f9..8a43e6d2 100644 --- a/tests/__snapshots__/pdf417-2/18/slow-0.json +++ b/tests/__snapshots__/pdf417-2/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/18/slow-180.json b/tests/__snapshots__/pdf417-2/18/slow-180.json index 9dc3934f..7f873955 100644 --- a/tests/__snapshots__/pdf417-2/18/slow-180.json +++ b/tests/__snapshots__/pdf417-2/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/18/slow-270.json b/tests/__snapshots__/pdf417-2/18/slow-270.json index 06bdcecc..4d78feef 100644 --- a/tests/__snapshots__/pdf417-2/18/slow-270.json +++ b/tests/__snapshots__/pdf417-2/18/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/18/slow-90.json b/tests/__snapshots__/pdf417-2/18/slow-90.json index df105580..5970591a 100644 --- a/tests/__snapshots__/pdf417-2/18/slow-90.json +++ b/tests/__snapshots__/pdf417-2/18/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/19/fast-0.json b/tests/__snapshots__/pdf417-2/19/fast-0.json index 17830484..d8924d09 100644 --- a/tests/__snapshots__/pdf417-2/19/fast-0.json +++ b/tests/__snapshots__/pdf417-2/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/19/fast-180.json b/tests/__snapshots__/pdf417-2/19/fast-180.json index 11e105da..b585bbb0 100644 --- a/tests/__snapshots__/pdf417-2/19/fast-180.json +++ b/tests/__snapshots__/pdf417-2/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/19/slow-0.json b/tests/__snapshots__/pdf417-2/19/slow-0.json index 17830484..d8924d09 100644 --- a/tests/__snapshots__/pdf417-2/19/slow-0.json +++ b/tests/__snapshots__/pdf417-2/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/19/slow-180.json b/tests/__snapshots__/pdf417-2/19/slow-180.json index 11e105da..b585bbb0 100644 --- a/tests/__snapshots__/pdf417-2/19/slow-180.json +++ b/tests/__snapshots__/pdf417-2/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/19/slow-270.json b/tests/__snapshots__/pdf417-2/19/slow-270.json index 39c8ffc1..e846283f 100644 --- a/tests/__snapshots__/pdf417-2/19/slow-270.json +++ b/tests/__snapshots__/pdf417-2/19/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/19/slow-90.json b/tests/__snapshots__/pdf417-2/19/slow-90.json index f4d30fb3..8417254f 100644 --- a/tests/__snapshots__/pdf417-2/19/slow-90.json +++ b/tests/__snapshots__/pdf417-2/19/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/20/fast-0.json b/tests/__snapshots__/pdf417-2/20/fast-0.json index 0b62632f..ec266f5d 100644 --- a/tests/__snapshots__/pdf417-2/20/fast-0.json +++ b/tests/__snapshots__/pdf417-2/20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/20/fast-180.json b/tests/__snapshots__/pdf417-2/20/fast-180.json index a374cd71..dede41bf 100644 --- a/tests/__snapshots__/pdf417-2/20/fast-180.json +++ b/tests/__snapshots__/pdf417-2/20/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/20/slow-0.json b/tests/__snapshots__/pdf417-2/20/slow-0.json index 0b62632f..ec266f5d 100644 --- a/tests/__snapshots__/pdf417-2/20/slow-0.json +++ b/tests/__snapshots__/pdf417-2/20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/20/slow-180.json b/tests/__snapshots__/pdf417-2/20/slow-180.json index a374cd71..dede41bf 100644 --- a/tests/__snapshots__/pdf417-2/20/slow-180.json +++ b/tests/__snapshots__/pdf417-2/20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/20/slow-270.json b/tests/__snapshots__/pdf417-2/20/slow-270.json index 5b396bd5..ce19ca2f 100644 --- a/tests/__snapshots__/pdf417-2/20/slow-270.json +++ b/tests/__snapshots__/pdf417-2/20/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/20/slow-90.json b/tests/__snapshots__/pdf417-2/20/slow-90.json index 27973570..55967a3a 100644 --- a/tests/__snapshots__/pdf417-2/20/slow-90.json +++ b/tests/__snapshots__/pdf417-2/20/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/21/fast-0.json b/tests/__snapshots__/pdf417-2/21/fast-0.json index 6a39bd61..df334cea 100644 --- a/tests/__snapshots__/pdf417-2/21/fast-0.json +++ b/tests/__snapshots__/pdf417-2/21/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/21/fast-180.json b/tests/__snapshots__/pdf417-2/21/fast-180.json index b4c9b4db..5a5b2bae 100644 --- a/tests/__snapshots__/pdf417-2/21/fast-180.json +++ b/tests/__snapshots__/pdf417-2/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/21/slow-0.json b/tests/__snapshots__/pdf417-2/21/slow-0.json index 6a39bd61..df334cea 100644 --- a/tests/__snapshots__/pdf417-2/21/slow-0.json +++ b/tests/__snapshots__/pdf417-2/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/21/slow-180.json b/tests/__snapshots__/pdf417-2/21/slow-180.json index b4c9b4db..5a5b2bae 100644 --- a/tests/__snapshots__/pdf417-2/21/slow-180.json +++ b/tests/__snapshots__/pdf417-2/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/21/slow-270.json b/tests/__snapshots__/pdf417-2/21/slow-270.json index a10b0bf5..d349e080 100644 --- a/tests/__snapshots__/pdf417-2/21/slow-270.json +++ b/tests/__snapshots__/pdf417-2/21/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/21/slow-90.json b/tests/__snapshots__/pdf417-2/21/slow-90.json index f23efb29..daad5b5c 100644 --- a/tests/__snapshots__/pdf417-2/21/slow-90.json +++ b/tests/__snapshots__/pdf417-2/21/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/22/fast-0.json b/tests/__snapshots__/pdf417-2/22/fast-0.json index 859982ff..845160ad 100644 --- a/tests/__snapshots__/pdf417-2/22/fast-0.json +++ b/tests/__snapshots__/pdf417-2/22/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/22/fast-180.json b/tests/__snapshots__/pdf417-2/22/fast-180.json index 8a6593e6..0c63001a 100644 --- a/tests/__snapshots__/pdf417-2/22/fast-180.json +++ b/tests/__snapshots__/pdf417-2/22/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/22/slow-0.json b/tests/__snapshots__/pdf417-2/22/slow-0.json index 859982ff..845160ad 100644 --- a/tests/__snapshots__/pdf417-2/22/slow-0.json +++ b/tests/__snapshots__/pdf417-2/22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/22/slow-180.json b/tests/__snapshots__/pdf417-2/22/slow-180.json index 8a6593e6..0c63001a 100644 --- a/tests/__snapshots__/pdf417-2/22/slow-180.json +++ b/tests/__snapshots__/pdf417-2/22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/22/slow-270.json b/tests/__snapshots__/pdf417-2/22/slow-270.json index 8d20e18d..f9809f50 100644 --- a/tests/__snapshots__/pdf417-2/22/slow-270.json +++ b/tests/__snapshots__/pdf417-2/22/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/22/slow-90.json b/tests/__snapshots__/pdf417-2/22/slow-90.json index 396247ae..4bd6419a 100644 --- a/tests/__snapshots__/pdf417-2/22/slow-90.json +++ b/tests/__snapshots__/pdf417-2/22/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/23/fast-0.json b/tests/__snapshots__/pdf417-2/23/fast-0.json index cdce6235..92533d54 100644 --- a/tests/__snapshots__/pdf417-2/23/fast-0.json +++ b/tests/__snapshots__/pdf417-2/23/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/23/fast-180.json b/tests/__snapshots__/pdf417-2/23/fast-180.json index 9fc4634e..a46851ab 100644 --- a/tests/__snapshots__/pdf417-2/23/fast-180.json +++ b/tests/__snapshots__/pdf417-2/23/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/23/slow-0.json b/tests/__snapshots__/pdf417-2/23/slow-0.json index cdce6235..92533d54 100644 --- a/tests/__snapshots__/pdf417-2/23/slow-0.json +++ b/tests/__snapshots__/pdf417-2/23/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/23/slow-180.json b/tests/__snapshots__/pdf417-2/23/slow-180.json index 9fc4634e..a46851ab 100644 --- a/tests/__snapshots__/pdf417-2/23/slow-180.json +++ b/tests/__snapshots__/pdf417-2/23/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/23/slow-270.json b/tests/__snapshots__/pdf417-2/23/slow-270.json index aeeab315..dbab4940 100644 --- a/tests/__snapshots__/pdf417-2/23/slow-270.json +++ b/tests/__snapshots__/pdf417-2/23/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/23/slow-90.json b/tests/__snapshots__/pdf417-2/23/slow-90.json index 9490c7d2..9676abd5 100644 --- a/tests/__snapshots__/pdf417-2/23/slow-90.json +++ b/tests/__snapshots__/pdf417-2/23/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8e37a35", "bytesECI": "5a779f6", "text": "A larger PDF 417 barcode with a greater amount of text. This is a more difficult test for mobile devices to resolve.", - "eccLevel": "9%", + "ecLevel": "9%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "9%" } diff --git a/tests/__snapshots__/pdf417-2/24/fast-0.json b/tests/__snapshots__/pdf417-2/24/fast-0.json index d2db4a96..c1b93e15 100644 --- a/tests/__snapshots__/pdf417-2/24/fast-0.json +++ b/tests/__snapshots__/pdf417-2/24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f68c5d5", "bytesECI": "646f52f", "text": "xÅ[@ß7ñ?LyÙ§.jlRui·ÝTÛdû6QIÌûÇöôug°ú\"ç3ß¹Ìå:÷ûM¾Sq4Tô®¦ D«¡òyñp×WîÝÎMçÆy3þ8Zz!a$å=Ðüy¾<¢Û]×OýÛ¢ËÖEYR¶$-d®Yý$JôÅOõ(´?Qľ5ço¹|ã!©ðÀå8ê©¢Àª¿q³Q·ä2÷HùnÏèÛºnç.dCÝ)#»2GÍ¥%i)û¶K2t©¯IJ]«kwõÝwÔ\\M_í(ö©;05ÃQKI4²LãÐ'ÞÚQs©ðä`yáÍ¡¡ÿ;]òlj6PÐ2SO÷C§w³ÐÅã¡AÂǧ§¿t¾µ©GZ_óÙ±ãeØ!`ünÄÍD$å}Î8^³FR%ýéÇë&H¼õÝ;®ã0{º.1ÕßS?X±&$äoã8¤$Bâ;r¨,IP©çZñ¼] àï¤lw¾4ïÛM¿v-h/0L¾5[~bV¬øniÙ§¨MVÇR¤×î_Í>9RÔ\\S&Ê\\©ì¹Tv{pR»°õ£id¯hñÄ°ÛÛ®a|Èf]FnKÔ¦Re)hEåu(Öº:îWÏ3S\\sý)N9k®?ÀÙ=Ĭڦ/ÈÔ«ëUë:p3ª²Ì«ã¶Vdá»Ö3À¸¶yÞªÖ50õª£S×ì&¬J0+«KRíº-Ü6ÚPne/Ë­¼É^[¹¬p%ò[½p¡P,dgej>8Ë,¡FÜü$%â'ñùn»ôqì%e_´h6»¥*úÿÑyòïEöwÆOZ+", - "eccLevel": "4%", + "ecLevel": "4%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099046122105112", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "4%" } diff --git a/tests/__snapshots__/pdf417-2/24/fast-180.json b/tests/__snapshots__/pdf417-2/24/fast-180.json index 59c4afd4..dd628a30 100644 --- a/tests/__snapshots__/pdf417-2/24/fast-180.json +++ b/tests/__snapshots__/pdf417-2/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f68c5d5", "bytesECI": "646f52f", "text": "xÅ[@ß7ñ?LyÙ§.jlRui·ÝTÛdû6QIÌûÇöôug°ú\"ç3ß¹Ìå:÷ûM¾Sq4Tô®¦ D«¡òyñp×WîÝÎMçÆy3þ8Zz!a$å=Ðüy¾<¢Û]×OýÛ¢ËÖEYR¶$-d®Yý$JôÅOõ(´?Qľ5ço¹|ã!©ðÀå8ê©¢Àª¿q³Q·ä2÷HùnÏèÛºnç.dCÝ)#»2GÍ¥%i)û¶K2t©¯IJ]«kwõÝwÔ\\M_í(ö©;05ÃQKI4²LãÐ'ÞÚQs©ðä`yáÍ¡¡ÿ;]òlj6PÐ2SO÷C§w³ÐÅã¡AÂǧ§¿t¾µ©GZ_óÙ±ãeØ!`ünÄÍD$å}Î8^³FR%ýéÇë&H¼õÝ;®ã0{º.1ÕßS?X±&$äoã8¤$Bâ;r¨,IP©çZñ¼] àï¤lw¾4ïÛM¿v-h/0L¾5[~bV¬øniÙ§¨MVÇR¤×î_Í>9RÔ\\S&Ê\\©ì¹Tv{pR»°õ£id¯hñÄ°ÛÛ®a|Èf]FnKÔ¦Re)hEåu(Öº:îWÏ3S\\sý)N9k®?ÀÙ=Ĭڦ/ÈÔ«ëUë:p3ª²Ì«ã¶Vdá»Ö3À¸¶yÞªÖ50õª£S×ì&¬J0+«KRíº-Ü6ÚPne/Ë­¼É^[¹¬p%ò[½p¡P,dgej>8Ë,¡FÜü$%â'ñùn»ôqì%e_´h6»¥*úÿÑyòïEöwÆOZ+", - "eccLevel": "4%", + "ecLevel": "4%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099046122105112", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "4%" } diff --git a/tests/__snapshots__/pdf417-2/24/slow-0.json b/tests/__snapshots__/pdf417-2/24/slow-0.json index d2db4a96..c1b93e15 100644 --- a/tests/__snapshots__/pdf417-2/24/slow-0.json +++ b/tests/__snapshots__/pdf417-2/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f68c5d5", "bytesECI": "646f52f", "text": "xÅ[@ß7ñ?LyÙ§.jlRui·ÝTÛdû6QIÌûÇöôug°ú\"ç3ß¹Ìå:÷ûM¾Sq4Tô®¦ D«¡òyñp×WîÝÎMçÆy3þ8Zz!a$å=Ðüy¾<¢Û]×OýÛ¢ËÖEYR¶$-d®Yý$JôÅOõ(´?Qľ5ço¹|ã!©ðÀå8ê©¢Àª¿q³Q·ä2÷HùnÏèÛºnç.dCÝ)#»2GÍ¥%i)û¶K2t©¯IJ]«kwõÝwÔ\\M_í(ö©;05ÃQKI4²LãÐ'ÞÚQs©ðä`yáÍ¡¡ÿ;]òlj6PÐ2SO÷C§w³ÐÅã¡AÂǧ§¿t¾µ©GZ_óÙ±ãeØ!`ünÄÍD$å}Î8^³FR%ýéÇë&H¼õÝ;®ã0{º.1ÕßS?X±&$äoã8¤$Bâ;r¨,IP©çZñ¼] àï¤lw¾4ïÛM¿v-h/0L¾5[~bV¬øniÙ§¨MVÇR¤×î_Í>9RÔ\\S&Ê\\©ì¹Tv{pR»°õ£id¯hñÄ°ÛÛ®a|Èf]FnKÔ¦Re)hEåu(Öº:îWÏ3S\\sý)N9k®?ÀÙ=Ĭڦ/ÈÔ«ëUë:p3ª²Ì«ã¶Vdá»Ö3À¸¶yÞªÖ50õª£S×ì&¬J0+«KRíº-Ü6ÚPne/Ë­¼É^[¹¬p%ò[½p¡P,dgej>8Ë,¡FÜü$%â'ñùn»ôqì%e_´h6»¥*úÿÑyòïEöwÆOZ+", - "eccLevel": "4%", + "ecLevel": "4%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099046122105112", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "4%" } diff --git a/tests/__snapshots__/pdf417-2/24/slow-180.json b/tests/__snapshots__/pdf417-2/24/slow-180.json index 59c4afd4..dd628a30 100644 --- a/tests/__snapshots__/pdf417-2/24/slow-180.json +++ b/tests/__snapshots__/pdf417-2/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f68c5d5", "bytesECI": "646f52f", "text": "xÅ[@ß7ñ?LyÙ§.jlRui·ÝTÛdû6QIÌûÇöôug°ú\"ç3ß¹Ìå:÷ûM¾Sq4Tô®¦ D«¡òyñp×WîÝÎMçÆy3þ8Zz!a$å=Ðüy¾<¢Û]×OýÛ¢ËÖEYR¶$-d®Yý$JôÅOõ(´?Qľ5ço¹|ã!©ðÀå8ê©¢Àª¿q³Q·ä2÷HùnÏèÛºnç.dCÝ)#»2GÍ¥%i)û¶K2t©¯IJ]«kwõÝwÔ\\M_í(ö©;05ÃQKI4²LãÐ'ÞÚQs©ðä`yáÍ¡¡ÿ;]òlj6PÐ2SO÷C§w³ÐÅã¡AÂǧ§¿t¾µ©GZ_óÙ±ãeØ!`ünÄÍD$å}Î8^³FR%ýéÇë&H¼õÝ;®ã0{º.1ÕßS?X±&$äoã8¤$Bâ;r¨,IP©çZñ¼] àï¤lw¾4ïÛM¿v-h/0L¾5[~bV¬øniÙ§¨MVÇR¤×î_Í>9RÔ\\S&Ê\\©ì¹Tv{pR»°õ£id¯hñÄ°ÛÛ®a|Èf]FnKÔ¦Re)hEåu(Öº:îWÏ3S\\sý)N9k®?ÀÙ=Ĭڦ/ÈÔ«ëUë:p3ª²Ì«ã¶Vdá»Ö3À¸¶yÞªÖ50õª£S×ì&¬J0+«KRíº-Ü6ÚPne/Ë­¼É^[¹¬p%ò[½p¡P,dgej>8Ë,¡FÜü$%â'ñùn»ôqì%e_´h6»¥*úÿÑyòïEöwÆOZ+", - "eccLevel": "4%", + "ecLevel": "4%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099046122105112", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "4%" } diff --git a/tests/__snapshots__/pdf417-2/24/slow-270.json b/tests/__snapshots__/pdf417-2/24/slow-270.json index 0f7253f4..b484ead9 100644 --- a/tests/__snapshots__/pdf417-2/24/slow-270.json +++ b/tests/__snapshots__/pdf417-2/24/slow-270.json @@ -5,7 +5,7 @@ "bytes": "f68c5d5", "bytesECI": "646f52f", "text": "xÅ[@ß7ñ?LyÙ§.jlRui·ÝTÛdû6QIÌûÇöôug°ú\"ç3ß¹Ìå:÷ûM¾Sq4Tô®¦ D«¡òyñp×WîÝÎMçÆy3þ8Zz!a$å=Ðüy¾<¢Û]×OýÛ¢ËÖEYR¶$-d®Yý$JôÅOõ(´?Qľ5ço¹|ã!©ðÀå8ê©¢Àª¿q³Q·ä2÷HùnÏèÛºnç.dCÝ)#»2GÍ¥%i)û¶K2t©¯IJ]«kwõÝwÔ\\M_í(ö©;05ÃQKI4²LãÐ'ÞÚQs©ðä`yáÍ¡¡ÿ;]òlj6PÐ2SO÷C§w³ÐÅã¡AÂǧ§¿t¾µ©GZ_óÙ±ãeØ!`ünÄÍD$å}Î8^³FR%ýéÇë&H¼õÝ;®ã0{º.1ÕßS?X±&$äoã8¤$Bâ;r¨,IP©çZñ¼] àï¤lw¾4ïÛM¿v-h/0L¾5[~bV¬øniÙ§¨MVÇR¤×î_Í>9RÔ\\S&Ê\\©ì¹Tv{pR»°õ£id¯hñÄ°ÛÛ®a|Èf]FnKÔ¦Re)hEåu(Öº:îWÏ3S\\sý)N9k®?ÀÙ=Ĭڦ/ÈÔ«ëUë:p3ª²Ì«ã¶Vdá»Ö3À¸¶yÞªÖ50õª£S×ì&¬J0+«KRíº-Ü6ÚPne/Ë­¼É^[¹¬p%ò[½p¡P,dgej>8Ë,¡FÜü$%â'ñùn»ôqì%e_´h6»¥*úÿÑyòïEöwÆOZ+", - "eccLevel": "4%", + "ecLevel": "4%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099046122105112", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "4%" } diff --git a/tests/__snapshots__/pdf417-2/24/slow-90.json b/tests/__snapshots__/pdf417-2/24/slow-90.json index b54c699a..8985da19 100644 --- a/tests/__snapshots__/pdf417-2/24/slow-90.json +++ b/tests/__snapshots__/pdf417-2/24/slow-90.json @@ -5,7 +5,7 @@ "bytes": "f68c5d5", "bytesECI": "646f52f", "text": "xÅ[@ß7ñ?LyÙ§.jlRui·ÝTÛdû6QIÌûÇöôug°ú\"ç3ß¹Ìå:÷ûM¾Sq4Tô®¦ D«¡òyñp×WîÝÎMçÆy3þ8Zz!a$å=Ðüy¾<¢Û]×OýÛ¢ËÖEYR¶$-d®Yý$JôÅOõ(´?Qľ5ço¹|ã!©ðÀå8ê©¢Àª¿q³Q·ä2÷HùnÏèÛºnç.dCÝ)#»2GÍ¥%i)û¶K2t©¯IJ]«kwõÝwÔ\\M_í(ö©;05ÃQKI4²LãÐ'ÞÚQs©ðä`yáÍ¡¡ÿ;]òlj6PÐ2SO÷C§w³ÐÅã¡AÂǧ§¿t¾µ©GZ_óÙ±ãeØ!`ünÄÍD$å}Î8^³FR%ýéÇë&H¼õÝ;®ã0{º.1ÕßS?X±&$äoã8¤$Bâ;r¨,IP©çZñ¼] àï¤lw¾4ïÛM¿v-h/0L¾5[~bV¬øniÙ§¨MVÇR¤×î_Í>9RÔ\\S&Ê\\©ì¹Tv{pR»°õ£id¯hñÄ°ÛÛ®a|Èf]FnKÔ¦Re)hEåu(Öº:îWÏ3S\\sý)N9k®?ÀÙ=Ĭڦ/ÈÔ«ëUë:p3ª²Ì«ã¶Vdá»Ö3À¸¶yÞªÖ50õª£S×ì&¬J0+«KRíº-Ü6ÚPne/Ë­¼É^[¹¬p%ò[½p¡P,dgej>8Ë,¡FÜü$%â'ñùn»ôqì%e_´h6»¥*úÿÑyòïEöwÆOZ+", - "eccLevel": "4%", + "ecLevel": "4%", "contentType": "Binary", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099046122105112", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "4%" } diff --git a/tests/__snapshots__/pdf417-2/25/fast-0.json b/tests/__snapshots__/pdf417-2/25/fast-0.json index dc879ff4..f351863e 100644 --- a/tests/__snapshots__/pdf417-2/25/fast-0.json +++ b/tests/__snapshots__/pdf417-2/25/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-2/25/fast-180.json b/tests/__snapshots__/pdf417-2/25/fast-180.json index 30bd5a3f..fbb7631c 100644 --- a/tests/__snapshots__/pdf417-2/25/fast-180.json +++ b/tests/__snapshots__/pdf417-2/25/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-2/25/slow-0.json b/tests/__snapshots__/pdf417-2/25/slow-0.json index dc879ff4..f351863e 100644 --- a/tests/__snapshots__/pdf417-2/25/slow-0.json +++ b/tests/__snapshots__/pdf417-2/25/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-2/25/slow-180.json b/tests/__snapshots__/pdf417-2/25/slow-180.json index 30bd5a3f..fbb7631c 100644 --- a/tests/__snapshots__/pdf417-2/25/slow-180.json +++ b/tests/__snapshots__/pdf417-2/25/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-2/25/slow-270.json b/tests/__snapshots__/pdf417-2/25/slow-270.json index ac2c6bd7..ac3e1a1d 100644 --- a/tests/__snapshots__/pdf417-2/25/slow-270.json +++ b/tests/__snapshots__/pdf417-2/25/slow-270.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-2/25/slow-90.json b/tests/__snapshots__/pdf417-2/25/slow-90.json index 5fe3fa85..ac4ddccf 100644 --- a/tests/__snapshots__/pdf417-2/25/slow-90.json +++ b/tests/__snapshots__/pdf417-2/25/slow-90.json @@ -5,7 +5,7 @@ "bytes": "0d23f65", "bytesECI": "d814ee2", "text": "This is PDF417", - "eccLevel": "36%", + "ecLevel": "36%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "36%" } diff --git a/tests/__snapshots__/pdf417-3/01/fast-0.json b/tests/__snapshots__/pdf417-3/01/fast-0.json index c2d6cda6..1f8a604a 100644 --- a/tests/__snapshots__/pdf417-3/01/fast-0.json +++ b/tests/__snapshots__/pdf417-3/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/01/fast-180.json b/tests/__snapshots__/pdf417-3/01/fast-180.json index aac5231c..2bee064f 100644 --- a/tests/__snapshots__/pdf417-3/01/fast-180.json +++ b/tests/__snapshots__/pdf417-3/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/01/pure-0.json b/tests/__snapshots__/pdf417-3/01/pure-0.json index 1842143f..e0bfe708 100644 --- a/tests/__snapshots__/pdf417-3/01/pure-0.json +++ b/tests/__snapshots__/pdf417-3/01/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/01/slow-0.json b/tests/__snapshots__/pdf417-3/01/slow-0.json index c2d6cda6..1f8a604a 100644 --- a/tests/__snapshots__/pdf417-3/01/slow-0.json +++ b/tests/__snapshots__/pdf417-3/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/01/slow-180.json b/tests/__snapshots__/pdf417-3/01/slow-180.json index aac5231c..2bee064f 100644 --- a/tests/__snapshots__/pdf417-3/01/slow-180.json +++ b/tests/__snapshots__/pdf417-3/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/01/slow-270.json b/tests/__snapshots__/pdf417-3/01/slow-270.json index b3f059ac..137123ff 100644 --- a/tests/__snapshots__/pdf417-3/01/slow-270.json +++ b/tests/__snapshots__/pdf417-3/01/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/01/slow-90.json b/tests/__snapshots__/pdf417-3/01/slow-90.json index aee3f432..75c1ff43 100644 --- a/tests/__snapshots__/pdf417-3/01/slow-90.json +++ b/tests/__snapshots__/pdf417-3/01/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/02/fast-0.json b/tests/__snapshots__/pdf417-3/02/fast-0.json index 51871f7e..915245e6 100644 --- a/tests/__snapshots__/pdf417-3/02/fast-0.json +++ b/tests/__snapshots__/pdf417-3/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/02/fast-180.json b/tests/__snapshots__/pdf417-3/02/fast-180.json index 4822c7ac..a7801693 100644 --- a/tests/__snapshots__/pdf417-3/02/fast-180.json +++ b/tests/__snapshots__/pdf417-3/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/02/pure-0.json b/tests/__snapshots__/pdf417-3/02/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/pdf417-3/02/pure-0.json +++ b/tests/__snapshots__/pdf417-3/02/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/pdf417-3/02/slow-0.json b/tests/__snapshots__/pdf417-3/02/slow-0.json index 51871f7e..915245e6 100644 --- a/tests/__snapshots__/pdf417-3/02/slow-0.json +++ b/tests/__snapshots__/pdf417-3/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/02/slow-180.json b/tests/__snapshots__/pdf417-3/02/slow-180.json index 4822c7ac..a7801693 100644 --- a/tests/__snapshots__/pdf417-3/02/slow-180.json +++ b/tests/__snapshots__/pdf417-3/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/02/slow-270.json b/tests/__snapshots__/pdf417-3/02/slow-270.json index 5db464e8..91a80577 100644 --- a/tests/__snapshots__/pdf417-3/02/slow-270.json +++ b/tests/__snapshots__/pdf417-3/02/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/02/slow-90.json b/tests/__snapshots__/pdf417-3/02/slow-90.json index 26e597d6..b4b4ec39 100644 --- a/tests/__snapshots__/pdf417-3/02/slow-90.json +++ b/tests/__snapshots__/pdf417-3/02/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/03/fast-0.json b/tests/__snapshots__/pdf417-3/03/fast-0.json index 666dd62b..feb221ae 100644 --- a/tests/__snapshots__/pdf417-3/03/fast-0.json +++ b/tests/__snapshots__/pdf417-3/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/03/fast-180.json b/tests/__snapshots__/pdf417-3/03/fast-180.json index f05e44bf..e1c773ef 100644 --- a/tests/__snapshots__/pdf417-3/03/fast-180.json +++ b/tests/__snapshots__/pdf417-3/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/03/pure-0.json b/tests/__snapshots__/pdf417-3/03/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/pdf417-3/03/pure-0.json +++ b/tests/__snapshots__/pdf417-3/03/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/pdf417-3/03/slow-0.json b/tests/__snapshots__/pdf417-3/03/slow-0.json index 666dd62b..feb221ae 100644 --- a/tests/__snapshots__/pdf417-3/03/slow-0.json +++ b/tests/__snapshots__/pdf417-3/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/03/slow-180.json b/tests/__snapshots__/pdf417-3/03/slow-180.json index f05e44bf..e1c773ef 100644 --- a/tests/__snapshots__/pdf417-3/03/slow-180.json +++ b/tests/__snapshots__/pdf417-3/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/03/slow-270.json b/tests/__snapshots__/pdf417-3/03/slow-270.json index dcdebaa9..37e0f6c4 100644 --- a/tests/__snapshots__/pdf417-3/03/slow-270.json +++ b/tests/__snapshots__/pdf417-3/03/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/03/slow-90.json b/tests/__snapshots__/pdf417-3/03/slow-90.json index bfc5a6c3..643e16ee 100644 --- a/tests/__snapshots__/pdf417-3/03/slow-90.json +++ b/tests/__snapshots__/pdf417-3/03/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/04/fast-0.json b/tests/__snapshots__/pdf417-3/04/fast-0.json index 8b0ad9a8..8b3509eb 100644 --- a/tests/__snapshots__/pdf417-3/04/fast-0.json +++ b/tests/__snapshots__/pdf417-3/04/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/04/fast-180.json b/tests/__snapshots__/pdf417-3/04/fast-180.json index fb2a991e..6edc2ea7 100644 --- a/tests/__snapshots__/pdf417-3/04/fast-180.json +++ b/tests/__snapshots__/pdf417-3/04/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/04/pure-0.json b/tests/__snapshots__/pdf417-3/04/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/pdf417-3/04/pure-0.json +++ b/tests/__snapshots__/pdf417-3/04/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/pdf417-3/04/slow-0.json b/tests/__snapshots__/pdf417-3/04/slow-0.json index 8b0ad9a8..8b3509eb 100644 --- a/tests/__snapshots__/pdf417-3/04/slow-0.json +++ b/tests/__snapshots__/pdf417-3/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/04/slow-180.json b/tests/__snapshots__/pdf417-3/04/slow-180.json index fb2a991e..6edc2ea7 100644 --- a/tests/__snapshots__/pdf417-3/04/slow-180.json +++ b/tests/__snapshots__/pdf417-3/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/04/slow-270.json b/tests/__snapshots__/pdf417-3/04/slow-270.json index b50b0e7d..19aeac24 100644 --- a/tests/__snapshots__/pdf417-3/04/slow-270.json +++ b/tests/__snapshots__/pdf417-3/04/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/04/slow-90.json b/tests/__snapshots__/pdf417-3/04/slow-90.json index 8a4d8f16..7043acc2 100644 --- a/tests/__snapshots__/pdf417-3/04/slow-90.json +++ b/tests/__snapshots__/pdf417-3/04/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/05/fast-0.json b/tests/__snapshots__/pdf417-3/05/fast-0.json index 28b78a6d..3b856059 100644 --- a/tests/__snapshots__/pdf417-3/05/fast-0.json +++ b/tests/__snapshots__/pdf417-3/05/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/05/fast-180.json b/tests/__snapshots__/pdf417-3/05/fast-180.json index 7bfa1dff..1e966d44 100644 --- a/tests/__snapshots__/pdf417-3/05/fast-180.json +++ b/tests/__snapshots__/pdf417-3/05/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/05/pure-0.json b/tests/__snapshots__/pdf417-3/05/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/pdf417-3/05/pure-0.json +++ b/tests/__snapshots__/pdf417-3/05/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/pdf417-3/05/slow-0.json b/tests/__snapshots__/pdf417-3/05/slow-0.json index 28b78a6d..3b856059 100644 --- a/tests/__snapshots__/pdf417-3/05/slow-0.json +++ b/tests/__snapshots__/pdf417-3/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/05/slow-180.json b/tests/__snapshots__/pdf417-3/05/slow-180.json index 7bfa1dff..1e966d44 100644 --- a/tests/__snapshots__/pdf417-3/05/slow-180.json +++ b/tests/__snapshots__/pdf417-3/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/05/slow-270.json b/tests/__snapshots__/pdf417-3/05/slow-270.json index 64fb2b22..e6927f5a 100644 --- a/tests/__snapshots__/pdf417-3/05/slow-270.json +++ b/tests/__snapshots__/pdf417-3/05/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/05/slow-90.json b/tests/__snapshots__/pdf417-3/05/slow-90.json index 645a9d00..46f5160c 100644 --- a/tests/__snapshots__/pdf417-3/05/slow-90.json +++ b/tests/__snapshots__/pdf417-3/05/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/06/fast-0.json b/tests/__snapshots__/pdf417-3/06/fast-0.json index 4d3c5db9..e04a1564 100644 --- a/tests/__snapshots__/pdf417-3/06/fast-0.json +++ b/tests/__snapshots__/pdf417-3/06/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/06/fast-180.json b/tests/__snapshots__/pdf417-3/06/fast-180.json index d18f7212..aec377b8 100644 --- a/tests/__snapshots__/pdf417-3/06/fast-180.json +++ b/tests/__snapshots__/pdf417-3/06/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/06/pure-0.json b/tests/__snapshots__/pdf417-3/06/pure-0.json index 9282fd1d..791b49b3 100644 --- a/tests/__snapshots__/pdf417-3/06/pure-0.json +++ b/tests/__snapshots__/pdf417-3/06/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/06/slow-0.json b/tests/__snapshots__/pdf417-3/06/slow-0.json index 4d3c5db9..e04a1564 100644 --- a/tests/__snapshots__/pdf417-3/06/slow-0.json +++ b/tests/__snapshots__/pdf417-3/06/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/06/slow-180.json b/tests/__snapshots__/pdf417-3/06/slow-180.json index d18f7212..aec377b8 100644 --- a/tests/__snapshots__/pdf417-3/06/slow-180.json +++ b/tests/__snapshots__/pdf417-3/06/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/06/slow-270.json b/tests/__snapshots__/pdf417-3/06/slow-270.json index c8d081ee..35cb4edc 100644 --- a/tests/__snapshots__/pdf417-3/06/slow-270.json +++ b/tests/__snapshots__/pdf417-3/06/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/06/slow-90.json b/tests/__snapshots__/pdf417-3/06/slow-90.json index e6f26f28..8e64f4f0 100644 --- a/tests/__snapshots__/pdf417-3/06/slow-90.json +++ b/tests/__snapshots__/pdf417-3/06/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/07/fast-0.json b/tests/__snapshots__/pdf417-3/07/fast-0.json index 6c36ef63..031a677d 100644 --- a/tests/__snapshots__/pdf417-3/07/fast-0.json +++ b/tests/__snapshots__/pdf417-3/07/fast-0.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/07/fast-180.json b/tests/__snapshots__/pdf417-3/07/fast-180.json index 262ea31b..6da0d6ab 100644 --- a/tests/__snapshots__/pdf417-3/07/fast-180.json +++ b/tests/__snapshots__/pdf417-3/07/fast-180.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/07/pure-0.json b/tests/__snapshots__/pdf417-3/07/pure-0.json index e2cc7f96..c379b654 100644 --- a/tests/__snapshots__/pdf417-3/07/pure-0.json +++ b/tests/__snapshots__/pdf417-3/07/pure-0.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/07/slow-0.json b/tests/__snapshots__/pdf417-3/07/slow-0.json index 6c36ef63..031a677d 100644 --- a/tests/__snapshots__/pdf417-3/07/slow-0.json +++ b/tests/__snapshots__/pdf417-3/07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/07/slow-180.json b/tests/__snapshots__/pdf417-3/07/slow-180.json index 262ea31b..6da0d6ab 100644 --- a/tests/__snapshots__/pdf417-3/07/slow-180.json +++ b/tests/__snapshots__/pdf417-3/07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/07/slow-270.json b/tests/__snapshots__/pdf417-3/07/slow-270.json index 6713673a..db0ea50a 100644 --- a/tests/__snapshots__/pdf417-3/07/slow-270.json +++ b/tests/__snapshots__/pdf417-3/07/slow-270.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/07/slow-90.json b/tests/__snapshots__/pdf417-3/07/slow-90.json index 4fb9d719..1ba29bb7 100644 --- a/tests/__snapshots__/pdf417-3/07/slow-90.json +++ b/tests/__snapshots__/pdf417-3/07/slow-90.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/08/fast-0.json b/tests/__snapshots__/pdf417-3/08/fast-0.json index c440954d..08ab71a2 100644 --- a/tests/__snapshots__/pdf417-3/08/fast-0.json +++ b/tests/__snapshots__/pdf417-3/08/fast-0.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/08/fast-180.json b/tests/__snapshots__/pdf417-3/08/fast-180.json index 029b2ccf..e8fd13e7 100644 --- a/tests/__snapshots__/pdf417-3/08/fast-180.json +++ b/tests/__snapshots__/pdf417-3/08/fast-180.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/08/pure-0.json b/tests/__snapshots__/pdf417-3/08/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/pdf417-3/08/pure-0.json +++ b/tests/__snapshots__/pdf417-3/08/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/pdf417-3/08/slow-0.json b/tests/__snapshots__/pdf417-3/08/slow-0.json index c440954d..08ab71a2 100644 --- a/tests/__snapshots__/pdf417-3/08/slow-0.json +++ b/tests/__snapshots__/pdf417-3/08/slow-0.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/08/slow-180.json b/tests/__snapshots__/pdf417-3/08/slow-180.json index 029b2ccf..e8fd13e7 100644 --- a/tests/__snapshots__/pdf417-3/08/slow-180.json +++ b/tests/__snapshots__/pdf417-3/08/slow-180.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/08/slow-270.json b/tests/__snapshots__/pdf417-3/08/slow-270.json index beded3ba..cc50e3cb 100644 --- a/tests/__snapshots__/pdf417-3/08/slow-270.json +++ b/tests/__snapshots__/pdf417-3/08/slow-270.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/08/slow-90.json b/tests/__snapshots__/pdf417-3/08/slow-90.json index e77d08ea..e56e83ec 100644 --- a/tests/__snapshots__/pdf417-3/08/slow-90.json +++ b/tests/__snapshots__/pdf417-3/08/slow-90.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/09/fast-0.json b/tests/__snapshots__/pdf417-3/09/fast-0.json index 05e6428b..ff767dae 100644 --- a/tests/__snapshots__/pdf417-3/09/fast-0.json +++ b/tests/__snapshots__/pdf417-3/09/fast-0.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/09/fast-180.json b/tests/__snapshots__/pdf417-3/09/fast-180.json index f4ccbde2..25890787 100644 --- a/tests/__snapshots__/pdf417-3/09/fast-180.json +++ b/tests/__snapshots__/pdf417-3/09/fast-180.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/09/pure-0.json b/tests/__snapshots__/pdf417-3/09/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/pdf417-3/09/pure-0.json +++ b/tests/__snapshots__/pdf417-3/09/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/pdf417-3/09/slow-0.json b/tests/__snapshots__/pdf417-3/09/slow-0.json index 05e6428b..ff767dae 100644 --- a/tests/__snapshots__/pdf417-3/09/slow-0.json +++ b/tests/__snapshots__/pdf417-3/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/09/slow-180.json b/tests/__snapshots__/pdf417-3/09/slow-180.json index f4ccbde2..25890787 100644 --- a/tests/__snapshots__/pdf417-3/09/slow-180.json +++ b/tests/__snapshots__/pdf417-3/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/09/slow-270.json b/tests/__snapshots__/pdf417-3/09/slow-270.json index b3c001d6..4b736f2a 100644 --- a/tests/__snapshots__/pdf417-3/09/slow-270.json +++ b/tests/__snapshots__/pdf417-3/09/slow-270.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/09/slow-90.json b/tests/__snapshots__/pdf417-3/09/slow-90.json index 512bdea5..f3a5075f 100644 --- a/tests/__snapshots__/pdf417-3/09/slow-90.json +++ b/tests/__snapshots__/pdf417-3/09/slow-90.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/10/fast-0.json b/tests/__snapshots__/pdf417-3/10/fast-0.json index 6d25d1b6..363d46bb 100644 --- a/tests/__snapshots__/pdf417-3/10/fast-0.json +++ b/tests/__snapshots__/pdf417-3/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/10/fast-180.json b/tests/__snapshots__/pdf417-3/10/fast-180.json index 1a1b46f9..a4c65448 100644 --- a/tests/__snapshots__/pdf417-3/10/fast-180.json +++ b/tests/__snapshots__/pdf417-3/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/10/pure-0.json b/tests/__snapshots__/pdf417-3/10/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/pdf417-3/10/pure-0.json +++ b/tests/__snapshots__/pdf417-3/10/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/pdf417-3/10/slow-0.json b/tests/__snapshots__/pdf417-3/10/slow-0.json index 6d25d1b6..363d46bb 100644 --- a/tests/__snapshots__/pdf417-3/10/slow-0.json +++ b/tests/__snapshots__/pdf417-3/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/10/slow-180.json b/tests/__snapshots__/pdf417-3/10/slow-180.json index 1a1b46f9..a4c65448 100644 --- a/tests/__snapshots__/pdf417-3/10/slow-180.json +++ b/tests/__snapshots__/pdf417-3/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/10/slow-270.json b/tests/__snapshots__/pdf417-3/10/slow-270.json index bc95df2f..5eed273f 100644 --- a/tests/__snapshots__/pdf417-3/10/slow-270.json +++ b/tests/__snapshots__/pdf417-3/10/slow-270.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/10/slow-90.json b/tests/__snapshots__/pdf417-3/10/slow-90.json index f7ab0fe2..aeb93e8f 100644 --- a/tests/__snapshots__/pdf417-3/10/slow-90.json +++ b/tests/__snapshots__/pdf417-3/10/slow-90.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/11/fast-0.json b/tests/__snapshots__/pdf417-3/11/fast-0.json index 6c36ef63..031a677d 100644 --- a/tests/__snapshots__/pdf417-3/11/fast-0.json +++ b/tests/__snapshots__/pdf417-3/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/11/fast-180.json b/tests/__snapshots__/pdf417-3/11/fast-180.json index 262ea31b..6da0d6ab 100644 --- a/tests/__snapshots__/pdf417-3/11/fast-180.json +++ b/tests/__snapshots__/pdf417-3/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/11/pure-0.json b/tests/__snapshots__/pdf417-3/11/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/pdf417-3/11/pure-0.json +++ b/tests/__snapshots__/pdf417-3/11/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/pdf417-3/11/slow-0.json b/tests/__snapshots__/pdf417-3/11/slow-0.json index 6c36ef63..031a677d 100644 --- a/tests/__snapshots__/pdf417-3/11/slow-0.json +++ b/tests/__snapshots__/pdf417-3/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/11/slow-180.json b/tests/__snapshots__/pdf417-3/11/slow-180.json index 262ea31b..6da0d6ab 100644 --- a/tests/__snapshots__/pdf417-3/11/slow-180.json +++ b/tests/__snapshots__/pdf417-3/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/11/slow-270.json b/tests/__snapshots__/pdf417-3/11/slow-270.json index 6713673a..db0ea50a 100644 --- a/tests/__snapshots__/pdf417-3/11/slow-270.json +++ b/tests/__snapshots__/pdf417-3/11/slow-270.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/11/slow-90.json b/tests/__snapshots__/pdf417-3/11/slow-90.json index 4fb9d719..1ba29bb7 100644 --- a/tests/__snapshots__/pdf417-3/11/slow-90.json +++ b/tests/__snapshots__/pdf417-3/11/slow-90.json @@ -5,7 +5,7 @@ "bytes": "974af0b", "bytesECI": "c6bd63b", "text": "A larger PDF417 barcode with text and error correction level 4.", - "eccLevel": "46%", + "ecLevel": "46%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "46%" } diff --git a/tests/__snapshots__/pdf417-3/12/fast-0.json b/tests/__snapshots__/pdf417-3/12/fast-0.json index eef47944..fcc13f9c 100644 --- a/tests/__snapshots__/pdf417-3/12/fast-0.json +++ b/tests/__snapshots__/pdf417-3/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "59799a2", "bytesECI": "609644c", "text": "[)>010210011840539080122327430201FDE238351251289 1/13.0LBY76 NINTH AVENUENEW YORK CITYNYSUSAN ZOLEZZI0610ZED00411ZGOOGLE12Z212565418630Z3100119200000114Z4TH FLOOR15Z39795720Z0.000.0028Z9080122327430201K533 PROGRAMS26Z584a", - "eccLevel": "24%", + "ecLevel": "24%", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "24%" } diff --git a/tests/__snapshots__/pdf417-3/12/fast-180.json b/tests/__snapshots__/pdf417-3/12/fast-180.json index 0b2142a7..272c675a 100644 --- a/tests/__snapshots__/pdf417-3/12/fast-180.json +++ b/tests/__snapshots__/pdf417-3/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "59799a2", "bytesECI": "609644c", "text": "[)>010210011840539080122327430201FDE238351251289 1/13.0LBY76 NINTH AVENUENEW YORK CITYNYSUSAN ZOLEZZI0610ZED00411ZGOOGLE12Z212565418630Z3100119200000114Z4TH FLOOR15Z39795720Z0.000.0028Z9080122327430201K533 PROGRAMS26Z584a", - "eccLevel": "24%", + "ecLevel": "24%", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "24%" } diff --git a/tests/__snapshots__/pdf417-3/12/pure-0.json b/tests/__snapshots__/pdf417-3/12/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/pdf417-3/12/pure-0.json +++ b/tests/__snapshots__/pdf417-3/12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/pdf417-3/12/slow-0.json b/tests/__snapshots__/pdf417-3/12/slow-0.json index eef47944..fcc13f9c 100644 --- a/tests/__snapshots__/pdf417-3/12/slow-0.json +++ b/tests/__snapshots__/pdf417-3/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "59799a2", "bytesECI": "609644c", "text": "[)>010210011840539080122327430201FDE238351251289 1/13.0LBY76 NINTH AVENUENEW YORK CITYNYSUSAN ZOLEZZI0610ZED00411ZGOOGLE12Z212565418630Z3100119200000114Z4TH FLOOR15Z39795720Z0.000.0028Z9080122327430201K533 PROGRAMS26Z584a", - "eccLevel": "24%", + "ecLevel": "24%", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "24%" } diff --git a/tests/__snapshots__/pdf417-3/12/slow-180.json b/tests/__snapshots__/pdf417-3/12/slow-180.json index 0b2142a7..272c675a 100644 --- a/tests/__snapshots__/pdf417-3/12/slow-180.json +++ b/tests/__snapshots__/pdf417-3/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "59799a2", "bytesECI": "609644c", "text": "[)>010210011840539080122327430201FDE238351251289 1/13.0LBY76 NINTH AVENUENEW YORK CITYNYSUSAN ZOLEZZI0610ZED00411ZGOOGLE12Z212565418630Z3100119200000114Z4TH FLOOR15Z39795720Z0.000.0028Z9080122327430201K533 PROGRAMS26Z584a", - "eccLevel": "24%", + "ecLevel": "24%", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "24%" } diff --git a/tests/__snapshots__/pdf417-3/12/slow-270.json b/tests/__snapshots__/pdf417-3/12/slow-270.json index 75a3a6cb..c2e9cea8 100644 --- a/tests/__snapshots__/pdf417-3/12/slow-270.json +++ b/tests/__snapshots__/pdf417-3/12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "59799a2", "bytesECI": "609644c", "text": "[)>010210011840539080122327430201FDE238351251289 1/13.0LBY76 NINTH AVENUENEW YORK CITYNYSUSAN ZOLEZZI0610ZED00411ZGOOGLE12Z212565418630Z3100119200000114Z4TH FLOOR15Z39795720Z0.000.0028Z9080122327430201K533 PROGRAMS26Z584a", - "eccLevel": "24%", + "ecLevel": "24%", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "24%" } diff --git a/tests/__snapshots__/pdf417-3/12/slow-90.json b/tests/__snapshots__/pdf417-3/12/slow-90.json index 197036c6..84d94307 100644 --- a/tests/__snapshots__/pdf417-3/12/slow-90.json +++ b/tests/__snapshots__/pdf417-3/12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "59799a2", "bytesECI": "609644c", "text": "[)>010210011840539080122327430201FDE238351251289 1/13.0LBY76 NINTH AVENUENEW YORK CITYNYSUSAN ZOLEZZI0610ZED00411ZGOOGLE12Z212565418630Z3100119200000114Z4TH FLOOR15Z39795720Z0.000.0028Z9080122327430201K533 PROGRAMS26Z584a", - "eccLevel": "24%", + "ecLevel": "24%", "contentType": "ISO15434", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "24%" } diff --git a/tests/__snapshots__/pdf417-3/16/fast-0.json b/tests/__snapshots__/pdf417-3/16/fast-0.json index 7939454e..b9c84207 100644 --- a/tests/__snapshots__/pdf417-3/16/fast-0.json +++ b/tests/__snapshots__/pdf417-3/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/16/fast-180.json b/tests/__snapshots__/pdf417-3/16/fast-180.json index 86982dfa..ca10d9e3 100644 --- a/tests/__snapshots__/pdf417-3/16/fast-180.json +++ b/tests/__snapshots__/pdf417-3/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/16/pure-0.json b/tests/__snapshots__/pdf417-3/16/pure-0.json index 87e04c9d..29019368 100644 --- a/tests/__snapshots__/pdf417-3/16/pure-0.json +++ b/tests/__snapshots__/pdf417-3/16/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/16/slow-0.json b/tests/__snapshots__/pdf417-3/16/slow-0.json index 7939454e..b9c84207 100644 --- a/tests/__snapshots__/pdf417-3/16/slow-0.json +++ b/tests/__snapshots__/pdf417-3/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/16/slow-180.json b/tests/__snapshots__/pdf417-3/16/slow-180.json index 86982dfa..ca10d9e3 100644 --- a/tests/__snapshots__/pdf417-3/16/slow-180.json +++ b/tests/__snapshots__/pdf417-3/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/16/slow-270.json b/tests/__snapshots__/pdf417-3/16/slow-270.json index 221885ac..7d478834 100644 --- a/tests/__snapshots__/pdf417-3/16/slow-270.json +++ b/tests/__snapshots__/pdf417-3/16/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/16/slow-90.json b/tests/__snapshots__/pdf417-3/16/slow-90.json index 5373511f..ecb21c74 100644 --- a/tests/__snapshots__/pdf417-3/16/slow-90.json +++ b/tests/__snapshots__/pdf417-3/16/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/17/fast-0.json b/tests/__snapshots__/pdf417-3/17/fast-0.json index 84452880..d4df2a92 100644 --- a/tests/__snapshots__/pdf417-3/17/fast-0.json +++ b/tests/__snapshots__/pdf417-3/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/17/fast-180.json b/tests/__snapshots__/pdf417-3/17/fast-180.json index a956e8cc..1e84e871 100644 --- a/tests/__snapshots__/pdf417-3/17/fast-180.json +++ b/tests/__snapshots__/pdf417-3/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/17/pure-0.json b/tests/__snapshots__/pdf417-3/17/pure-0.json index d967625c..6007b80c 100644 --- a/tests/__snapshots__/pdf417-3/17/pure-0.json +++ b/tests/__snapshots__/pdf417-3/17/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/17/slow-0.json b/tests/__snapshots__/pdf417-3/17/slow-0.json index 84452880..d4df2a92 100644 --- a/tests/__snapshots__/pdf417-3/17/slow-0.json +++ b/tests/__snapshots__/pdf417-3/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/17/slow-180.json b/tests/__snapshots__/pdf417-3/17/slow-180.json index a956e8cc..1e84e871 100644 --- a/tests/__snapshots__/pdf417-3/17/slow-180.json +++ b/tests/__snapshots__/pdf417-3/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/17/slow-270.json b/tests/__snapshots__/pdf417-3/17/slow-270.json index 446e5702..ab400cf1 100644 --- a/tests/__snapshots__/pdf417-3/17/slow-270.json +++ b/tests/__snapshots__/pdf417-3/17/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/17/slow-90.json b/tests/__snapshots__/pdf417-3/17/slow-90.json index 0c59e205..df4fda29 100644 --- a/tests/__snapshots__/pdf417-3/17/slow-90.json +++ b/tests/__snapshots__/pdf417-3/17/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/18/fast-0.json b/tests/__snapshots__/pdf417-3/18/fast-0.json index 767ca66a..f283d24f 100644 --- a/tests/__snapshots__/pdf417-3/18/fast-0.json +++ b/tests/__snapshots__/pdf417-3/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/18/fast-180.json b/tests/__snapshots__/pdf417-3/18/fast-180.json index c3a9278d..527013b3 100644 --- a/tests/__snapshots__/pdf417-3/18/fast-180.json +++ b/tests/__snapshots__/pdf417-3/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/18/pure-0.json b/tests/__snapshots__/pdf417-3/18/pure-0.json index c2347aec..cb718bd7 100644 --- a/tests/__snapshots__/pdf417-3/18/pure-0.json +++ b/tests/__snapshots__/pdf417-3/18/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/18/slow-0.json b/tests/__snapshots__/pdf417-3/18/slow-0.json index 767ca66a..f283d24f 100644 --- a/tests/__snapshots__/pdf417-3/18/slow-0.json +++ b/tests/__snapshots__/pdf417-3/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/18/slow-180.json b/tests/__snapshots__/pdf417-3/18/slow-180.json index c3a9278d..527013b3 100644 --- a/tests/__snapshots__/pdf417-3/18/slow-180.json +++ b/tests/__snapshots__/pdf417-3/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/18/slow-270.json b/tests/__snapshots__/pdf417-3/18/slow-270.json index 57cc6053..3557841e 100644 --- a/tests/__snapshots__/pdf417-3/18/slow-270.json +++ b/tests/__snapshots__/pdf417-3/18/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/18/slow-90.json b/tests/__snapshots__/pdf417-3/18/slow-90.json index dbd54fa6..37eef2f0 100644 --- a/tests/__snapshots__/pdf417-3/18/slow-90.json +++ b/tests/__snapshots__/pdf417-3/18/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1f804ad", "bytesECI": "8945dd4", "text": "A larger PDF417 barcode with text and error correction level 8.", - "eccLevel": "93%", + "ecLevel": "93%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "93%" } diff --git a/tests/__snapshots__/pdf417-3/19/fast-0.json b/tests/__snapshots__/pdf417-3/19/fast-0.json index 85a8d72d..c8bf5bab 100644 --- a/tests/__snapshots__/pdf417-3/19/fast-0.json +++ b/tests/__snapshots__/pdf417-3/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "941d494", "bytesECI": "c98949d", "text": "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123", - "eccLevel": "7%", + "ecLevel": "7%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099061207209", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "7%" } diff --git a/tests/__snapshots__/pdf417-3/19/fast-180.json b/tests/__snapshots__/pdf417-3/19/fast-180.json index 207b429a..480ee830 100644 --- a/tests/__snapshots__/pdf417-3/19/fast-180.json +++ b/tests/__snapshots__/pdf417-3/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "941d494", "bytesECI": "c98949d", "text": "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123", - "eccLevel": "7%", + "ecLevel": "7%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099061207209", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "7%" } diff --git a/tests/__snapshots__/pdf417-3/19/pure-0.json b/tests/__snapshots__/pdf417-3/19/pure-0.json index 85a8d72d..c8bf5bab 100644 --- a/tests/__snapshots__/pdf417-3/19/pure-0.json +++ b/tests/__snapshots__/pdf417-3/19/pure-0.json @@ -5,7 +5,7 @@ "bytes": "941d494", "bytesECI": "c98949d", "text": "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123", - "eccLevel": "7%", + "ecLevel": "7%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099061207209", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "7%" } diff --git a/tests/__snapshots__/pdf417-3/19/slow-0.json b/tests/__snapshots__/pdf417-3/19/slow-0.json index 85a8d72d..c8bf5bab 100644 --- a/tests/__snapshots__/pdf417-3/19/slow-0.json +++ b/tests/__snapshots__/pdf417-3/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "941d494", "bytesECI": "c98949d", "text": "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123", - "eccLevel": "7%", + "ecLevel": "7%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099061207209", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "7%" } diff --git a/tests/__snapshots__/pdf417-3/19/slow-180.json b/tests/__snapshots__/pdf417-3/19/slow-180.json index 207b429a..480ee830 100644 --- a/tests/__snapshots__/pdf417-3/19/slow-180.json +++ b/tests/__snapshots__/pdf417-3/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "941d494", "bytesECI": "c98949d", "text": "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123", - "eccLevel": "7%", + "ecLevel": "7%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099061207209", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "7%" } diff --git a/tests/__snapshots__/pdf417-3/19/slow-270.json b/tests/__snapshots__/pdf417-3/19/slow-270.json index c99765f9..6ce44cc5 100644 --- a/tests/__snapshots__/pdf417-3/19/slow-270.json +++ b/tests/__snapshots__/pdf417-3/19/slow-270.json @@ -5,7 +5,7 @@ "bytes": "941d494", "bytesECI": "c98949d", "text": "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123", - "eccLevel": "7%", + "ecLevel": "7%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099061207209", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "7%" } diff --git a/tests/__snapshots__/pdf417-3/19/slow-90.json b/tests/__snapshots__/pdf417-3/19/slow-90.json index 3ab31333..a60c8ddf 100644 --- a/tests/__snapshots__/pdf417-3/19/slow-90.json +++ b/tests/__snapshots__/pdf417-3/19/slow-90.json @@ -5,7 +5,7 @@ "bytes": "941d494", "bytesECI": "c98949d", "text": "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123", - "eccLevel": "7%", + "ecLevel": "7%", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "099061207209", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "7%" } diff --git a/tests/__snapshots__/qrcode-1/1/fast-0.json b/tests/__snapshots__/qrcode-1/1/fast-0.json index 3a7e6db6..5775df2c 100644 --- a/tests/__snapshots__/qrcode-1/1/fast-0.json +++ b/tests/__snapshots__/qrcode-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/1/fast-180.json b/tests/__snapshots__/qrcode-1/1/fast-180.json index 0ddbab3c..14fd8966 100644 --- a/tests/__snapshots__/qrcode-1/1/fast-180.json +++ b/tests/__snapshots__/qrcode-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/1/fast-270.json b/tests/__snapshots__/qrcode-1/1/fast-270.json index cedf0897..beb0976a 100644 --- a/tests/__snapshots__/qrcode-1/1/fast-270.json +++ b/tests/__snapshots__/qrcode-1/1/fast-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/1/fast-90.json b/tests/__snapshots__/qrcode-1/1/fast-90.json index dc332af7..df206d3c 100644 --- a/tests/__snapshots__/qrcode-1/1/fast-90.json +++ b/tests/__snapshots__/qrcode-1/1/fast-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/1/slow-0.json b/tests/__snapshots__/qrcode-1/1/slow-0.json index 3a7e6db6..5775df2c 100644 --- a/tests/__snapshots__/qrcode-1/1/slow-0.json +++ b/tests/__snapshots__/qrcode-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/1/slow-180.json b/tests/__snapshots__/qrcode-1/1/slow-180.json index 0ddbab3c..14fd8966 100644 --- a/tests/__snapshots__/qrcode-1/1/slow-180.json +++ b/tests/__snapshots__/qrcode-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/1/slow-270.json b/tests/__snapshots__/qrcode-1/1/slow-270.json index cedf0897..beb0976a 100644 --- a/tests/__snapshots__/qrcode-1/1/slow-270.json +++ b/tests/__snapshots__/qrcode-1/1/slow-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/1/slow-90.json b/tests/__snapshots__/qrcode-1/1/slow-90.json index dc332af7..df206d3c 100644 --- a/tests/__snapshots__/qrcode-1/1/slow-90.json +++ b/tests/__snapshots__/qrcode-1/1/slow-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/11/fast-0.json b/tests/__snapshots__/qrcode-1/11/fast-0.json index 33dbc5ed..8b600ee6 100644 --- a/tests/__snapshots__/qrcode-1/11/fast-0.json +++ b/tests/__snapshots__/qrcode-1/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/11/fast-180.json b/tests/__snapshots__/qrcode-1/11/fast-180.json index e3739871..88788ed9 100644 --- a/tests/__snapshots__/qrcode-1/11/fast-180.json +++ b/tests/__snapshots__/qrcode-1/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/11/fast-270.json b/tests/__snapshots__/qrcode-1/11/fast-270.json index 3f278119..3446acc3 100644 --- a/tests/__snapshots__/qrcode-1/11/fast-270.json +++ b/tests/__snapshots__/qrcode-1/11/fast-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/11/fast-90.json b/tests/__snapshots__/qrcode-1/11/fast-90.json index 4dbcfeb9..0db8cd1b 100644 --- a/tests/__snapshots__/qrcode-1/11/fast-90.json +++ b/tests/__snapshots__/qrcode-1/11/fast-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/11/slow-0.json b/tests/__snapshots__/qrcode-1/11/slow-0.json index 33dbc5ed..8b600ee6 100644 --- a/tests/__snapshots__/qrcode-1/11/slow-0.json +++ b/tests/__snapshots__/qrcode-1/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/11/slow-180.json b/tests/__snapshots__/qrcode-1/11/slow-180.json index e3739871..88788ed9 100644 --- a/tests/__snapshots__/qrcode-1/11/slow-180.json +++ b/tests/__snapshots__/qrcode-1/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/11/slow-270.json b/tests/__snapshots__/qrcode-1/11/slow-270.json index 3f278119..3446acc3 100644 --- a/tests/__snapshots__/qrcode-1/11/slow-270.json +++ b/tests/__snapshots__/qrcode-1/11/slow-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/11/slow-90.json b/tests/__snapshots__/qrcode-1/11/slow-90.json index 4dbcfeb9..0db8cd1b 100644 --- a/tests/__snapshots__/qrcode-1/11/slow-90.json +++ b/tests/__snapshots__/qrcode-1/11/slow-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/12/fast-0.json b/tests/__snapshots__/qrcode-1/12/fast-0.json index 9f95e3c0..0970383d 100644 --- a/tests/__snapshots__/qrcode-1/12/fast-0.json +++ b/tests/__snapshots__/qrcode-1/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/12/fast-180.json b/tests/__snapshots__/qrcode-1/12/fast-180.json index 27c0a352..c1f2442f 100644 --- a/tests/__snapshots__/qrcode-1/12/fast-180.json +++ b/tests/__snapshots__/qrcode-1/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/12/fast-270.json b/tests/__snapshots__/qrcode-1/12/fast-270.json index 1de18646..4173b933 100644 --- a/tests/__snapshots__/qrcode-1/12/fast-270.json +++ b/tests/__snapshots__/qrcode-1/12/fast-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/12/fast-90.json b/tests/__snapshots__/qrcode-1/12/fast-90.json index 349a3a72..aab21791 100644 --- a/tests/__snapshots__/qrcode-1/12/fast-90.json +++ b/tests/__snapshots__/qrcode-1/12/fast-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/12/slow-0.json b/tests/__snapshots__/qrcode-1/12/slow-0.json index 9f95e3c0..0970383d 100644 --- a/tests/__snapshots__/qrcode-1/12/slow-0.json +++ b/tests/__snapshots__/qrcode-1/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/12/slow-180.json b/tests/__snapshots__/qrcode-1/12/slow-180.json index 27c0a352..c1f2442f 100644 --- a/tests/__snapshots__/qrcode-1/12/slow-180.json +++ b/tests/__snapshots__/qrcode-1/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/12/slow-270.json b/tests/__snapshots__/qrcode-1/12/slow-270.json index 1de18646..4173b933 100644 --- a/tests/__snapshots__/qrcode-1/12/slow-270.json +++ b/tests/__snapshots__/qrcode-1/12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/12/slow-90.json b/tests/__snapshots__/qrcode-1/12/slow-90.json index 349a3a72..aab21791 100644 --- a/tests/__snapshots__/qrcode-1/12/slow-90.json +++ b/tests/__snapshots__/qrcode-1/12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/13/fast-0.json b/tests/__snapshots__/qrcode-1/13/fast-0.json index 51cee3c7..7a0f15ea 100644 --- a/tests/__snapshots__/qrcode-1/13/fast-0.json +++ b/tests/__snapshots__/qrcode-1/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/13/fast-180.json b/tests/__snapshots__/qrcode-1/13/fast-180.json index 3f07b858..4408764c 100644 --- a/tests/__snapshots__/qrcode-1/13/fast-180.json +++ b/tests/__snapshots__/qrcode-1/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/13/fast-270.json b/tests/__snapshots__/qrcode-1/13/fast-270.json index 68b30aad..03d90faa 100644 --- a/tests/__snapshots__/qrcode-1/13/fast-270.json +++ b/tests/__snapshots__/qrcode-1/13/fast-270.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/13/fast-90.json b/tests/__snapshots__/qrcode-1/13/fast-90.json index 5e0542ae..c90749f2 100644 --- a/tests/__snapshots__/qrcode-1/13/fast-90.json +++ b/tests/__snapshots__/qrcode-1/13/fast-90.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/13/slow-0.json b/tests/__snapshots__/qrcode-1/13/slow-0.json index 51cee3c7..7a0f15ea 100644 --- a/tests/__snapshots__/qrcode-1/13/slow-0.json +++ b/tests/__snapshots__/qrcode-1/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/13/slow-180.json b/tests/__snapshots__/qrcode-1/13/slow-180.json index 3f07b858..4408764c 100644 --- a/tests/__snapshots__/qrcode-1/13/slow-180.json +++ b/tests/__snapshots__/qrcode-1/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/13/slow-270.json b/tests/__snapshots__/qrcode-1/13/slow-270.json index 68b30aad..03d90faa 100644 --- a/tests/__snapshots__/qrcode-1/13/slow-270.json +++ b/tests/__snapshots__/qrcode-1/13/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/13/slow-90.json b/tests/__snapshots__/qrcode-1/13/slow-90.json index 5e0542ae..c90749f2 100644 --- a/tests/__snapshots__/qrcode-1/13/slow-90.json +++ b/tests/__snapshots__/qrcode-1/13/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/14/fast-0.json b/tests/__snapshots__/qrcode-1/14/fast-0.json index b3b63812..57af923c 100644 --- a/tests/__snapshots__/qrcode-1/14/fast-0.json +++ b/tests/__snapshots__/qrcode-1/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/14/fast-180.json b/tests/__snapshots__/qrcode-1/14/fast-180.json index c40c69c6..af8132a6 100644 --- a/tests/__snapshots__/qrcode-1/14/fast-180.json +++ b/tests/__snapshots__/qrcode-1/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/14/fast-270.json b/tests/__snapshots__/qrcode-1/14/fast-270.json index 09cc8518..8a26556e 100644 --- a/tests/__snapshots__/qrcode-1/14/fast-270.json +++ b/tests/__snapshots__/qrcode-1/14/fast-270.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/14/fast-90.json b/tests/__snapshots__/qrcode-1/14/fast-90.json index 6abf1636..b2e5b946 100644 --- a/tests/__snapshots__/qrcode-1/14/fast-90.json +++ b/tests/__snapshots__/qrcode-1/14/fast-90.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/14/slow-0.json b/tests/__snapshots__/qrcode-1/14/slow-0.json index b3b63812..57af923c 100644 --- a/tests/__snapshots__/qrcode-1/14/slow-0.json +++ b/tests/__snapshots__/qrcode-1/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/14/slow-180.json b/tests/__snapshots__/qrcode-1/14/slow-180.json index c40c69c6..af8132a6 100644 --- a/tests/__snapshots__/qrcode-1/14/slow-180.json +++ b/tests/__snapshots__/qrcode-1/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/14/slow-270.json b/tests/__snapshots__/qrcode-1/14/slow-270.json index 09cc8518..8a26556e 100644 --- a/tests/__snapshots__/qrcode-1/14/slow-270.json +++ b/tests/__snapshots__/qrcode-1/14/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/14/slow-90.json b/tests/__snapshots__/qrcode-1/14/slow-90.json index 6abf1636..b2e5b946 100644 --- a/tests/__snapshots__/qrcode-1/14/slow-90.json +++ b/tests/__snapshots__/qrcode-1/14/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/15/fast-0.json b/tests/__snapshots__/qrcode-1/15/fast-0.json index 67fe22e3..e2e70d63 100644 --- a/tests/__snapshots__/qrcode-1/15/fast-0.json +++ b/tests/__snapshots__/qrcode-1/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/15/fast-180.json b/tests/__snapshots__/qrcode-1/15/fast-180.json index 23305d00..97c45584 100644 --- a/tests/__snapshots__/qrcode-1/15/fast-180.json +++ b/tests/__snapshots__/qrcode-1/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/15/fast-270.json b/tests/__snapshots__/qrcode-1/15/fast-270.json index 465631db..eafb5b50 100644 --- a/tests/__snapshots__/qrcode-1/15/fast-270.json +++ b/tests/__snapshots__/qrcode-1/15/fast-270.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/15/fast-90.json b/tests/__snapshots__/qrcode-1/15/fast-90.json index 3127491f..2d5d3b92 100644 --- a/tests/__snapshots__/qrcode-1/15/fast-90.json +++ b/tests/__snapshots__/qrcode-1/15/fast-90.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/15/slow-0.json b/tests/__snapshots__/qrcode-1/15/slow-0.json index 67fe22e3..e2e70d63 100644 --- a/tests/__snapshots__/qrcode-1/15/slow-0.json +++ b/tests/__snapshots__/qrcode-1/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/15/slow-180.json b/tests/__snapshots__/qrcode-1/15/slow-180.json index 23305d00..97c45584 100644 --- a/tests/__snapshots__/qrcode-1/15/slow-180.json +++ b/tests/__snapshots__/qrcode-1/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/15/slow-270.json b/tests/__snapshots__/qrcode-1/15/slow-270.json index 465631db..eafb5b50 100644 --- a/tests/__snapshots__/qrcode-1/15/slow-270.json +++ b/tests/__snapshots__/qrcode-1/15/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/15/slow-90.json b/tests/__snapshots__/qrcode-1/15/slow-90.json index 3127491f..2d5d3b92 100644 --- a/tests/__snapshots__/qrcode-1/15/slow-90.json +++ b/tests/__snapshots__/qrcode-1/15/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ad7126e", "bytesECI": "4d1c4e1", "text": "http://google.com/gwt/n?u=bluenile.com", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-1/16/fast-0.json b/tests/__snapshots__/qrcode-1/16/fast-0.json index 23e54e9d..5656cc8f 100644 --- a/tests/__snapshots__/qrcode-1/16/fast-0.json +++ b/tests/__snapshots__/qrcode-1/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/16/fast-180.json b/tests/__snapshots__/qrcode-1/16/fast-180.json index 174aa9e0..94b2c72e 100644 --- a/tests/__snapshots__/qrcode-1/16/fast-180.json +++ b/tests/__snapshots__/qrcode-1/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/16/fast-270.json b/tests/__snapshots__/qrcode-1/16/fast-270.json index b9e1d974..aabb12dc 100644 --- a/tests/__snapshots__/qrcode-1/16/fast-270.json +++ b/tests/__snapshots__/qrcode-1/16/fast-270.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/16/fast-90.json b/tests/__snapshots__/qrcode-1/16/fast-90.json index 42696f73..25d03e72 100644 --- a/tests/__snapshots__/qrcode-1/16/fast-90.json +++ b/tests/__snapshots__/qrcode-1/16/fast-90.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/16/slow-0.json b/tests/__snapshots__/qrcode-1/16/slow-0.json index 23e54e9d..5656cc8f 100644 --- a/tests/__snapshots__/qrcode-1/16/slow-0.json +++ b/tests/__snapshots__/qrcode-1/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/16/slow-180.json b/tests/__snapshots__/qrcode-1/16/slow-180.json index 174aa9e0..94b2c72e 100644 --- a/tests/__snapshots__/qrcode-1/16/slow-180.json +++ b/tests/__snapshots__/qrcode-1/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/16/slow-270.json b/tests/__snapshots__/qrcode-1/16/slow-270.json index b9e1d974..aabb12dc 100644 --- a/tests/__snapshots__/qrcode-1/16/slow-270.json +++ b/tests/__snapshots__/qrcode-1/16/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/16/slow-90.json b/tests/__snapshots__/qrcode-1/16/slow-90.json index 42696f73..25d03e72 100644 --- a/tests/__snapshots__/qrcode-1/16/slow-90.json +++ b/tests/__snapshots__/qrcode-1/16/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/17/fast-0.json b/tests/__snapshots__/qrcode-1/17/fast-0.json index e2fee128..3dbee3a5 100644 --- a/tests/__snapshots__/qrcode-1/17/fast-0.json +++ b/tests/__snapshots__/qrcode-1/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/17/fast-180.json b/tests/__snapshots__/qrcode-1/17/fast-180.json index ffd368d6..1b4ff98c 100644 --- a/tests/__snapshots__/qrcode-1/17/fast-180.json +++ b/tests/__snapshots__/qrcode-1/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/17/fast-270.json b/tests/__snapshots__/qrcode-1/17/fast-270.json index fed7bdcf..3f336aec 100644 --- a/tests/__snapshots__/qrcode-1/17/fast-270.json +++ b/tests/__snapshots__/qrcode-1/17/fast-270.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/17/fast-90.json b/tests/__snapshots__/qrcode-1/17/fast-90.json index 69ddc1fd..84a37822 100644 --- a/tests/__snapshots__/qrcode-1/17/fast-90.json +++ b/tests/__snapshots__/qrcode-1/17/fast-90.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/17/slow-0.json b/tests/__snapshots__/qrcode-1/17/slow-0.json index e2fee128..3dbee3a5 100644 --- a/tests/__snapshots__/qrcode-1/17/slow-0.json +++ b/tests/__snapshots__/qrcode-1/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/17/slow-180.json b/tests/__snapshots__/qrcode-1/17/slow-180.json index ffd368d6..1b4ff98c 100644 --- a/tests/__snapshots__/qrcode-1/17/slow-180.json +++ b/tests/__snapshots__/qrcode-1/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/17/slow-270.json b/tests/__snapshots__/qrcode-1/17/slow-270.json index fed7bdcf..3f336aec 100644 --- a/tests/__snapshots__/qrcode-1/17/slow-270.json +++ b/tests/__snapshots__/qrcode-1/17/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/17/slow-90.json b/tests/__snapshots__/qrcode-1/17/slow-90.json index 69ddc1fd..84a37822 100644 --- a/tests/__snapshots__/qrcode-1/17/slow-90.json +++ b/tests/__snapshots__/qrcode-1/17/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/18/fast-0.json b/tests/__snapshots__/qrcode-1/18/fast-0.json index 38a5d9d3..48e8f063 100644 --- a/tests/__snapshots__/qrcode-1/18/fast-0.json +++ b/tests/__snapshots__/qrcode-1/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/18/fast-180.json b/tests/__snapshots__/qrcode-1/18/fast-180.json index 94f4d730..7b85ad1b 100644 --- a/tests/__snapshots__/qrcode-1/18/fast-180.json +++ b/tests/__snapshots__/qrcode-1/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/18/fast-270.json b/tests/__snapshots__/qrcode-1/18/fast-270.json index 71bd6cd9..d7e9d46c 100644 --- a/tests/__snapshots__/qrcode-1/18/fast-270.json +++ b/tests/__snapshots__/qrcode-1/18/fast-270.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/18/fast-90.json b/tests/__snapshots__/qrcode-1/18/fast-90.json index 36012724..0418f9e1 100644 --- a/tests/__snapshots__/qrcode-1/18/fast-90.json +++ b/tests/__snapshots__/qrcode-1/18/fast-90.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/18/slow-0.json b/tests/__snapshots__/qrcode-1/18/slow-0.json index 38a5d9d3..48e8f063 100644 --- a/tests/__snapshots__/qrcode-1/18/slow-0.json +++ b/tests/__snapshots__/qrcode-1/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/18/slow-180.json b/tests/__snapshots__/qrcode-1/18/slow-180.json index 94f4d730..7b85ad1b 100644 --- a/tests/__snapshots__/qrcode-1/18/slow-180.json +++ b/tests/__snapshots__/qrcode-1/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/18/slow-270.json b/tests/__snapshots__/qrcode-1/18/slow-270.json index 71bd6cd9..d7e9d46c 100644 --- a/tests/__snapshots__/qrcode-1/18/slow-270.json +++ b/tests/__snapshots__/qrcode-1/18/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/18/slow-90.json b/tests/__snapshots__/qrcode-1/18/slow-90.json index 36012724..0418f9e1 100644 --- a/tests/__snapshots__/qrcode-1/18/slow-90.json +++ b/tests/__snapshots__/qrcode-1/18/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/19/fast-0.json b/tests/__snapshots__/qrcode-1/19/fast-0.json index 6ff109cc..6df5b0ec 100644 --- a/tests/__snapshots__/qrcode-1/19/fast-0.json +++ b/tests/__snapshots__/qrcode-1/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/19/fast-180.json b/tests/__snapshots__/qrcode-1/19/fast-180.json index 9b25ed5b..d43c334a 100644 --- a/tests/__snapshots__/qrcode-1/19/fast-180.json +++ b/tests/__snapshots__/qrcode-1/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/19/fast-270.json b/tests/__snapshots__/qrcode-1/19/fast-270.json index c9ceda2b..5baf60a3 100644 --- a/tests/__snapshots__/qrcode-1/19/fast-270.json +++ b/tests/__snapshots__/qrcode-1/19/fast-270.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/19/fast-90.json b/tests/__snapshots__/qrcode-1/19/fast-90.json index b1992af1..6dac5bcb 100644 --- a/tests/__snapshots__/qrcode-1/19/fast-90.json +++ b/tests/__snapshots__/qrcode-1/19/fast-90.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/19/slow-0.json b/tests/__snapshots__/qrcode-1/19/slow-0.json index 6ff109cc..6df5b0ec 100644 --- a/tests/__snapshots__/qrcode-1/19/slow-0.json +++ b/tests/__snapshots__/qrcode-1/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/19/slow-180.json b/tests/__snapshots__/qrcode-1/19/slow-180.json index 9b25ed5b..d43c334a 100644 --- a/tests/__snapshots__/qrcode-1/19/slow-180.json +++ b/tests/__snapshots__/qrcode-1/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/19/slow-270.json b/tests/__snapshots__/qrcode-1/19/slow-270.json index c9ceda2b..5baf60a3 100644 --- a/tests/__snapshots__/qrcode-1/19/slow-270.json +++ b/tests/__snapshots__/qrcode-1/19/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/19/slow-90.json b/tests/__snapshots__/qrcode-1/19/slow-90.json index b1992af1..6dac5bcb 100644 --- a/tests/__snapshots__/qrcode-1/19/slow-90.json +++ b/tests/__snapshots__/qrcode-1/19/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/2/fast-0.json b/tests/__snapshots__/qrcode-1/2/fast-0.json index e1858095..56bb9fb1 100644 --- a/tests/__snapshots__/qrcode-1/2/fast-0.json +++ b/tests/__snapshots__/qrcode-1/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/2/fast-180.json b/tests/__snapshots__/qrcode-1/2/fast-180.json index 502d8b6a..48a01985 100644 --- a/tests/__snapshots__/qrcode-1/2/fast-180.json +++ b/tests/__snapshots__/qrcode-1/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/2/fast-270.json b/tests/__snapshots__/qrcode-1/2/fast-270.json index 172c050c..b32eff6d 100644 --- a/tests/__snapshots__/qrcode-1/2/fast-270.json +++ b/tests/__snapshots__/qrcode-1/2/fast-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/2/fast-90.json b/tests/__snapshots__/qrcode-1/2/fast-90.json index f8024763..1ecb145d 100644 --- a/tests/__snapshots__/qrcode-1/2/fast-90.json +++ b/tests/__snapshots__/qrcode-1/2/fast-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/2/slow-0.json b/tests/__snapshots__/qrcode-1/2/slow-0.json index e1858095..56bb9fb1 100644 --- a/tests/__snapshots__/qrcode-1/2/slow-0.json +++ b/tests/__snapshots__/qrcode-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/2/slow-180.json b/tests/__snapshots__/qrcode-1/2/slow-180.json index 502d8b6a..48a01985 100644 --- a/tests/__snapshots__/qrcode-1/2/slow-180.json +++ b/tests/__snapshots__/qrcode-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/2/slow-270.json b/tests/__snapshots__/qrcode-1/2/slow-270.json index 172c050c..b32eff6d 100644 --- a/tests/__snapshots__/qrcode-1/2/slow-270.json +++ b/tests/__snapshots__/qrcode-1/2/slow-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/2/slow-90.json b/tests/__snapshots__/qrcode-1/2/slow-90.json index f8024763..1ecb145d 100644 --- a/tests/__snapshots__/qrcode-1/2/slow-90.json +++ b/tests/__snapshots__/qrcode-1/2/slow-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/20/fast-0.json b/tests/__snapshots__/qrcode-1/20/fast-0.json index f266f039..a580c877 100644 --- a/tests/__snapshots__/qrcode-1/20/fast-0.json +++ b/tests/__snapshots__/qrcode-1/20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/20/fast-180.json b/tests/__snapshots__/qrcode-1/20/fast-180.json index c47c7bb3..29084af8 100644 --- a/tests/__snapshots__/qrcode-1/20/fast-180.json +++ b/tests/__snapshots__/qrcode-1/20/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/20/fast-270.json b/tests/__snapshots__/qrcode-1/20/fast-270.json index c14ee6e6..5fb67c35 100644 --- a/tests/__snapshots__/qrcode-1/20/fast-270.json +++ b/tests/__snapshots__/qrcode-1/20/fast-270.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/20/fast-90.json b/tests/__snapshots__/qrcode-1/20/fast-90.json index fe8d8e9e..41e6cbba 100644 --- a/tests/__snapshots__/qrcode-1/20/fast-90.json +++ b/tests/__snapshots__/qrcode-1/20/fast-90.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/20/slow-0.json b/tests/__snapshots__/qrcode-1/20/slow-0.json index f266f039..a580c877 100644 --- a/tests/__snapshots__/qrcode-1/20/slow-0.json +++ b/tests/__snapshots__/qrcode-1/20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/20/slow-180.json b/tests/__snapshots__/qrcode-1/20/slow-180.json index c47c7bb3..29084af8 100644 --- a/tests/__snapshots__/qrcode-1/20/slow-180.json +++ b/tests/__snapshots__/qrcode-1/20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/20/slow-270.json b/tests/__snapshots__/qrcode-1/20/slow-270.json index c14ee6e6..5fb67c35 100644 --- a/tests/__snapshots__/qrcode-1/20/slow-270.json +++ b/tests/__snapshots__/qrcode-1/20/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/20/slow-90.json b/tests/__snapshots__/qrcode-1/20/slow-90.json index fe8d8e9e..41e6cbba 100644 --- a/tests/__snapshots__/qrcode-1/20/slow-90.json +++ b/tests/__snapshots__/qrcode-1/20/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ab95fb8", "bytesECI": "af0d3f7", "text": "Sean Owensrowen@google.com917-364-2918http://awesome-thoughts.com", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "10" + "version": "10", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/4/fast-0.json b/tests/__snapshots__/qrcode-1/4/fast-0.json index 9654e251..e1b9c000 100644 --- a/tests/__snapshots__/qrcode-1/4/fast-0.json +++ b/tests/__snapshots__/qrcode-1/4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/4/fast-180.json b/tests/__snapshots__/qrcode-1/4/fast-180.json index 726146f6..63113704 100644 --- a/tests/__snapshots__/qrcode-1/4/fast-180.json +++ b/tests/__snapshots__/qrcode-1/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/4/fast-270.json b/tests/__snapshots__/qrcode-1/4/fast-270.json index 4aced361..8924277c 100644 --- a/tests/__snapshots__/qrcode-1/4/fast-270.json +++ b/tests/__snapshots__/qrcode-1/4/fast-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/4/fast-90.json b/tests/__snapshots__/qrcode-1/4/fast-90.json index 24f40e32..6b506aec 100644 --- a/tests/__snapshots__/qrcode-1/4/fast-90.json +++ b/tests/__snapshots__/qrcode-1/4/fast-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/4/slow-0.json b/tests/__snapshots__/qrcode-1/4/slow-0.json index 9654e251..e1b9c000 100644 --- a/tests/__snapshots__/qrcode-1/4/slow-0.json +++ b/tests/__snapshots__/qrcode-1/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/4/slow-180.json b/tests/__snapshots__/qrcode-1/4/slow-180.json index 726146f6..63113704 100644 --- a/tests/__snapshots__/qrcode-1/4/slow-180.json +++ b/tests/__snapshots__/qrcode-1/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/4/slow-270.json b/tests/__snapshots__/qrcode-1/4/slow-270.json index 4aced361..8924277c 100644 --- a/tests/__snapshots__/qrcode-1/4/slow-270.json +++ b/tests/__snapshots__/qrcode-1/4/slow-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/4/slow-90.json b/tests/__snapshots__/qrcode-1/4/slow-90.json index 24f40e32..6b506aec 100644 --- a/tests/__snapshots__/qrcode-1/4/slow-90.json +++ b/tests/__snapshots__/qrcode-1/4/slow-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/7/fast-0.json b/tests/__snapshots__/qrcode-1/7/fast-0.json index 6e16a442..d24a755f 100644 --- a/tests/__snapshots__/qrcode-1/7/fast-0.json +++ b/tests/__snapshots__/qrcode-1/7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/7/fast-180.json b/tests/__snapshots__/qrcode-1/7/fast-180.json index 2f6fffdf..6466e7e8 100644 --- a/tests/__snapshots__/qrcode-1/7/fast-180.json +++ b/tests/__snapshots__/qrcode-1/7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/7/fast-270.json b/tests/__snapshots__/qrcode-1/7/fast-270.json index f6bb0c09..e41fb61d 100644 --- a/tests/__snapshots__/qrcode-1/7/fast-270.json +++ b/tests/__snapshots__/qrcode-1/7/fast-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/7/fast-90.json b/tests/__snapshots__/qrcode-1/7/fast-90.json index 2cc4c3a4..2f1c6777 100644 --- a/tests/__snapshots__/qrcode-1/7/fast-90.json +++ b/tests/__snapshots__/qrcode-1/7/fast-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/7/slow-0.json b/tests/__snapshots__/qrcode-1/7/slow-0.json index 6e16a442..d24a755f 100644 --- a/tests/__snapshots__/qrcode-1/7/slow-0.json +++ b/tests/__snapshots__/qrcode-1/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/7/slow-180.json b/tests/__snapshots__/qrcode-1/7/slow-180.json index 2f6fffdf..6466e7e8 100644 --- a/tests/__snapshots__/qrcode-1/7/slow-180.json +++ b/tests/__snapshots__/qrcode-1/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/7/slow-270.json b/tests/__snapshots__/qrcode-1/7/slow-270.json index f6bb0c09..e41fb61d 100644 --- a/tests/__snapshots__/qrcode-1/7/slow-270.json +++ b/tests/__snapshots__/qrcode-1/7/slow-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/7/slow-90.json b/tests/__snapshots__/qrcode-1/7/slow-90.json index 2cc4c3a4..2f1c6777 100644 --- a/tests/__snapshots__/qrcode-1/7/slow-90.json +++ b/tests/__snapshots__/qrcode-1/7/slow-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/8/fast-0.json b/tests/__snapshots__/qrcode-1/8/fast-0.json index dd50c026..e0321b7c 100644 --- a/tests/__snapshots__/qrcode-1/8/fast-0.json +++ b/tests/__snapshots__/qrcode-1/8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/8/fast-180.json b/tests/__snapshots__/qrcode-1/8/fast-180.json index e1dc7e60..3874732b 100644 --- a/tests/__snapshots__/qrcode-1/8/fast-180.json +++ b/tests/__snapshots__/qrcode-1/8/fast-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/8/fast-270.json b/tests/__snapshots__/qrcode-1/8/fast-270.json index 7e5e5c47..216eaafc 100644 --- a/tests/__snapshots__/qrcode-1/8/fast-270.json +++ b/tests/__snapshots__/qrcode-1/8/fast-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/8/fast-90.json b/tests/__snapshots__/qrcode-1/8/fast-90.json index e9df96e8..769cd6a5 100644 --- a/tests/__snapshots__/qrcode-1/8/fast-90.json +++ b/tests/__snapshots__/qrcode-1/8/fast-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/8/slow-0.json b/tests/__snapshots__/qrcode-1/8/slow-0.json index dd50c026..e0321b7c 100644 --- a/tests/__snapshots__/qrcode-1/8/slow-0.json +++ b/tests/__snapshots__/qrcode-1/8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/8/slow-180.json b/tests/__snapshots__/qrcode-1/8/slow-180.json index e1dc7e60..3874732b 100644 --- a/tests/__snapshots__/qrcode-1/8/slow-180.json +++ b/tests/__snapshots__/qrcode-1/8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/8/slow-270.json b/tests/__snapshots__/qrcode-1/8/slow-270.json index 7e5e5c47..216eaafc 100644 --- a/tests/__snapshots__/qrcode-1/8/slow-270.json +++ b/tests/__snapshots__/qrcode-1/8/slow-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/8/slow-90.json b/tests/__snapshots__/qrcode-1/8/slow-90.json index e9df96e8..769cd6a5 100644 --- a/tests/__snapshots__/qrcode-1/8/slow-90.json +++ b/tests/__snapshots__/qrcode-1/8/slow-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/9/fast-0.json b/tests/__snapshots__/qrcode-1/9/fast-0.json index 6e25ac23..6d6eb987 100644 --- a/tests/__snapshots__/qrcode-1/9/fast-0.json +++ b/tests/__snapshots__/qrcode-1/9/fast-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/9/fast-180.json b/tests/__snapshots__/qrcode-1/9/fast-180.json index f7534077..311449b8 100644 --- a/tests/__snapshots__/qrcode-1/9/fast-180.json +++ b/tests/__snapshots__/qrcode-1/9/fast-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/9/fast-270.json b/tests/__snapshots__/qrcode-1/9/fast-270.json index 31248f0c..329adf9b 100644 --- a/tests/__snapshots__/qrcode-1/9/fast-270.json +++ b/tests/__snapshots__/qrcode-1/9/fast-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/9/fast-90.json b/tests/__snapshots__/qrcode-1/9/fast-90.json index 62cdb694..7047a112 100644 --- a/tests/__snapshots__/qrcode-1/9/fast-90.json +++ b/tests/__snapshots__/qrcode-1/9/fast-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/9/slow-0.json b/tests/__snapshots__/qrcode-1/9/slow-0.json index 6e25ac23..6d6eb987 100644 --- a/tests/__snapshots__/qrcode-1/9/slow-0.json +++ b/tests/__snapshots__/qrcode-1/9/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/9/slow-180.json b/tests/__snapshots__/qrcode-1/9/slow-180.json index f7534077..311449b8 100644 --- a/tests/__snapshots__/qrcode-1/9/slow-180.json +++ b/tests/__snapshots__/qrcode-1/9/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/9/slow-270.json b/tests/__snapshots__/qrcode-1/9/slow-270.json index 31248f0c..329adf9b 100644 --- a/tests/__snapshots__/qrcode-1/9/slow-270.json +++ b/tests/__snapshots__/qrcode-1/9/slow-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-1/9/slow-90.json b/tests/__snapshots__/qrcode-1/9/slow-90.json index 62cdb694..7047a112 100644 --- a/tests/__snapshots__/qrcode-1/9/slow-90.json +++ b/tests/__snapshots__/qrcode-1/9/slow-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#128/fast-0.json b/tests/__snapshots__/qrcode-2/#128/fast-0.json index 48bf74c2..6a361550 100644 --- a/tests/__snapshots__/qrcode-2/#128/fast-0.json +++ b/tests/__snapshots__/qrcode-2/#128/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a20b5b4", "bytesECI": "67f61ef", "text": "M$K0YGV0G", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#128/fast-180.json b/tests/__snapshots__/qrcode-2/#128/fast-180.json index 74fc7fee..712947e7 100644 --- a/tests/__snapshots__/qrcode-2/#128/fast-180.json +++ b/tests/__snapshots__/qrcode-2/#128/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a20b5b4", "bytesECI": "67f61ef", "text": "M$K0YGV0G", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#128/fast-270.json b/tests/__snapshots__/qrcode-2/#128/fast-270.json index 78a715aa..39227941 100644 --- a/tests/__snapshots__/qrcode-2/#128/fast-270.json +++ b/tests/__snapshots__/qrcode-2/#128/fast-270.json @@ -5,7 +5,7 @@ "bytes": "a20b5b4", "bytesECI": "67f61ef", "text": "M$K0YGV0G", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#128/fast-90.json b/tests/__snapshots__/qrcode-2/#128/fast-90.json index b21f2e3b..cc612e8f 100644 --- a/tests/__snapshots__/qrcode-2/#128/fast-90.json +++ b/tests/__snapshots__/qrcode-2/#128/fast-90.json @@ -5,7 +5,7 @@ "bytes": "a20b5b4", "bytesECI": "67f61ef", "text": "M$K0YGV0G", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#128/pure-0.json b/tests/__snapshots__/qrcode-2/#128/pure-0.json index 7db600e2..93bebf58 100644 --- a/tests/__snapshots__/qrcode-2/#128/pure-0.json +++ b/tests/__snapshots__/qrcode-2/#128/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a20b5b4", "bytesECI": "67f61ef", "text": "M$K0YGV0G", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#128/slow-0.json b/tests/__snapshots__/qrcode-2/#128/slow-0.json index 48bf74c2..6a361550 100644 --- a/tests/__snapshots__/qrcode-2/#128/slow-0.json +++ b/tests/__snapshots__/qrcode-2/#128/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a20b5b4", "bytesECI": "67f61ef", "text": "M$K0YGV0G", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#128/slow-180.json b/tests/__snapshots__/qrcode-2/#128/slow-180.json index 74fc7fee..712947e7 100644 --- a/tests/__snapshots__/qrcode-2/#128/slow-180.json +++ b/tests/__snapshots__/qrcode-2/#128/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a20b5b4", "bytesECI": "67f61ef", "text": "M$K0YGV0G", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#128/slow-270.json b/tests/__snapshots__/qrcode-2/#128/slow-270.json index 78a715aa..39227941 100644 --- a/tests/__snapshots__/qrcode-2/#128/slow-270.json +++ b/tests/__snapshots__/qrcode-2/#128/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a20b5b4", "bytesECI": "67f61ef", "text": "M$K0YGV0G", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#128/slow-90.json b/tests/__snapshots__/qrcode-2/#128/slow-90.json index b21f2e3b..cc612e8f 100644 --- a/tests/__snapshots__/qrcode-2/#128/slow-90.json +++ b/tests/__snapshots__/qrcode-2/#128/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a20b5b4", "bytesECI": "67f61ef", "text": "M$K0YGV0G", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#1314/fast-0.json b/tests/__snapshots__/qrcode-2/#1314/fast-0.json index b57ea444..d44d1d14 100644 --- a/tests/__snapshots__/qrcode-2/#1314/fast-0.json +++ b/tests/__snapshots__/qrcode-2/#1314/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7c25cf5", "bytesECI": "0b62296", "text": "ehjfjoijewofijweoijfoiwejfoiwejfoi", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#1314/fast-180.json b/tests/__snapshots__/qrcode-2/#1314/fast-180.json index 0d7196eb..63c24614 100644 --- a/tests/__snapshots__/qrcode-2/#1314/fast-180.json +++ b/tests/__snapshots__/qrcode-2/#1314/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7c25cf5", "bytesECI": "0b62296", "text": "ehjfjoijewofijweoijfoiwejfoiwejfoi", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#1314/fast-270.json b/tests/__snapshots__/qrcode-2/#1314/fast-270.json index 5bbfca74..a061f869 100644 --- a/tests/__snapshots__/qrcode-2/#1314/fast-270.json +++ b/tests/__snapshots__/qrcode-2/#1314/fast-270.json @@ -5,7 +5,7 @@ "bytes": "7c25cf5", "bytesECI": "0b62296", "text": "ehjfjoijewofijweoijfoiwejfoiwejfoi", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#1314/fast-90.json b/tests/__snapshots__/qrcode-2/#1314/fast-90.json index 68d681db..a02b0428 100644 --- a/tests/__snapshots__/qrcode-2/#1314/fast-90.json +++ b/tests/__snapshots__/qrcode-2/#1314/fast-90.json @@ -5,7 +5,7 @@ "bytes": "7c25cf5", "bytesECI": "0b62296", "text": "ehjfjoijewofijweoijfoiwejfoiwejfoi", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#1314/pure-0.json b/tests/__snapshots__/qrcode-2/#1314/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/#1314/pure-0.json +++ b/tests/__snapshots__/qrcode-2/#1314/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/#1314/slow-0.json b/tests/__snapshots__/qrcode-2/#1314/slow-0.json index b57ea444..d44d1d14 100644 --- a/tests/__snapshots__/qrcode-2/#1314/slow-0.json +++ b/tests/__snapshots__/qrcode-2/#1314/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7c25cf5", "bytesECI": "0b62296", "text": "ehjfjoijewofijweoijfoiwejfoiwejfoi", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#1314/slow-180.json b/tests/__snapshots__/qrcode-2/#1314/slow-180.json index 0d7196eb..63c24614 100644 --- a/tests/__snapshots__/qrcode-2/#1314/slow-180.json +++ b/tests/__snapshots__/qrcode-2/#1314/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7c25cf5", "bytesECI": "0b62296", "text": "ehjfjoijewofijweoijfoiwejfoiwejfoi", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#1314/slow-270.json b/tests/__snapshots__/qrcode-2/#1314/slow-270.json index 5bbfca74..a061f869 100644 --- a/tests/__snapshots__/qrcode-2/#1314/slow-270.json +++ b/tests/__snapshots__/qrcode-2/#1314/slow-270.json @@ -5,7 +5,7 @@ "bytes": "7c25cf5", "bytesECI": "0b62296", "text": "ehjfjoijewofijweoijfoiwejfoiwejfoi", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#1314/slow-90.json b/tests/__snapshots__/qrcode-2/#1314/slow-90.json index 68d681db..a02b0428 100644 --- a/tests/__snapshots__/qrcode-2/#1314/slow-90.json +++ b/tests/__snapshots__/qrcode-2/#1314/slow-90.json @@ -5,7 +5,7 @@ "bytes": "7c25cf5", "bytesECI": "0b62296", "text": "ehjfjoijewofijweoijfoiwejfoiwejfoi", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#142/fast-0.json b/tests/__snapshots__/qrcode-2/#142/fast-0.json index 86864211..e7b4280c 100644 --- a/tests/__snapshots__/qrcode-2/#142/fast-0.json +++ b/tests/__snapshots__/qrcode-2/#142/fast-0.json @@ -5,7 +5,7 @@ "bytes": "bf2544d", "bytesECI": "efb05d1", "text": "vmess://eyJhZGQiOiJ6cHh1LnNhZGZ3d3cuY2YiLCJhaWQiOjIzMywiaG9zdCI6InpweHUuc2FkZnd3dy5jZiIsImlkIjoiZTcwNGYxZjgtOTBlZS00NzIwLTljMjktMzY2ZjY2YTM5ODVmIiwibmV0Ijoid3MiLCJwYXRoIjoiLyIsInBvcnQiOjQ0MywicHMiOiJ6cHh1LnNhZGZ3d3cuY2YtWzQ0M10tdm1lc3MiLCJ0bHMiOiJ0bHMiLCJ0eXBlIjoibm9uZSIsInYiOjJ9", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#142/fast-180.json b/tests/__snapshots__/qrcode-2/#142/fast-180.json index 4e57956d..b72d7d18 100644 --- a/tests/__snapshots__/qrcode-2/#142/fast-180.json +++ b/tests/__snapshots__/qrcode-2/#142/fast-180.json @@ -5,7 +5,7 @@ "bytes": "bf2544d", "bytesECI": "efb05d1", "text": "vmess://eyJhZGQiOiJ6cHh1LnNhZGZ3d3cuY2YiLCJhaWQiOjIzMywiaG9zdCI6InpweHUuc2FkZnd3dy5jZiIsImlkIjoiZTcwNGYxZjgtOTBlZS00NzIwLTljMjktMzY2ZjY2YTM5ODVmIiwibmV0Ijoid3MiLCJwYXRoIjoiLyIsInBvcnQiOjQ0MywicHMiOiJ6cHh1LnNhZGZ3d3cuY2YtWzQ0M10tdm1lc3MiLCJ0bHMiOiJ0bHMiLCJ0eXBlIjoibm9uZSIsInYiOjJ9", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#142/fast-270.json b/tests/__snapshots__/qrcode-2/#142/fast-270.json index e83e0902..7122b14c 100644 --- a/tests/__snapshots__/qrcode-2/#142/fast-270.json +++ b/tests/__snapshots__/qrcode-2/#142/fast-270.json @@ -5,7 +5,7 @@ "bytes": "bf2544d", "bytesECI": "efb05d1", "text": "vmess://eyJhZGQiOiJ6cHh1LnNhZGZ3d3cuY2YiLCJhaWQiOjIzMywiaG9zdCI6InpweHUuc2FkZnd3dy5jZiIsImlkIjoiZTcwNGYxZjgtOTBlZS00NzIwLTljMjktMzY2ZjY2YTM5ODVmIiwibmV0Ijoid3MiLCJwYXRoIjoiLyIsInBvcnQiOjQ0MywicHMiOiJ6cHh1LnNhZGZ3d3cuY2YtWzQ0M10tdm1lc3MiLCJ0bHMiOiJ0bHMiLCJ0eXBlIjoibm9uZSIsInYiOjJ9", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#142/fast-90.json b/tests/__snapshots__/qrcode-2/#142/fast-90.json index 18b27857..8dbdbfb7 100644 --- a/tests/__snapshots__/qrcode-2/#142/fast-90.json +++ b/tests/__snapshots__/qrcode-2/#142/fast-90.json @@ -5,7 +5,7 @@ "bytes": "bf2544d", "bytesECI": "efb05d1", "text": "vmess://eyJhZGQiOiJ6cHh1LnNhZGZ3d3cuY2YiLCJhaWQiOjIzMywiaG9zdCI6InpweHUuc2FkZnd3dy5jZiIsImlkIjoiZTcwNGYxZjgtOTBlZS00NzIwLTljMjktMzY2ZjY2YTM5ODVmIiwibmV0Ijoid3MiLCJwYXRoIjoiLyIsInBvcnQiOjQ0MywicHMiOiJ6cHh1LnNhZGZ3d3cuY2YtWzQ0M10tdm1lc3MiLCJ0bHMiOiJ0bHMiLCJ0eXBlIjoibm9uZSIsInYiOjJ9", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#142/pure-0.json b/tests/__snapshots__/qrcode-2/#142/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/#142/pure-0.json +++ b/tests/__snapshots__/qrcode-2/#142/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/#142/slow-0.json b/tests/__snapshots__/qrcode-2/#142/slow-0.json index 86864211..e7b4280c 100644 --- a/tests/__snapshots__/qrcode-2/#142/slow-0.json +++ b/tests/__snapshots__/qrcode-2/#142/slow-0.json @@ -5,7 +5,7 @@ "bytes": "bf2544d", "bytesECI": "efb05d1", "text": "vmess://eyJhZGQiOiJ6cHh1LnNhZGZ3d3cuY2YiLCJhaWQiOjIzMywiaG9zdCI6InpweHUuc2FkZnd3dy5jZiIsImlkIjoiZTcwNGYxZjgtOTBlZS00NzIwLTljMjktMzY2ZjY2YTM5ODVmIiwibmV0Ijoid3MiLCJwYXRoIjoiLyIsInBvcnQiOjQ0MywicHMiOiJ6cHh1LnNhZGZ3d3cuY2YtWzQ0M10tdm1lc3MiLCJ0bHMiOiJ0bHMiLCJ0eXBlIjoibm9uZSIsInYiOjJ9", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#142/slow-180.json b/tests/__snapshots__/qrcode-2/#142/slow-180.json index 4e57956d..b72d7d18 100644 --- a/tests/__snapshots__/qrcode-2/#142/slow-180.json +++ b/tests/__snapshots__/qrcode-2/#142/slow-180.json @@ -5,7 +5,7 @@ "bytes": "bf2544d", "bytesECI": "efb05d1", "text": "vmess://eyJhZGQiOiJ6cHh1LnNhZGZ3d3cuY2YiLCJhaWQiOjIzMywiaG9zdCI6InpweHUuc2FkZnd3dy5jZiIsImlkIjoiZTcwNGYxZjgtOTBlZS00NzIwLTljMjktMzY2ZjY2YTM5ODVmIiwibmV0Ijoid3MiLCJwYXRoIjoiLyIsInBvcnQiOjQ0MywicHMiOiJ6cHh1LnNhZGZ3d3cuY2YtWzQ0M10tdm1lc3MiLCJ0bHMiOiJ0bHMiLCJ0eXBlIjoibm9uZSIsInYiOjJ9", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#142/slow-270.json b/tests/__snapshots__/qrcode-2/#142/slow-270.json index e83e0902..7122b14c 100644 --- a/tests/__snapshots__/qrcode-2/#142/slow-270.json +++ b/tests/__snapshots__/qrcode-2/#142/slow-270.json @@ -5,7 +5,7 @@ "bytes": "bf2544d", "bytesECI": "efb05d1", "text": "vmess://eyJhZGQiOiJ6cHh1LnNhZGZ3d3cuY2YiLCJhaWQiOjIzMywiaG9zdCI6InpweHUuc2FkZnd3dy5jZiIsImlkIjoiZTcwNGYxZjgtOTBlZS00NzIwLTljMjktMzY2ZjY2YTM5ODVmIiwibmV0Ijoid3MiLCJwYXRoIjoiLyIsInBvcnQiOjQ0MywicHMiOiJ6cHh1LnNhZGZ3d3cuY2YtWzQ0M10tdm1lc3MiLCJ0bHMiOiJ0bHMiLCJ0eXBlIjoibm9uZSIsInYiOjJ9", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#142/slow-90.json b/tests/__snapshots__/qrcode-2/#142/slow-90.json index 18b27857..8dbdbfb7 100644 --- a/tests/__snapshots__/qrcode-2/#142/slow-90.json +++ b/tests/__snapshots__/qrcode-2/#142/slow-90.json @@ -5,7 +5,7 @@ "bytes": "bf2544d", "bytesECI": "efb05d1", "text": "vmess://eyJhZGQiOiJ6cHh1LnNhZGZ3d3cuY2YiLCJhaWQiOjIzMywiaG9zdCI6InpweHUuc2FkZnd3dy5jZiIsImlkIjoiZTcwNGYxZjgtOTBlZS00NzIwLTljMjktMzY2ZjY2YTM5ODVmIiwibmV0Ijoid3MiLCJwYXRoIjoiLyIsInBvcnQiOjQ0MywicHMiOiJ6cHh1LnNhZGZ3d3cuY2YtWzQ0M10tdm1lc3MiLCJ0bHMiOiJ0bHMiLCJ0eXBlIjoibm9uZSIsInYiOjJ9", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "11" + "version": "11", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199/fast-0.json b/tests/__snapshots__/qrcode-2/#199/fast-0.json index 3eb40a50..77a530b6 100644 --- a/tests/__snapshots__/qrcode-2/#199/fast-0.json +++ b/tests/__snapshots__/qrcode-2/#199/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2b74991", "bytesECI": "c562370", "text": "ABCDEF1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199/fast-180.json b/tests/__snapshots__/qrcode-2/#199/fast-180.json index a6ec31b1..3f8ad9b9 100644 --- a/tests/__snapshots__/qrcode-2/#199/fast-180.json +++ b/tests/__snapshots__/qrcode-2/#199/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2b74991", "bytesECI": "c562370", "text": "ABCDEF1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199/fast-270.json b/tests/__snapshots__/qrcode-2/#199/fast-270.json index b6c757d3..75e80cb3 100644 --- a/tests/__snapshots__/qrcode-2/#199/fast-270.json +++ b/tests/__snapshots__/qrcode-2/#199/fast-270.json @@ -5,7 +5,7 @@ "bytes": "2b74991", "bytesECI": "c562370", "text": "ABCDEF1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199/fast-90.json b/tests/__snapshots__/qrcode-2/#199/fast-90.json index 4feb39ea..0b7f8167 100644 --- a/tests/__snapshots__/qrcode-2/#199/fast-90.json +++ b/tests/__snapshots__/qrcode-2/#199/fast-90.json @@ -5,7 +5,7 @@ "bytes": "2b74991", "bytesECI": "c562370", "text": "ABCDEF1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199/pure-0.json b/tests/__snapshots__/qrcode-2/#199/pure-0.json index d255e469..a8d868d1 100644 --- a/tests/__snapshots__/qrcode-2/#199/pure-0.json +++ b/tests/__snapshots__/qrcode-2/#199/pure-0.json @@ -5,7 +5,7 @@ "bytes": "2b74991", "bytesECI": "c562370", "text": "ABCDEF1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199/slow-0.json b/tests/__snapshots__/qrcode-2/#199/slow-0.json index 3eb40a50..77a530b6 100644 --- a/tests/__snapshots__/qrcode-2/#199/slow-0.json +++ b/tests/__snapshots__/qrcode-2/#199/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2b74991", "bytesECI": "c562370", "text": "ABCDEF1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199/slow-180.json b/tests/__snapshots__/qrcode-2/#199/slow-180.json index a6ec31b1..3f8ad9b9 100644 --- a/tests/__snapshots__/qrcode-2/#199/slow-180.json +++ b/tests/__snapshots__/qrcode-2/#199/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2b74991", "bytesECI": "c562370", "text": "ABCDEF1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199/slow-270.json b/tests/__snapshots__/qrcode-2/#199/slow-270.json index b6c757d3..75e80cb3 100644 --- a/tests/__snapshots__/qrcode-2/#199/slow-270.json +++ b/tests/__snapshots__/qrcode-2/#199/slow-270.json @@ -5,7 +5,7 @@ "bytes": "2b74991", "bytesECI": "c562370", "text": "ABCDEF1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199/slow-90.json b/tests/__snapshots__/qrcode-2/#199/slow-90.json index 4feb39ea..0b7f8167 100644 --- a/tests/__snapshots__/qrcode-2/#199/slow-90.json +++ b/tests/__snapshots__/qrcode-2/#199/slow-90.json @@ -5,7 +5,7 @@ "bytes": "2b74991", "bytesECI": "c562370", "text": "ABCDEF1234567890", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199b/fast-0.json b/tests/__snapshots__/qrcode-2/#199b/fast-0.json index ac6777a0..0385b819 100644 --- a/tests/__snapshots__/qrcode-2/#199b/fast-0.json +++ b/tests/__snapshots__/qrcode-2/#199b/fast-0.json @@ -5,7 +5,7 @@ "bytes": "653bb12", "bytesECI": "bb19d2c", "text": "abcdefghijklmnopqrstuvwxyz012345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199b/fast-180.json b/tests/__snapshots__/qrcode-2/#199b/fast-180.json index 11830b1c..418d9979 100644 --- a/tests/__snapshots__/qrcode-2/#199b/fast-180.json +++ b/tests/__snapshots__/qrcode-2/#199b/fast-180.json @@ -5,7 +5,7 @@ "bytes": "653bb12", "bytesECI": "bb19d2c", "text": "abcdefghijklmnopqrstuvwxyz012345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199b/fast-270.json b/tests/__snapshots__/qrcode-2/#199b/fast-270.json index 1f3106f9..6b5f91fe 100644 --- a/tests/__snapshots__/qrcode-2/#199b/fast-270.json +++ b/tests/__snapshots__/qrcode-2/#199b/fast-270.json @@ -5,7 +5,7 @@ "bytes": "653bb12", "bytesECI": "bb19d2c", "text": "abcdefghijklmnopqrstuvwxyz012345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199b/fast-90.json b/tests/__snapshots__/qrcode-2/#199b/fast-90.json index 7939caa7..e6ee9f2d 100644 --- a/tests/__snapshots__/qrcode-2/#199b/fast-90.json +++ b/tests/__snapshots__/qrcode-2/#199b/fast-90.json @@ -5,7 +5,7 @@ "bytes": "653bb12", "bytesECI": "bb19d2c", "text": "abcdefghijklmnopqrstuvwxyz012345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199b/pure-0.json b/tests/__snapshots__/qrcode-2/#199b/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/#199b/pure-0.json +++ b/tests/__snapshots__/qrcode-2/#199b/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/#199b/slow-0.json b/tests/__snapshots__/qrcode-2/#199b/slow-0.json index ac6777a0..0385b819 100644 --- a/tests/__snapshots__/qrcode-2/#199b/slow-0.json +++ b/tests/__snapshots__/qrcode-2/#199b/slow-0.json @@ -5,7 +5,7 @@ "bytes": "653bb12", "bytesECI": "bb19d2c", "text": "abcdefghijklmnopqrstuvwxyz012345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199b/slow-180.json b/tests/__snapshots__/qrcode-2/#199b/slow-180.json index 11830b1c..418d9979 100644 --- a/tests/__snapshots__/qrcode-2/#199b/slow-180.json +++ b/tests/__snapshots__/qrcode-2/#199b/slow-180.json @@ -5,7 +5,7 @@ "bytes": "653bb12", "bytesECI": "bb19d2c", "text": "abcdefghijklmnopqrstuvwxyz012345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199b/slow-270.json b/tests/__snapshots__/qrcode-2/#199b/slow-270.json index 1f3106f9..6b5f91fe 100644 --- a/tests/__snapshots__/qrcode-2/#199b/slow-270.json +++ b/tests/__snapshots__/qrcode-2/#199b/slow-270.json @@ -5,7 +5,7 @@ "bytes": "653bb12", "bytesECI": "bb19d2c", "text": "abcdefghijklmnopqrstuvwxyz012345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#199b/slow-90.json b/tests/__snapshots__/qrcode-2/#199b/slow-90.json index 7939caa7..e6ee9f2d 100644 --- a/tests/__snapshots__/qrcode-2/#199b/slow-90.json +++ b/tests/__snapshots__/qrcode-2/#199b/slow-90.json @@ -5,7 +5,7 @@ "bytes": "653bb12", "bytesECI": "bb19d2c", "text": "abcdefghijklmnopqrstuvwxyz012345", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/#253/fast-0.json b/tests/__snapshots__/qrcode-2/#253/fast-0.json index 0cb4b75e..9cca2312 100644 --- a/tests/__snapshots__/qrcode-2/#253/fast-0.json +++ b/tests/__snapshots__/qrcode-2/#253/fast-0.json @@ -5,7 +5,7 @@ "bytes": "10672cd", "bytesECI": "88614f5", "text": "http://cli.im", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#253/fast-180.json b/tests/__snapshots__/qrcode-2/#253/fast-180.json index a377b451..abe8ca65 100644 --- a/tests/__snapshots__/qrcode-2/#253/fast-180.json +++ b/tests/__snapshots__/qrcode-2/#253/fast-180.json @@ -5,7 +5,7 @@ "bytes": "10672cd", "bytesECI": "88614f5", "text": "http://cli.im", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#253/fast-270.json b/tests/__snapshots__/qrcode-2/#253/fast-270.json index 3ecf862c..85fcd4a8 100644 --- a/tests/__snapshots__/qrcode-2/#253/fast-270.json +++ b/tests/__snapshots__/qrcode-2/#253/fast-270.json @@ -5,7 +5,7 @@ "bytes": "10672cd", "bytesECI": "88614f5", "text": "http://cli.im", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#253/fast-90.json b/tests/__snapshots__/qrcode-2/#253/fast-90.json index 70aa4914..946c92b9 100644 --- a/tests/__snapshots__/qrcode-2/#253/fast-90.json +++ b/tests/__snapshots__/qrcode-2/#253/fast-90.json @@ -5,7 +5,7 @@ "bytes": "10672cd", "bytesECI": "88614f5", "text": "http://cli.im", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#253/pure-0.json b/tests/__snapshots__/qrcode-2/#253/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/#253/pure-0.json +++ b/tests/__snapshots__/qrcode-2/#253/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/#253/slow-0.json b/tests/__snapshots__/qrcode-2/#253/slow-0.json index 0cb4b75e..9cca2312 100644 --- a/tests/__snapshots__/qrcode-2/#253/slow-0.json +++ b/tests/__snapshots__/qrcode-2/#253/slow-0.json @@ -5,7 +5,7 @@ "bytes": "10672cd", "bytesECI": "88614f5", "text": "http://cli.im", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#253/slow-180.json b/tests/__snapshots__/qrcode-2/#253/slow-180.json index a377b451..abe8ca65 100644 --- a/tests/__snapshots__/qrcode-2/#253/slow-180.json +++ b/tests/__snapshots__/qrcode-2/#253/slow-180.json @@ -5,7 +5,7 @@ "bytes": "10672cd", "bytesECI": "88614f5", "text": "http://cli.im", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#253/slow-270.json b/tests/__snapshots__/qrcode-2/#253/slow-270.json index 3ecf862c..85fcd4a8 100644 --- a/tests/__snapshots__/qrcode-2/#253/slow-270.json +++ b/tests/__snapshots__/qrcode-2/#253/slow-270.json @@ -5,7 +5,7 @@ "bytes": "10672cd", "bytesECI": "88614f5", "text": "http://cli.im", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#253/slow-90.json b/tests/__snapshots__/qrcode-2/#253/slow-90.json index 70aa4914..946c92b9 100644 --- a/tests/__snapshots__/qrcode-2/#253/slow-90.json +++ b/tests/__snapshots__/qrcode-2/#253/slow-90.json @@ -5,7 +5,7 @@ "bytes": "10672cd", "bytesECI": "88614f5", "text": "http://cli.im", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#258/fast-0.json b/tests/__snapshots__/qrcode-2/#258/fast-0.json index 90fd1628..d0368355 100644 --- a/tests/__snapshots__/qrcode-2/#258/fast-0.json +++ b/tests/__snapshots__/qrcode-2/#258/fast-0.json @@ -5,7 +5,7 @@ "bytes": "372be9d", "bytesECI": "9394fbf", "text": "https://vt.tiktok.com/ZGJUXpy5e/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#258/fast-180.json b/tests/__snapshots__/qrcode-2/#258/fast-180.json index 36527910..aaee3b29 100644 --- a/tests/__snapshots__/qrcode-2/#258/fast-180.json +++ b/tests/__snapshots__/qrcode-2/#258/fast-180.json @@ -5,7 +5,7 @@ "bytes": "372be9d", "bytesECI": "9394fbf", "text": "https://vt.tiktok.com/ZGJUXpy5e/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#258/fast-270.json b/tests/__snapshots__/qrcode-2/#258/fast-270.json index 378aaf64..8423b9e1 100644 --- a/tests/__snapshots__/qrcode-2/#258/fast-270.json +++ b/tests/__snapshots__/qrcode-2/#258/fast-270.json @@ -5,7 +5,7 @@ "bytes": "372be9d", "bytesECI": "9394fbf", "text": "https://vt.tiktok.com/ZGJUXpy5e/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#258/fast-90.json b/tests/__snapshots__/qrcode-2/#258/fast-90.json index aa4ddc2d..3b989518 100644 --- a/tests/__snapshots__/qrcode-2/#258/fast-90.json +++ b/tests/__snapshots__/qrcode-2/#258/fast-90.json @@ -5,7 +5,7 @@ "bytes": "372be9d", "bytesECI": "9394fbf", "text": "https://vt.tiktok.com/ZGJUXpy5e/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#258/pure-0.json b/tests/__snapshots__/qrcode-2/#258/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/#258/pure-0.json +++ b/tests/__snapshots__/qrcode-2/#258/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/#258/slow-0.json b/tests/__snapshots__/qrcode-2/#258/slow-0.json index 90fd1628..d0368355 100644 --- a/tests/__snapshots__/qrcode-2/#258/slow-0.json +++ b/tests/__snapshots__/qrcode-2/#258/slow-0.json @@ -5,7 +5,7 @@ "bytes": "372be9d", "bytesECI": "9394fbf", "text": "https://vt.tiktok.com/ZGJUXpy5e/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#258/slow-180.json b/tests/__snapshots__/qrcode-2/#258/slow-180.json index 36527910..aaee3b29 100644 --- a/tests/__snapshots__/qrcode-2/#258/slow-180.json +++ b/tests/__snapshots__/qrcode-2/#258/slow-180.json @@ -5,7 +5,7 @@ "bytes": "372be9d", "bytesECI": "9394fbf", "text": "https://vt.tiktok.com/ZGJUXpy5e/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#258/slow-270.json b/tests/__snapshots__/qrcode-2/#258/slow-270.json index 378aaf64..8423b9e1 100644 --- a/tests/__snapshots__/qrcode-2/#258/slow-270.json +++ b/tests/__snapshots__/qrcode-2/#258/slow-270.json @@ -5,7 +5,7 @@ "bytes": "372be9d", "bytesECI": "9394fbf", "text": "https://vt.tiktok.com/ZGJUXpy5e/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#258/slow-90.json b/tests/__snapshots__/qrcode-2/#258/slow-90.json index aa4ddc2d..3b989518 100644 --- a/tests/__snapshots__/qrcode-2/#258/slow-90.json +++ b/tests/__snapshots__/qrcode-2/#258/slow-90.json @@ -5,7 +5,7 @@ "bytes": "372be9d", "bytesECI": "9394fbf", "text": "https://vt.tiktok.com/ZGJUXpy5e/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/#709/pure-0.json b/tests/__snapshots__/qrcode-2/#709/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/#709/pure-0.json +++ b/tests/__snapshots__/qrcode-2/#709/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/#709/slow-0.json b/tests/__snapshots__/qrcode-2/#709/slow-0.json index 621942e4..1759f227 100644 --- a/tests/__snapshots__/qrcode-2/#709/slow-0.json +++ b/tests/__snapshots__/qrcode-2/#709/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1650469", "bytesECI": "98eca15", "text": "https://u.wechat.com/ELaSWShWyTFQvXJkp9vCgFA", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#709/slow-180.json b/tests/__snapshots__/qrcode-2/#709/slow-180.json index c41649c2..14780a61 100644 --- a/tests/__snapshots__/qrcode-2/#709/slow-180.json +++ b/tests/__snapshots__/qrcode-2/#709/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1650469", "bytesECI": "98eca15", "text": "https://u.wechat.com/ELaSWShWyTFQvXJkp9vCgFA", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#709/slow-270.json b/tests/__snapshots__/qrcode-2/#709/slow-270.json index b9d5383b..223ec82a 100644 --- a/tests/__snapshots__/qrcode-2/#709/slow-270.json +++ b/tests/__snapshots__/qrcode-2/#709/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1650469", "bytesECI": "98eca15", "text": "https://u.wechat.com/ELaSWShWyTFQvXJkp9vCgFA", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/#709/slow-90.json b/tests/__snapshots__/qrcode-2/#709/slow-90.json index 5784c6b6..8781fef7 100644 --- a/tests/__snapshots__/qrcode-2/#709/slow-90.json +++ b/tests/__snapshots__/qrcode-2/#709/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1650469", "bytesECI": "98eca15", "text": "https://u.wechat.com/ELaSWShWyTFQvXJkp9vCgFA", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/1/fast-0.json b/tests/__snapshots__/qrcode-2/1/fast-0.json index dbfbef83..1150e02e 100644 --- a/tests/__snapshots__/qrcode-2/1/fast-0.json +++ b/tests/__snapshots__/qrcode-2/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ff463ff", "bytesECI": "fcbd692", "text": "When we at WRT talk about \\\"text,\\\" we are generally talking about a particular kind of readable information encoding - and readable is a complex proposition. Text may be stylized in a way we are unfamiliar with, as in blackletter - it may be interspersed with some markup we don\\'t understand, such as HTML - it may be be a substitution system we aren\\'t familiar with, such as braille or morse code - or it may be a system that, while technically human-readable, isn\\'t particularly optimized for reading by humans, as with barcodes (although barcodes can be read).", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/1/fast-180.json b/tests/__snapshots__/qrcode-2/1/fast-180.json index 55724a6c..4a779adb 100644 --- a/tests/__snapshots__/qrcode-2/1/fast-180.json +++ b/tests/__snapshots__/qrcode-2/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ff463ff", "bytesECI": "fcbd692", "text": "When we at WRT talk about \\\"text,\\\" we are generally talking about a particular kind of readable information encoding - and readable is a complex proposition. Text may be stylized in a way we are unfamiliar with, as in blackletter - it may be interspersed with some markup we don\\'t understand, such as HTML - it may be be a substitution system we aren\\'t familiar with, such as braille or morse code - or it may be a system that, while technically human-readable, isn\\'t particularly optimized for reading by humans, as with barcodes (although barcodes can be read).", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/1/fast-270.json b/tests/__snapshots__/qrcode-2/1/fast-270.json index af9f8f71..cc41c20c 100644 --- a/tests/__snapshots__/qrcode-2/1/fast-270.json +++ b/tests/__snapshots__/qrcode-2/1/fast-270.json @@ -5,7 +5,7 @@ "bytes": "ff463ff", "bytesECI": "fcbd692", "text": "When we at WRT talk about \\\"text,\\\" we are generally talking about a particular kind of readable information encoding - and readable is a complex proposition. Text may be stylized in a way we are unfamiliar with, as in blackletter - it may be interspersed with some markup we don\\'t understand, such as HTML - it may be be a substitution system we aren\\'t familiar with, such as braille or morse code - or it may be a system that, while technically human-readable, isn\\'t particularly optimized for reading by humans, as with barcodes (although barcodes can be read).", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/1/fast-90.json b/tests/__snapshots__/qrcode-2/1/fast-90.json index 09535ecf..866cd04d 100644 --- a/tests/__snapshots__/qrcode-2/1/fast-90.json +++ b/tests/__snapshots__/qrcode-2/1/fast-90.json @@ -5,7 +5,7 @@ "bytes": "ff463ff", "bytesECI": "fcbd692", "text": "When we at WRT talk about \\\"text,\\\" we are generally talking about a particular kind of readable information encoding - and readable is a complex proposition. Text may be stylized in a way we are unfamiliar with, as in blackletter - it may be interspersed with some markup we don\\'t understand, such as HTML - it may be be a substitution system we aren\\'t familiar with, such as braille or morse code - or it may be a system that, while technically human-readable, isn\\'t particularly optimized for reading by humans, as with barcodes (although barcodes can be read).", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/1/pure-0.json b/tests/__snapshots__/qrcode-2/1/pure-0.json index 5b3ded22..6e41a9c4 100644 --- a/tests/__snapshots__/qrcode-2/1/pure-0.json +++ b/tests/__snapshots__/qrcode-2/1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ff463ff", "bytesECI": "fcbd692", "text": "When we at WRT talk about \\\"text,\\\" we are generally talking about a particular kind of readable information encoding - and readable is a complex proposition. Text may be stylized in a way we are unfamiliar with, as in blackletter - it may be interspersed with some markup we don\\'t understand, such as HTML - it may be be a substitution system we aren\\'t familiar with, such as braille or morse code - or it may be a system that, while technically human-readable, isn\\'t particularly optimized for reading by humans, as with barcodes (although barcodes can be read).", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/1/slow-0.json b/tests/__snapshots__/qrcode-2/1/slow-0.json index dbfbef83..1150e02e 100644 --- a/tests/__snapshots__/qrcode-2/1/slow-0.json +++ b/tests/__snapshots__/qrcode-2/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ff463ff", "bytesECI": "fcbd692", "text": "When we at WRT talk about \\\"text,\\\" we are generally talking about a particular kind of readable information encoding - and readable is a complex proposition. Text may be stylized in a way we are unfamiliar with, as in blackletter - it may be interspersed with some markup we don\\'t understand, such as HTML - it may be be a substitution system we aren\\'t familiar with, such as braille or morse code - or it may be a system that, while technically human-readable, isn\\'t particularly optimized for reading by humans, as with barcodes (although barcodes can be read).", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/1/slow-180.json b/tests/__snapshots__/qrcode-2/1/slow-180.json index 55724a6c..4a779adb 100644 --- a/tests/__snapshots__/qrcode-2/1/slow-180.json +++ b/tests/__snapshots__/qrcode-2/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ff463ff", "bytesECI": "fcbd692", "text": "When we at WRT talk about \\\"text,\\\" we are generally talking about a particular kind of readable information encoding - and readable is a complex proposition. Text may be stylized in a way we are unfamiliar with, as in blackletter - it may be interspersed with some markup we don\\'t understand, such as HTML - it may be be a substitution system we aren\\'t familiar with, such as braille or morse code - or it may be a system that, while technically human-readable, isn\\'t particularly optimized for reading by humans, as with barcodes (although barcodes can be read).", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/1/slow-270.json b/tests/__snapshots__/qrcode-2/1/slow-270.json index af9f8f71..cc41c20c 100644 --- a/tests/__snapshots__/qrcode-2/1/slow-270.json +++ b/tests/__snapshots__/qrcode-2/1/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ff463ff", "bytesECI": "fcbd692", "text": "When we at WRT talk about \\\"text,\\\" we are generally talking about a particular kind of readable information encoding - and readable is a complex proposition. Text may be stylized in a way we are unfamiliar with, as in blackletter - it may be interspersed with some markup we don\\'t understand, such as HTML - it may be be a substitution system we aren\\'t familiar with, such as braille or morse code - or it may be a system that, while technically human-readable, isn\\'t particularly optimized for reading by humans, as with barcodes (although barcodes can be read).", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/1/slow-90.json b/tests/__snapshots__/qrcode-2/1/slow-90.json index 09535ecf..866cd04d 100644 --- a/tests/__snapshots__/qrcode-2/1/slow-90.json +++ b/tests/__snapshots__/qrcode-2/1/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ff463ff", "bytesECI": "fcbd692", "text": "When we at WRT talk about \\\"text,\\\" we are generally talking about a particular kind of readable information encoding - and readable is a complex proposition. Text may be stylized in a way we are unfamiliar with, as in blackletter - it may be interspersed with some markup we don\\'t understand, such as HTML - it may be be a substitution system we aren\\'t familiar with, such as braille or morse code - or it may be a system that, while technically human-readable, isn\\'t particularly optimized for reading by humans, as with barcodes (although barcodes can be read).", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "19" + "version": "19", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/10/fast-0.json b/tests/__snapshots__/qrcode-2/10/fast-0.json index 009d7048..9c9b5ee8 100644 --- a/tests/__snapshots__/qrcode-2/10/fast-0.json +++ b/tests/__snapshots__/qrcode-2/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "fde83ab", "bytesECI": "5bb9993", "text": "Google モバイルhttp://google.jp", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/10/fast-180.json b/tests/__snapshots__/qrcode-2/10/fast-180.json index 1eda4df3..7aeed336 100644 --- a/tests/__snapshots__/qrcode-2/10/fast-180.json +++ b/tests/__snapshots__/qrcode-2/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "fde83ab", "bytesECI": "5bb9993", "text": "Google モバイルhttp://google.jp", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/10/fast-270.json b/tests/__snapshots__/qrcode-2/10/fast-270.json index a6cc14b4..2adb365b 100644 --- a/tests/__snapshots__/qrcode-2/10/fast-270.json +++ b/tests/__snapshots__/qrcode-2/10/fast-270.json @@ -5,7 +5,7 @@ "bytes": "fde83ab", "bytesECI": "5bb9993", "text": "Google モバイルhttp://google.jp", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/10/fast-90.json b/tests/__snapshots__/qrcode-2/10/fast-90.json index fa008023..e1c99bb0 100644 --- a/tests/__snapshots__/qrcode-2/10/fast-90.json +++ b/tests/__snapshots__/qrcode-2/10/fast-90.json @@ -5,7 +5,7 @@ "bytes": "fde83ab", "bytesECI": "5bb9993", "text": "Google モバイルhttp://google.jp", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/10/pure-0.json b/tests/__snapshots__/qrcode-2/10/pure-0.json index 58834172..c844d749 100644 --- a/tests/__snapshots__/qrcode-2/10/pure-0.json +++ b/tests/__snapshots__/qrcode-2/10/pure-0.json @@ -5,7 +5,7 @@ "bytes": "fde83ab", "bytesECI": "5bb9993", "text": "Google モバイルhttp://google.jp", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/10/slow-0.json b/tests/__snapshots__/qrcode-2/10/slow-0.json index 009d7048..9c9b5ee8 100644 --- a/tests/__snapshots__/qrcode-2/10/slow-0.json +++ b/tests/__snapshots__/qrcode-2/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "fde83ab", "bytesECI": "5bb9993", "text": "Google モバイルhttp://google.jp", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/10/slow-180.json b/tests/__snapshots__/qrcode-2/10/slow-180.json index 1eda4df3..7aeed336 100644 --- a/tests/__snapshots__/qrcode-2/10/slow-180.json +++ b/tests/__snapshots__/qrcode-2/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "fde83ab", "bytesECI": "5bb9993", "text": "Google モバイルhttp://google.jp", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/10/slow-270.json b/tests/__snapshots__/qrcode-2/10/slow-270.json index a6cc14b4..2adb365b 100644 --- a/tests/__snapshots__/qrcode-2/10/slow-270.json +++ b/tests/__snapshots__/qrcode-2/10/slow-270.json @@ -5,7 +5,7 @@ "bytes": "fde83ab", "bytesECI": "5bb9993", "text": "Google モバイルhttp://google.jp", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/10/slow-90.json b/tests/__snapshots__/qrcode-2/10/slow-90.json index fa008023..e1c99bb0 100644 --- a/tests/__snapshots__/qrcode-2/10/slow-90.json +++ b/tests/__snapshots__/qrcode-2/10/slow-90.json @@ -5,7 +5,7 @@ "bytes": "fde83ab", "bytesECI": "5bb9993", "text": "Google モバイルhttp://google.jp", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/11/fast-0.json b/tests/__snapshots__/qrcode-2/11/fast-0.json index d09e9726..211a61d8 100644 --- a/tests/__snapshots__/qrcode-2/11/fast-0.json +++ b/tests/__snapshots__/qrcode-2/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/11/fast-180.json b/tests/__snapshots__/qrcode-2/11/fast-180.json index bed3ce4b..89485cb8 100644 --- a/tests/__snapshots__/qrcode-2/11/fast-180.json +++ b/tests/__snapshots__/qrcode-2/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/11/fast-270.json b/tests/__snapshots__/qrcode-2/11/fast-270.json index ddb4c7d1..fefcf08b 100644 --- a/tests/__snapshots__/qrcode-2/11/fast-270.json +++ b/tests/__snapshots__/qrcode-2/11/fast-270.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/11/fast-90.json b/tests/__snapshots__/qrcode-2/11/fast-90.json index 19251423..79ba81dc 100644 --- a/tests/__snapshots__/qrcode-2/11/fast-90.json +++ b/tests/__snapshots__/qrcode-2/11/fast-90.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/11/pure-0.json b/tests/__snapshots__/qrcode-2/11/pure-0.json index 784a8aa5..2f1dc0d9 100644 --- a/tests/__snapshots__/qrcode-2/11/pure-0.json +++ b/tests/__snapshots__/qrcode-2/11/pure-0.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/11/slow-0.json b/tests/__snapshots__/qrcode-2/11/slow-0.json index d09e9726..211a61d8 100644 --- a/tests/__snapshots__/qrcode-2/11/slow-0.json +++ b/tests/__snapshots__/qrcode-2/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/11/slow-180.json b/tests/__snapshots__/qrcode-2/11/slow-180.json index bed3ce4b..89485cb8 100644 --- a/tests/__snapshots__/qrcode-2/11/slow-180.json +++ b/tests/__snapshots__/qrcode-2/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/11/slow-270.json b/tests/__snapshots__/qrcode-2/11/slow-270.json index ddb4c7d1..fefcf08b 100644 --- a/tests/__snapshots__/qrcode-2/11/slow-270.json +++ b/tests/__snapshots__/qrcode-2/11/slow-270.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/11/slow-90.json b/tests/__snapshots__/qrcode-2/11/slow-90.json index 19251423..79ba81dc 100644 --- a/tests/__snapshots__/qrcode-2/11/slow-90.json +++ b/tests/__snapshots__/qrcode-2/11/slow-90.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/12/pure-0.json b/tests/__snapshots__/qrcode-2/12/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/12/pure-0.json +++ b/tests/__snapshots__/qrcode-2/12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/13/pure-0.json b/tests/__snapshots__/qrcode-2/13/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/13/pure-0.json +++ b/tests/__snapshots__/qrcode-2/13/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/14/fast-0.json b/tests/__snapshots__/qrcode-2/14/fast-0.json index b7342914..c411803c 100644 --- a/tests/__snapshots__/qrcode-2/14/fast-0.json +++ b/tests/__snapshots__/qrcode-2/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "aec1d26", "bytesECI": "db02e57", "text": "http://bbc.co.uk/programmes", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/14/fast-180.json b/tests/__snapshots__/qrcode-2/14/fast-180.json index e7c98474..220425df 100644 --- a/tests/__snapshots__/qrcode-2/14/fast-180.json +++ b/tests/__snapshots__/qrcode-2/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "aec1d26", "bytesECI": "db02e57", "text": "http://bbc.co.uk/programmes", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/14/fast-270.json b/tests/__snapshots__/qrcode-2/14/fast-270.json index f23ac2a3..3a34dc7a 100644 --- a/tests/__snapshots__/qrcode-2/14/fast-270.json +++ b/tests/__snapshots__/qrcode-2/14/fast-270.json @@ -5,7 +5,7 @@ "bytes": "aec1d26", "bytesECI": "db02e57", "text": "http://bbc.co.uk/programmes", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/14/fast-90.json b/tests/__snapshots__/qrcode-2/14/fast-90.json index 63480cf8..7e0f2e69 100644 --- a/tests/__snapshots__/qrcode-2/14/fast-90.json +++ b/tests/__snapshots__/qrcode-2/14/fast-90.json @@ -5,7 +5,7 @@ "bytes": "aec1d26", "bytesECI": "db02e57", "text": "http://bbc.co.uk/programmes", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/14/pure-0.json b/tests/__snapshots__/qrcode-2/14/pure-0.json index f22884c5..44ab78c0 100644 --- a/tests/__snapshots__/qrcode-2/14/pure-0.json +++ b/tests/__snapshots__/qrcode-2/14/pure-0.json @@ -5,7 +5,7 @@ "bytes": "aec1d26", "bytesECI": "db02e57", "text": "http://bbc.co.uk/programmes", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/14/slow-0.json b/tests/__snapshots__/qrcode-2/14/slow-0.json index b7342914..c411803c 100644 --- a/tests/__snapshots__/qrcode-2/14/slow-0.json +++ b/tests/__snapshots__/qrcode-2/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "aec1d26", "bytesECI": "db02e57", "text": "http://bbc.co.uk/programmes", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/14/slow-180.json b/tests/__snapshots__/qrcode-2/14/slow-180.json index e7c98474..220425df 100644 --- a/tests/__snapshots__/qrcode-2/14/slow-180.json +++ b/tests/__snapshots__/qrcode-2/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "aec1d26", "bytesECI": "db02e57", "text": "http://bbc.co.uk/programmes", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/14/slow-270.json b/tests/__snapshots__/qrcode-2/14/slow-270.json index f23ac2a3..3a34dc7a 100644 --- a/tests/__snapshots__/qrcode-2/14/slow-270.json +++ b/tests/__snapshots__/qrcode-2/14/slow-270.json @@ -5,7 +5,7 @@ "bytes": "aec1d26", "bytesECI": "db02e57", "text": "http://bbc.co.uk/programmes", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/14/slow-90.json b/tests/__snapshots__/qrcode-2/14/slow-90.json index 63480cf8..7e0f2e69 100644 --- a/tests/__snapshots__/qrcode-2/14/slow-90.json +++ b/tests/__snapshots__/qrcode-2/14/slow-90.json @@ -5,7 +5,7 @@ "bytes": "aec1d26", "bytesECI": "db02e57", "text": "http://bbc.co.uk/programmes", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/15/fast-0.json b/tests/__snapshots__/qrcode-2/15/fast-0.json index 29b94927..e8e47e09 100644 --- a/tests/__snapshots__/qrcode-2/15/fast-0.json +++ b/tests/__snapshots__/qrcode-2/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "97d8ce7", "bytesECI": "eaeec64", "text": "In 25 words or less in the comments, below, tell us how QR codes will make the world less ordinary.", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/15/fast-180.json b/tests/__snapshots__/qrcode-2/15/fast-180.json index 265c2fa5..bd7157be 100644 --- a/tests/__snapshots__/qrcode-2/15/fast-180.json +++ b/tests/__snapshots__/qrcode-2/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "97d8ce7", "bytesECI": "eaeec64", "text": "In 25 words or less in the comments, below, tell us how QR codes will make the world less ordinary.", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/15/fast-270.json b/tests/__snapshots__/qrcode-2/15/fast-270.json index dec672a4..285977b8 100644 --- a/tests/__snapshots__/qrcode-2/15/fast-270.json +++ b/tests/__snapshots__/qrcode-2/15/fast-270.json @@ -5,7 +5,7 @@ "bytes": "97d8ce7", "bytesECI": "eaeec64", "text": "In 25 words or less in the comments, below, tell us how QR codes will make the world less ordinary.", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/15/fast-90.json b/tests/__snapshots__/qrcode-2/15/fast-90.json index 3cfcc453..09ce97f9 100644 --- a/tests/__snapshots__/qrcode-2/15/fast-90.json +++ b/tests/__snapshots__/qrcode-2/15/fast-90.json @@ -5,7 +5,7 @@ "bytes": "97d8ce7", "bytesECI": "eaeec64", "text": "In 25 words or less in the comments, below, tell us how QR codes will make the world less ordinary.", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/15/pure-0.json b/tests/__snapshots__/qrcode-2/15/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/15/pure-0.json +++ b/tests/__snapshots__/qrcode-2/15/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/15/slow-0.json b/tests/__snapshots__/qrcode-2/15/slow-0.json index 29b94927..e8e47e09 100644 --- a/tests/__snapshots__/qrcode-2/15/slow-0.json +++ b/tests/__snapshots__/qrcode-2/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "97d8ce7", "bytesECI": "eaeec64", "text": "In 25 words or less in the comments, below, tell us how QR codes will make the world less ordinary.", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/15/slow-180.json b/tests/__snapshots__/qrcode-2/15/slow-180.json index 265c2fa5..bd7157be 100644 --- a/tests/__snapshots__/qrcode-2/15/slow-180.json +++ b/tests/__snapshots__/qrcode-2/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "97d8ce7", "bytesECI": "eaeec64", "text": "In 25 words or less in the comments, below, tell us how QR codes will make the world less ordinary.", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/15/slow-270.json b/tests/__snapshots__/qrcode-2/15/slow-270.json index dec672a4..285977b8 100644 --- a/tests/__snapshots__/qrcode-2/15/slow-270.json +++ b/tests/__snapshots__/qrcode-2/15/slow-270.json @@ -5,7 +5,7 @@ "bytes": "97d8ce7", "bytesECI": "eaeec64", "text": "In 25 words or less in the comments, below, tell us how QR codes will make the world less ordinary.", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/15/slow-90.json b/tests/__snapshots__/qrcode-2/15/slow-90.json index 3cfcc453..09ce97f9 100644 --- a/tests/__snapshots__/qrcode-2/15/slow-90.json +++ b/tests/__snapshots__/qrcode-2/15/slow-90.json @@ -5,7 +5,7 @@ "bytes": "97d8ce7", "bytesECI": "eaeec64", "text": "In 25 words or less in the comments, below, tell us how QR codes will make the world less ordinary.", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/16/fast-0.json b/tests/__snapshots__/qrcode-2/16/fast-0.json index a8a522b0..e91a8f99 100644 --- a/tests/__snapshots__/qrcode-2/16/fast-0.json +++ b/tests/__snapshots__/qrcode-2/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "80d04fb", "bytesECI": "a11337d", "text": "[内側QRコード]*ダブルQR*http://d-qr.net/ex/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/16/fast-180.json b/tests/__snapshots__/qrcode-2/16/fast-180.json index 6caaf265..3531e808 100644 --- a/tests/__snapshots__/qrcode-2/16/fast-180.json +++ b/tests/__snapshots__/qrcode-2/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "80d04fb", "bytesECI": "a11337d", "text": "[内側QRコード]*ダブルQR*http://d-qr.net/ex/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/16/fast-270.json b/tests/__snapshots__/qrcode-2/16/fast-270.json index 3face482..e6b9b95a 100644 --- a/tests/__snapshots__/qrcode-2/16/fast-270.json +++ b/tests/__snapshots__/qrcode-2/16/fast-270.json @@ -5,7 +5,7 @@ "bytes": "80d04fb", "bytesECI": "a11337d", "text": "[内側QRコード]*ダブルQR*http://d-qr.net/ex/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/16/fast-90.json b/tests/__snapshots__/qrcode-2/16/fast-90.json index 56d9eb1d..d46488a9 100644 --- a/tests/__snapshots__/qrcode-2/16/fast-90.json +++ b/tests/__snapshots__/qrcode-2/16/fast-90.json @@ -5,7 +5,7 @@ "bytes": "80d04fb", "bytesECI": "a11337d", "text": "[内側QRコード]*ダブルQR*http://d-qr.net/ex/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/16/pure-0.json b/tests/__snapshots__/qrcode-2/16/pure-0.json index 3be47b4f..34a6d016 100644 --- a/tests/__snapshots__/qrcode-2/16/pure-0.json +++ b/tests/__snapshots__/qrcode-2/16/pure-0.json @@ -5,7 +5,7 @@ "bytes": "2a04fa8", "bytesECI": "d17923a", "text": "[外側QRコード] *ダブルQR*http://d-qr.net/ex/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/16/slow-0.json b/tests/__snapshots__/qrcode-2/16/slow-0.json index a8a522b0..e91a8f99 100644 --- a/tests/__snapshots__/qrcode-2/16/slow-0.json +++ b/tests/__snapshots__/qrcode-2/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "80d04fb", "bytesECI": "a11337d", "text": "[内側QRコード]*ダブルQR*http://d-qr.net/ex/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/16/slow-180.json b/tests/__snapshots__/qrcode-2/16/slow-180.json index 6caaf265..3531e808 100644 --- a/tests/__snapshots__/qrcode-2/16/slow-180.json +++ b/tests/__snapshots__/qrcode-2/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "80d04fb", "bytesECI": "a11337d", "text": "[内側QRコード]*ダブルQR*http://d-qr.net/ex/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/16/slow-270.json b/tests/__snapshots__/qrcode-2/16/slow-270.json index 3face482..e6b9b95a 100644 --- a/tests/__snapshots__/qrcode-2/16/slow-270.json +++ b/tests/__snapshots__/qrcode-2/16/slow-270.json @@ -5,7 +5,7 @@ "bytes": "80d04fb", "bytesECI": "a11337d", "text": "[内側QRコード]*ダブルQR*http://d-qr.net/ex/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/16/slow-90.json b/tests/__snapshots__/qrcode-2/16/slow-90.json index 56d9eb1d..d46488a9 100644 --- a/tests/__snapshots__/qrcode-2/16/slow-90.json +++ b/tests/__snapshots__/qrcode-2/16/slow-90.json @@ -5,7 +5,7 @@ "bytes": "80d04fb", "bytesECI": "a11337d", "text": "[内側QRコード]*ダブルQR*http://d-qr.net/ex/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/17/fast-0.json b/tests/__snapshots__/qrcode-2/17/fast-0.json index 30d49839..a3fb2df3 100644 --- a/tests/__snapshots__/qrcode-2/17/fast-0.json +++ b/tests/__snapshots__/qrcode-2/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "60fbfbf", "bytesECI": "25c8fa9", "text": "デザインQRhttp://d-qr.net/ex/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/17/fast-180.json b/tests/__snapshots__/qrcode-2/17/fast-180.json index db1262f9..9aeb4d55 100644 --- a/tests/__snapshots__/qrcode-2/17/fast-180.json +++ b/tests/__snapshots__/qrcode-2/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "60fbfbf", "bytesECI": "25c8fa9", "text": "デザインQRhttp://d-qr.net/ex/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/17/fast-270.json b/tests/__snapshots__/qrcode-2/17/fast-270.json index 40766e34..72ab46b9 100644 --- a/tests/__snapshots__/qrcode-2/17/fast-270.json +++ b/tests/__snapshots__/qrcode-2/17/fast-270.json @@ -5,7 +5,7 @@ "bytes": "60fbfbf", "bytesECI": "25c8fa9", "text": "デザインQRhttp://d-qr.net/ex/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/17/fast-90.json b/tests/__snapshots__/qrcode-2/17/fast-90.json index e26c818d..8db3c603 100644 --- a/tests/__snapshots__/qrcode-2/17/fast-90.json +++ b/tests/__snapshots__/qrcode-2/17/fast-90.json @@ -5,7 +5,7 @@ "bytes": "60fbfbf", "bytesECI": "25c8fa9", "text": "デザインQRhttp://d-qr.net/ex/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/17/pure-0.json b/tests/__snapshots__/qrcode-2/17/pure-0.json index fba4525f..7910bc1d 100644 --- a/tests/__snapshots__/qrcode-2/17/pure-0.json +++ b/tests/__snapshots__/qrcode-2/17/pure-0.json @@ -5,7 +5,7 @@ "bytes": "60fbfbf", "bytesECI": "25c8fa9", "text": "デザインQRhttp://d-qr.net/ex/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/17/slow-0.json b/tests/__snapshots__/qrcode-2/17/slow-0.json index 30d49839..a3fb2df3 100644 --- a/tests/__snapshots__/qrcode-2/17/slow-0.json +++ b/tests/__snapshots__/qrcode-2/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "60fbfbf", "bytesECI": "25c8fa9", "text": "デザインQRhttp://d-qr.net/ex/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/17/slow-180.json b/tests/__snapshots__/qrcode-2/17/slow-180.json index db1262f9..9aeb4d55 100644 --- a/tests/__snapshots__/qrcode-2/17/slow-180.json +++ b/tests/__snapshots__/qrcode-2/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "60fbfbf", "bytesECI": "25c8fa9", "text": "デザインQRhttp://d-qr.net/ex/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/17/slow-270.json b/tests/__snapshots__/qrcode-2/17/slow-270.json index 40766e34..72ab46b9 100644 --- a/tests/__snapshots__/qrcode-2/17/slow-270.json +++ b/tests/__snapshots__/qrcode-2/17/slow-270.json @@ -5,7 +5,7 @@ "bytes": "60fbfbf", "bytesECI": "25c8fa9", "text": "デザインQRhttp://d-qr.net/ex/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/17/slow-90.json b/tests/__snapshots__/qrcode-2/17/slow-90.json index e26c818d..8db3c603 100644 --- a/tests/__snapshots__/qrcode-2/17/slow-90.json +++ b/tests/__snapshots__/qrcode-2/17/slow-90.json @@ -5,7 +5,7 @@ "bytes": "60fbfbf", "bytesECI": "25c8fa9", "text": "デザインQRhttp://d-qr.net/ex/", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/18/fast-0.json b/tests/__snapshots__/qrcode-2/18/fast-0.json index 3b19ae6e..8670a123 100644 --- a/tests/__snapshots__/qrcode-2/18/fast-0.json +++ b/tests/__snapshots__/qrcode-2/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b127179", "bytesECI": "07cfbfd", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/18/fast-180.json b/tests/__snapshots__/qrcode-2/18/fast-180.json index 6cb2f1e8..f15ab0f4 100644 --- a/tests/__snapshots__/qrcode-2/18/fast-180.json +++ b/tests/__snapshots__/qrcode-2/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b127179", "bytesECI": "07cfbfd", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/18/fast-270.json b/tests/__snapshots__/qrcode-2/18/fast-270.json index f83a3de4..09b9faf2 100644 --- a/tests/__snapshots__/qrcode-2/18/fast-270.json +++ b/tests/__snapshots__/qrcode-2/18/fast-270.json @@ -5,7 +5,7 @@ "bytes": "b127179", "bytesECI": "07cfbfd", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/18/fast-90.json b/tests/__snapshots__/qrcode-2/18/fast-90.json index 555121fa..3e160631 100644 --- a/tests/__snapshots__/qrcode-2/18/fast-90.json +++ b/tests/__snapshots__/qrcode-2/18/fast-90.json @@ -5,7 +5,7 @@ "bytes": "b127179", "bytesECI": "07cfbfd", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/18/pure-0.json b/tests/__snapshots__/qrcode-2/18/pure-0.json index ba492f95..439b71db 100644 --- a/tests/__snapshots__/qrcode-2/18/pure-0.json +++ b/tests/__snapshots__/qrcode-2/18/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b127179", "bytesECI": "07cfbfd", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/18/slow-0.json b/tests/__snapshots__/qrcode-2/18/slow-0.json index 3b19ae6e..8670a123 100644 --- a/tests/__snapshots__/qrcode-2/18/slow-0.json +++ b/tests/__snapshots__/qrcode-2/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b127179", "bytesECI": "07cfbfd", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/18/slow-180.json b/tests/__snapshots__/qrcode-2/18/slow-180.json index 6cb2f1e8..f15ab0f4 100644 --- a/tests/__snapshots__/qrcode-2/18/slow-180.json +++ b/tests/__snapshots__/qrcode-2/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b127179", "bytesECI": "07cfbfd", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/18/slow-270.json b/tests/__snapshots__/qrcode-2/18/slow-270.json index f83a3de4..09b9faf2 100644 --- a/tests/__snapshots__/qrcode-2/18/slow-270.json +++ b/tests/__snapshots__/qrcode-2/18/slow-270.json @@ -5,7 +5,7 @@ "bytes": "b127179", "bytesECI": "07cfbfd", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/18/slow-90.json b/tests/__snapshots__/qrcode-2/18/slow-90.json index 555121fa..3e160631 100644 --- a/tests/__snapshots__/qrcode-2/18/slow-90.json +++ b/tests/__snapshots__/qrcode-2/18/slow-90.json @@ -5,7 +5,7 @@ "bytes": "b127179", "bytesECI": "07cfbfd", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/19/fast-0.json b/tests/__snapshots__/qrcode-2/19/fast-0.json index e7a568c1..8792fdd6 100644 --- a/tests/__snapshots__/qrcode-2/19/fast-0.json +++ b/tests/__snapshots__/qrcode-2/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e240bb5", "bytesECI": "2f80d3a", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/19/fast-180.json b/tests/__snapshots__/qrcode-2/19/fast-180.json index 08121d5e..f25ffd42 100644 --- a/tests/__snapshots__/qrcode-2/19/fast-180.json +++ b/tests/__snapshots__/qrcode-2/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e240bb5", "bytesECI": "2f80d3a", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/19/fast-270.json b/tests/__snapshots__/qrcode-2/19/fast-270.json index 8703a6ed..dc0dd766 100644 --- a/tests/__snapshots__/qrcode-2/19/fast-270.json +++ b/tests/__snapshots__/qrcode-2/19/fast-270.json @@ -5,7 +5,7 @@ "bytes": "e240bb5", "bytesECI": "2f80d3a", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/19/fast-90.json b/tests/__snapshots__/qrcode-2/19/fast-90.json index 666477ec..876c2eb1 100644 --- a/tests/__snapshots__/qrcode-2/19/fast-90.json +++ b/tests/__snapshots__/qrcode-2/19/fast-90.json @@ -5,7 +5,7 @@ "bytes": "e240bb5", "bytesECI": "2f80d3a", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/19/pure-0.json b/tests/__snapshots__/qrcode-2/19/pure-0.json index 07f1b6d9..15b057c0 100644 --- a/tests/__snapshots__/qrcode-2/19/pure-0.json +++ b/tests/__snapshots__/qrcode-2/19/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e240bb5", "bytesECI": "2f80d3a", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/19/slow-0.json b/tests/__snapshots__/qrcode-2/19/slow-0.json index e7a568c1..8792fdd6 100644 --- a/tests/__snapshots__/qrcode-2/19/slow-0.json +++ b/tests/__snapshots__/qrcode-2/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e240bb5", "bytesECI": "2f80d3a", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/19/slow-180.json b/tests/__snapshots__/qrcode-2/19/slow-180.json index 08121d5e..f25ffd42 100644 --- a/tests/__snapshots__/qrcode-2/19/slow-180.json +++ b/tests/__snapshots__/qrcode-2/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e240bb5", "bytesECI": "2f80d3a", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/19/slow-270.json b/tests/__snapshots__/qrcode-2/19/slow-270.json index 8703a6ed..dc0dd766 100644 --- a/tests/__snapshots__/qrcode-2/19/slow-270.json +++ b/tests/__snapshots__/qrcode-2/19/slow-270.json @@ -5,7 +5,7 @@ "bytes": "e240bb5", "bytesECI": "2f80d3a", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/19/slow-90.json b/tests/__snapshots__/qrcode-2/19/slow-90.json index 666477ec..876c2eb1 100644 --- a/tests/__snapshots__/qrcode-2/19/slow-90.json +++ b/tests/__snapshots__/qrcode-2/19/slow-90.json @@ -5,7 +5,7 @@ "bytes": "e240bb5", "bytesECI": "2f80d3a", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/2/fast-0.json b/tests/__snapshots__/qrcode-2/2/fast-0.json index ff2626f3..4578b533 100644 --- a/tests/__snapshots__/qrcode-2/2/fast-0.json +++ b/tests/__snapshots__/qrcode-2/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f00163a", "bytesECI": "31fc589", "text": "LANDBYASCARC PERCEPTIBLEC EEK,OOZI GITSWAYTHROU AWILDERNESSOFBESUPPOSED,I CANT,ORATL ASTDWARFISH.NO REESOFANYM NITUDEARETOBESOMEMISERA EFRAMEBUIL I GS,TENANTED, U INGSUMMER THEFUGITIVE;BUTTHEWHO ISLAND,WI H EXCEPTIONOFT W STERNPOI ,ANDALINEOFLLIAMLEGR .HEWASOF N ENTHUGUENOTF Y ANDHADON BEENWEALTHTIONCONSE ENTUPONH SD STERS,HELEFTNE LE NS,THEC OFHISFOREOUTHCARO A.THISISLA AVERYSINGULARO TCONSISTSO ITTLEELSEDSAQUART FAMILE. TI PARATEDFROMTHEMA AN BYASCAR YPERCEPTERESORT MARSH EN EVEGETATION,ASMIGH SU POSED, CANT,ORATREMITY, ORT OULTRIESTANDS,ANDWHEREARESOM MIS FRAMEBUIFEVER,MAYBE INDEED, TO;BUTT EISLAND,WITNYYEARSAGO,IC ACTED LLIAM AND.HEWASOFANNESHADREDUCEDHIM OWA IONC NSEQUENTUPONHISDSIDENCEATSULLIVA \\'S HC ROLINA.THISISLANOUTTHR LESLON . THATN OINTE U RTEROF E.ITISTHROU ERNE DSANDSLI ,AFAVOR TOFT HEN.T", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/2/fast-180.json b/tests/__snapshots__/qrcode-2/2/fast-180.json index 17976dfb..b0109a28 100644 --- a/tests/__snapshots__/qrcode-2/2/fast-180.json +++ b/tests/__snapshots__/qrcode-2/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f00163a", "bytesECI": "31fc589", "text": "LANDBYASCARC PERCEPTIBLEC EEK,OOZI GITSWAYTHROU AWILDERNESSOFBESUPPOSED,I CANT,ORATL ASTDWARFISH.NO REESOFANYM NITUDEARETOBESOMEMISERA EFRAMEBUIL I GS,TENANTED, U INGSUMMER THEFUGITIVE;BUTTHEWHO ISLAND,WI H EXCEPTIONOFT W STERNPOI ,ANDALINEOFLLIAMLEGR .HEWASOF N ENTHUGUENOTF Y ANDHADON BEENWEALTHTIONCONSE ENTUPONH SD STERS,HELEFTNE LE NS,THEC OFHISFOREOUTHCARO A.THISISLA AVERYSINGULARO TCONSISTSO ITTLEELSEDSAQUART FAMILE. TI PARATEDFROMTHEMA AN BYASCAR YPERCEPTERESORT MARSH EN EVEGETATION,ASMIGH SU POSED, CANT,ORATREMITY, ORT OULTRIESTANDS,ANDWHEREARESOM MIS FRAMEBUIFEVER,MAYBE INDEED, TO;BUTT EISLAND,WITNYYEARSAGO,IC ACTED LLIAM AND.HEWASOFANNESHADREDUCEDHIM OWA IONC NSEQUENTUPONHISDSIDENCEATSULLIVA \\'S HC ROLINA.THISISLANOUTTHR LESLON . THATN OINTE U RTEROF E.ITISTHROU ERNE DSANDSLI ,AFAVOR TOFT HEN.T", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/2/fast-270.json b/tests/__snapshots__/qrcode-2/2/fast-270.json index d1b0dadd..7033abeb 100644 --- a/tests/__snapshots__/qrcode-2/2/fast-270.json +++ b/tests/__snapshots__/qrcode-2/2/fast-270.json @@ -5,7 +5,7 @@ "bytes": "f00163a", "bytesECI": "31fc589", "text": "LANDBYASCARC PERCEPTIBLEC EEK,OOZI GITSWAYTHROU AWILDERNESSOFBESUPPOSED,I CANT,ORATL ASTDWARFISH.NO REESOFANYM NITUDEARETOBESOMEMISERA EFRAMEBUIL I GS,TENANTED, U INGSUMMER THEFUGITIVE;BUTTHEWHO ISLAND,WI H EXCEPTIONOFT W STERNPOI ,ANDALINEOFLLIAMLEGR .HEWASOF N ENTHUGUENOTF Y ANDHADON BEENWEALTHTIONCONSE ENTUPONH SD STERS,HELEFTNE LE NS,THEC OFHISFOREOUTHCARO A.THISISLA AVERYSINGULARO TCONSISTSO ITTLEELSEDSAQUART FAMILE. TI PARATEDFROMTHEMA AN BYASCAR YPERCEPTERESORT MARSH EN EVEGETATION,ASMIGH SU POSED, CANT,ORATREMITY, ORT OULTRIESTANDS,ANDWHEREARESOM MIS FRAMEBUIFEVER,MAYBE INDEED, TO;BUTT EISLAND,WITNYYEARSAGO,IC ACTED LLIAM AND.HEWASOFANNESHADREDUCEDHIM OWA IONC NSEQUENTUPONHISDSIDENCEATSULLIVA \\'S HC ROLINA.THISISLANOUTTHR LESLON . THATN OINTE U RTEROF E.ITISTHROU ERNE DSANDSLI ,AFAVOR TOFT HEN.T", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/2/fast-90.json b/tests/__snapshots__/qrcode-2/2/fast-90.json index 51e6b97c..4f88f965 100644 --- a/tests/__snapshots__/qrcode-2/2/fast-90.json +++ b/tests/__snapshots__/qrcode-2/2/fast-90.json @@ -5,7 +5,7 @@ "bytes": "f00163a", "bytesECI": "31fc589", "text": "LANDBYASCARC PERCEPTIBLEC EEK,OOZI GITSWAYTHROU AWILDERNESSOFBESUPPOSED,I CANT,ORATL ASTDWARFISH.NO REESOFANYM NITUDEARETOBESOMEMISERA EFRAMEBUIL I GS,TENANTED, U INGSUMMER THEFUGITIVE;BUTTHEWHO ISLAND,WI H EXCEPTIONOFT W STERNPOI ,ANDALINEOFLLIAMLEGR .HEWASOF N ENTHUGUENOTF Y ANDHADON BEENWEALTHTIONCONSE ENTUPONH SD STERS,HELEFTNE LE NS,THEC OFHISFOREOUTHCARO A.THISISLA AVERYSINGULARO TCONSISTSO ITTLEELSEDSAQUART FAMILE. TI PARATEDFROMTHEMA AN BYASCAR YPERCEPTERESORT MARSH EN EVEGETATION,ASMIGH SU POSED, CANT,ORATREMITY, ORT OULTRIESTANDS,ANDWHEREARESOM MIS FRAMEBUIFEVER,MAYBE INDEED, TO;BUTT EISLAND,WITNYYEARSAGO,IC ACTED LLIAM AND.HEWASOFANNESHADREDUCEDHIM OWA IONC NSEQUENTUPONHISDSIDENCEATSULLIVA \\'S HC ROLINA.THISISLANOUTTHR LESLON . THATN OINTE U RTEROF E.ITISTHROU ERNE DSANDSLI ,AFAVOR TOFT HEN.T", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/2/pure-0.json b/tests/__snapshots__/qrcode-2/2/pure-0.json index 9798f2bc..84069c3f 100644 --- a/tests/__snapshots__/qrcode-2/2/pure-0.json +++ b/tests/__snapshots__/qrcode-2/2/pure-0.json @@ -5,7 +5,7 @@ "bytes": "f00163a", "bytesECI": "31fc589", "text": "LANDBYASCARC PERCEPTIBLEC EEK,OOZI GITSWAYTHROU AWILDERNESSOFBESUPPOSED,I CANT,ORATL ASTDWARFISH.NO REESOFANYM NITUDEARETOBESOMEMISERA EFRAMEBUIL I GS,TENANTED, U INGSUMMER THEFUGITIVE;BUTTHEWHO ISLAND,WI H EXCEPTIONOFT W STERNPOI ,ANDALINEOFLLIAMLEGR .HEWASOF N ENTHUGUENOTF Y ANDHADON BEENWEALTHTIONCONSE ENTUPONH SD STERS,HELEFTNE LE NS,THEC OFHISFOREOUTHCARO A.THISISLA AVERYSINGULARO TCONSISTSO ITTLEELSEDSAQUART FAMILE. TI PARATEDFROMTHEMA AN BYASCAR YPERCEPTERESORT MARSH EN EVEGETATION,ASMIGH SU POSED, CANT,ORATREMITY, ORT OULTRIESTANDS,ANDWHEREARESOM MIS FRAMEBUIFEVER,MAYBE INDEED, TO;BUTT EISLAND,WITNYYEARSAGO,IC ACTED LLIAM AND.HEWASOFANNESHADREDUCEDHIM OWA IONC NSEQUENTUPONHISDSIDENCEATSULLIVA \\'S HC ROLINA.THISISLANOUTTHR LESLON . THATN OINTE U RTEROF E.ITISTHROU ERNE DSANDSLI ,AFAVOR TOFT HEN.T", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/2/slow-0.json b/tests/__snapshots__/qrcode-2/2/slow-0.json index ff2626f3..4578b533 100644 --- a/tests/__snapshots__/qrcode-2/2/slow-0.json +++ b/tests/__snapshots__/qrcode-2/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f00163a", "bytesECI": "31fc589", "text": "LANDBYASCARC PERCEPTIBLEC EEK,OOZI GITSWAYTHROU AWILDERNESSOFBESUPPOSED,I CANT,ORATL ASTDWARFISH.NO REESOFANYM NITUDEARETOBESOMEMISERA EFRAMEBUIL I GS,TENANTED, U INGSUMMER THEFUGITIVE;BUTTHEWHO ISLAND,WI H EXCEPTIONOFT W STERNPOI ,ANDALINEOFLLIAMLEGR .HEWASOF N ENTHUGUENOTF Y ANDHADON BEENWEALTHTIONCONSE ENTUPONH SD STERS,HELEFTNE LE NS,THEC OFHISFOREOUTHCARO A.THISISLA AVERYSINGULARO TCONSISTSO ITTLEELSEDSAQUART FAMILE. TI PARATEDFROMTHEMA AN BYASCAR YPERCEPTERESORT MARSH EN EVEGETATION,ASMIGH SU POSED, CANT,ORATREMITY, ORT OULTRIESTANDS,ANDWHEREARESOM MIS FRAMEBUIFEVER,MAYBE INDEED, TO;BUTT EISLAND,WITNYYEARSAGO,IC ACTED LLIAM AND.HEWASOFANNESHADREDUCEDHIM OWA IONC NSEQUENTUPONHISDSIDENCEATSULLIVA \\'S HC ROLINA.THISISLANOUTTHR LESLON . THATN OINTE U RTEROF E.ITISTHROU ERNE DSANDSLI ,AFAVOR TOFT HEN.T", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/2/slow-180.json b/tests/__snapshots__/qrcode-2/2/slow-180.json index 17976dfb..b0109a28 100644 --- a/tests/__snapshots__/qrcode-2/2/slow-180.json +++ b/tests/__snapshots__/qrcode-2/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f00163a", "bytesECI": "31fc589", "text": "LANDBYASCARC PERCEPTIBLEC EEK,OOZI GITSWAYTHROU AWILDERNESSOFBESUPPOSED,I CANT,ORATL ASTDWARFISH.NO REESOFANYM NITUDEARETOBESOMEMISERA EFRAMEBUIL I GS,TENANTED, U INGSUMMER THEFUGITIVE;BUTTHEWHO ISLAND,WI H EXCEPTIONOFT W STERNPOI ,ANDALINEOFLLIAMLEGR .HEWASOF N ENTHUGUENOTF Y ANDHADON BEENWEALTHTIONCONSE ENTUPONH SD STERS,HELEFTNE LE NS,THEC OFHISFOREOUTHCARO A.THISISLA AVERYSINGULARO TCONSISTSO ITTLEELSEDSAQUART FAMILE. TI PARATEDFROMTHEMA AN BYASCAR YPERCEPTERESORT MARSH EN EVEGETATION,ASMIGH SU POSED, CANT,ORATREMITY, ORT OULTRIESTANDS,ANDWHEREARESOM MIS FRAMEBUIFEVER,MAYBE INDEED, TO;BUTT EISLAND,WITNYYEARSAGO,IC ACTED LLIAM AND.HEWASOFANNESHADREDUCEDHIM OWA IONC NSEQUENTUPONHISDSIDENCEATSULLIVA \\'S HC ROLINA.THISISLANOUTTHR LESLON . THATN OINTE U RTEROF E.ITISTHROU ERNE DSANDSLI ,AFAVOR TOFT HEN.T", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/2/slow-270.json b/tests/__snapshots__/qrcode-2/2/slow-270.json index d1b0dadd..7033abeb 100644 --- a/tests/__snapshots__/qrcode-2/2/slow-270.json +++ b/tests/__snapshots__/qrcode-2/2/slow-270.json @@ -5,7 +5,7 @@ "bytes": "f00163a", "bytesECI": "31fc589", "text": "LANDBYASCARC PERCEPTIBLEC EEK,OOZI GITSWAYTHROU AWILDERNESSOFBESUPPOSED,I CANT,ORATL ASTDWARFISH.NO REESOFANYM NITUDEARETOBESOMEMISERA EFRAMEBUIL I GS,TENANTED, U INGSUMMER THEFUGITIVE;BUTTHEWHO ISLAND,WI H EXCEPTIONOFT W STERNPOI ,ANDALINEOFLLIAMLEGR .HEWASOF N ENTHUGUENOTF Y ANDHADON BEENWEALTHTIONCONSE ENTUPONH SD STERS,HELEFTNE LE NS,THEC OFHISFOREOUTHCARO A.THISISLA AVERYSINGULARO TCONSISTSO ITTLEELSEDSAQUART FAMILE. TI PARATEDFROMTHEMA AN BYASCAR YPERCEPTERESORT MARSH EN EVEGETATION,ASMIGH SU POSED, CANT,ORATREMITY, ORT OULTRIESTANDS,ANDWHEREARESOM MIS FRAMEBUIFEVER,MAYBE INDEED, TO;BUTT EISLAND,WITNYYEARSAGO,IC ACTED LLIAM AND.HEWASOFANNESHADREDUCEDHIM OWA IONC NSEQUENTUPONHISDSIDENCEATSULLIVA \\'S HC ROLINA.THISISLANOUTTHR LESLON . THATN OINTE U RTEROF E.ITISTHROU ERNE DSANDSLI ,AFAVOR TOFT HEN.T", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/2/slow-90.json b/tests/__snapshots__/qrcode-2/2/slow-90.json index 51e6b97c..4f88f965 100644 --- a/tests/__snapshots__/qrcode-2/2/slow-90.json +++ b/tests/__snapshots__/qrcode-2/2/slow-90.json @@ -5,7 +5,7 @@ "bytes": "f00163a", "bytesECI": "31fc589", "text": "LANDBYASCARC PERCEPTIBLEC EEK,OOZI GITSWAYTHROU AWILDERNESSOFBESUPPOSED,I CANT,ORATL ASTDWARFISH.NO REESOFANYM NITUDEARETOBESOMEMISERA EFRAMEBUIL I GS,TENANTED, U INGSUMMER THEFUGITIVE;BUTTHEWHO ISLAND,WI H EXCEPTIONOFT W STERNPOI ,ANDALINEOFLLIAMLEGR .HEWASOF N ENTHUGUENOTF Y ANDHADON BEENWEALTHTIONCONSE ENTUPONH SD STERS,HELEFTNE LE NS,THEC OFHISFOREOUTHCARO A.THISISLA AVERYSINGULARO TCONSISTSO ITTLEELSEDSAQUART FAMILE. TI PARATEDFROMTHEMA AN BYASCAR YPERCEPTERESORT MARSH EN EVEGETATION,ASMIGH SU POSED, CANT,ORATREMITY, ORT OULTRIESTANDS,ANDWHEREARESOM MIS FRAMEBUIFEVER,MAYBE INDEED, TO;BUTT EISLAND,WITNYYEARSAGO,IC ACTED LLIAM AND.HEWASOFANNESHADREDUCEDHIM OWA IONC NSEQUENTUPONHISDSIDENCEATSULLIVA \\'S HC ROLINA.THISISLANOUTTHR LESLON . THATN OINTE U RTEROF E.ITISTHROU ERNE DSANDSLI ,AFAVOR TOFT HEN.T", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "26" + "version": "26", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/20/fast-0.json b/tests/__snapshots__/qrcode-2/20/fast-0.json index 95c874a0..96296829 100644 --- a/tests/__snapshots__/qrcode-2/20/fast-0.json +++ b/tests/__snapshots__/qrcode-2/20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8361a49", "bytesECI": "a331a77", "text": "*デザインQR*http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/20/fast-180.json b/tests/__snapshots__/qrcode-2/20/fast-180.json index 0a6fce33..8bfdaf46 100644 --- a/tests/__snapshots__/qrcode-2/20/fast-180.json +++ b/tests/__snapshots__/qrcode-2/20/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8361a49", "bytesECI": "a331a77", "text": "*デザインQR*http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/20/fast-270.json b/tests/__snapshots__/qrcode-2/20/fast-270.json index 2159c014..63993ce9 100644 --- a/tests/__snapshots__/qrcode-2/20/fast-270.json +++ b/tests/__snapshots__/qrcode-2/20/fast-270.json @@ -5,7 +5,7 @@ "bytes": "8361a49", "bytesECI": "a331a77", "text": "*デザインQR*http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/20/fast-90.json b/tests/__snapshots__/qrcode-2/20/fast-90.json index d952e63f..ea851d2d 100644 --- a/tests/__snapshots__/qrcode-2/20/fast-90.json +++ b/tests/__snapshots__/qrcode-2/20/fast-90.json @@ -5,7 +5,7 @@ "bytes": "8361a49", "bytesECI": "a331a77", "text": "*デザインQR*http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/20/pure-0.json b/tests/__snapshots__/qrcode-2/20/pure-0.json index f2cf7991..0a7d98b6 100644 --- a/tests/__snapshots__/qrcode-2/20/pure-0.json +++ b/tests/__snapshots__/qrcode-2/20/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8361a49", "bytesECI": "a331a77", "text": "*デザインQR*http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/20/slow-0.json b/tests/__snapshots__/qrcode-2/20/slow-0.json index 95c874a0..96296829 100644 --- a/tests/__snapshots__/qrcode-2/20/slow-0.json +++ b/tests/__snapshots__/qrcode-2/20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8361a49", "bytesECI": "a331a77", "text": "*デザインQR*http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/20/slow-180.json b/tests/__snapshots__/qrcode-2/20/slow-180.json index 0a6fce33..8bfdaf46 100644 --- a/tests/__snapshots__/qrcode-2/20/slow-180.json +++ b/tests/__snapshots__/qrcode-2/20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8361a49", "bytesECI": "a331a77", "text": "*デザインQR*http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/20/slow-270.json b/tests/__snapshots__/qrcode-2/20/slow-270.json index 2159c014..63993ce9 100644 --- a/tests/__snapshots__/qrcode-2/20/slow-270.json +++ b/tests/__snapshots__/qrcode-2/20/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8361a49", "bytesECI": "a331a77", "text": "*デザインQR*http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/20/slow-90.json b/tests/__snapshots__/qrcode-2/20/slow-90.json index d952e63f..ea851d2d 100644 --- a/tests/__snapshots__/qrcode-2/20/slow-90.json +++ b/tests/__snapshots__/qrcode-2/20/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8361a49", "bytesECI": "a331a77", "text": "*デザインQR*http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/21/fast-0.json b/tests/__snapshots__/qrcode-2/21/fast-0.json index c6426465..e37ea27e 100644 --- a/tests/__snapshots__/qrcode-2/21/fast-0.json +++ b/tests/__snapshots__/qrcode-2/21/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3aa43e9", "bytesECI": "f283af7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/21/fast-180.json b/tests/__snapshots__/qrcode-2/21/fast-180.json index 32bd51e8..24bc0a79 100644 --- a/tests/__snapshots__/qrcode-2/21/fast-180.json +++ b/tests/__snapshots__/qrcode-2/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3aa43e9", "bytesECI": "f283af7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/21/fast-270.json b/tests/__snapshots__/qrcode-2/21/fast-270.json index 4a61e7f4..e4935fb5 100644 --- a/tests/__snapshots__/qrcode-2/21/fast-270.json +++ b/tests/__snapshots__/qrcode-2/21/fast-270.json @@ -5,7 +5,7 @@ "bytes": "3aa43e9", "bytesECI": "f283af7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/21/fast-90.json b/tests/__snapshots__/qrcode-2/21/fast-90.json index c9d3e0db..d9dcc0a8 100644 --- a/tests/__snapshots__/qrcode-2/21/fast-90.json +++ b/tests/__snapshots__/qrcode-2/21/fast-90.json @@ -5,7 +5,7 @@ "bytes": "3aa43e9", "bytesECI": "f283af7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/21/pure-0.json b/tests/__snapshots__/qrcode-2/21/pure-0.json index 84a93a5a..8e5ce395 100644 --- a/tests/__snapshots__/qrcode-2/21/pure-0.json +++ b/tests/__snapshots__/qrcode-2/21/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3aa43e9", "bytesECI": "f283af7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/21/slow-0.json b/tests/__snapshots__/qrcode-2/21/slow-0.json index c6426465..e37ea27e 100644 --- a/tests/__snapshots__/qrcode-2/21/slow-0.json +++ b/tests/__snapshots__/qrcode-2/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3aa43e9", "bytesECI": "f283af7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/21/slow-180.json b/tests/__snapshots__/qrcode-2/21/slow-180.json index 32bd51e8..24bc0a79 100644 --- a/tests/__snapshots__/qrcode-2/21/slow-180.json +++ b/tests/__snapshots__/qrcode-2/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3aa43e9", "bytesECI": "f283af7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/21/slow-270.json b/tests/__snapshots__/qrcode-2/21/slow-270.json index 4a61e7f4..e4935fb5 100644 --- a/tests/__snapshots__/qrcode-2/21/slow-270.json +++ b/tests/__snapshots__/qrcode-2/21/slow-270.json @@ -5,7 +5,7 @@ "bytes": "3aa43e9", "bytesECI": "f283af7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/21/slow-90.json b/tests/__snapshots__/qrcode-2/21/slow-90.json index c9d3e0db..d9dcc0a8 100644 --- a/tests/__snapshots__/qrcode-2/21/slow-90.json +++ b/tests/__snapshots__/qrcode-2/21/slow-90.json @@ -5,7 +5,7 @@ "bytes": "3aa43e9", "bytesECI": "f283af7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/22/fast-0.json b/tests/__snapshots__/qrcode-2/22/fast-0.json index 8c2b2c9a..60d842a4 100644 --- a/tests/__snapshots__/qrcode-2/22/fast-0.json +++ b/tests/__snapshots__/qrcode-2/22/fast-0.json @@ -5,7 +5,7 @@ "bytes": "535f159", "bytesECI": "49ed58d", "text": "http://www.hotpepper.jp/mobile/cgi-bin/MBLC80100.cgi?SA=00&Z=AG&vos=hpp064&uid=NULLGWDOCOMO", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/22/fast-180.json b/tests/__snapshots__/qrcode-2/22/fast-180.json index aa725bd0..9d680995 100644 --- a/tests/__snapshots__/qrcode-2/22/fast-180.json +++ b/tests/__snapshots__/qrcode-2/22/fast-180.json @@ -5,7 +5,7 @@ "bytes": "535f159", "bytesECI": "49ed58d", "text": "http://www.hotpepper.jp/mobile/cgi-bin/MBLC80100.cgi?SA=00&Z=AG&vos=hpp064&uid=NULLGWDOCOMO", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/22/fast-270.json b/tests/__snapshots__/qrcode-2/22/fast-270.json index 282c5ced..7ef89ae6 100644 --- a/tests/__snapshots__/qrcode-2/22/fast-270.json +++ b/tests/__snapshots__/qrcode-2/22/fast-270.json @@ -5,7 +5,7 @@ "bytes": "535f159", "bytesECI": "49ed58d", "text": "http://www.hotpepper.jp/mobile/cgi-bin/MBLC80100.cgi?SA=00&Z=AG&vos=hpp064&uid=NULLGWDOCOMO", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/22/fast-90.json b/tests/__snapshots__/qrcode-2/22/fast-90.json index 9ced769e..d0940f3a 100644 --- a/tests/__snapshots__/qrcode-2/22/fast-90.json +++ b/tests/__snapshots__/qrcode-2/22/fast-90.json @@ -5,7 +5,7 @@ "bytes": "535f159", "bytesECI": "49ed58d", "text": "http://www.hotpepper.jp/mobile/cgi-bin/MBLC80100.cgi?SA=00&Z=AG&vos=hpp064&uid=NULLGWDOCOMO", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/22/pure-0.json b/tests/__snapshots__/qrcode-2/22/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/22/pure-0.json +++ b/tests/__snapshots__/qrcode-2/22/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/22/slow-0.json b/tests/__snapshots__/qrcode-2/22/slow-0.json index 8c2b2c9a..60d842a4 100644 --- a/tests/__snapshots__/qrcode-2/22/slow-0.json +++ b/tests/__snapshots__/qrcode-2/22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "535f159", "bytesECI": "49ed58d", "text": "http://www.hotpepper.jp/mobile/cgi-bin/MBLC80100.cgi?SA=00&Z=AG&vos=hpp064&uid=NULLGWDOCOMO", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/22/slow-180.json b/tests/__snapshots__/qrcode-2/22/slow-180.json index aa725bd0..9d680995 100644 --- a/tests/__snapshots__/qrcode-2/22/slow-180.json +++ b/tests/__snapshots__/qrcode-2/22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "535f159", "bytesECI": "49ed58d", "text": "http://www.hotpepper.jp/mobile/cgi-bin/MBLC80100.cgi?SA=00&Z=AG&vos=hpp064&uid=NULLGWDOCOMO", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/22/slow-270.json b/tests/__snapshots__/qrcode-2/22/slow-270.json index 282c5ced..7ef89ae6 100644 --- a/tests/__snapshots__/qrcode-2/22/slow-270.json +++ b/tests/__snapshots__/qrcode-2/22/slow-270.json @@ -5,7 +5,7 @@ "bytes": "535f159", "bytesECI": "49ed58d", "text": "http://www.hotpepper.jp/mobile/cgi-bin/MBLC80100.cgi?SA=00&Z=AG&vos=hpp064&uid=NULLGWDOCOMO", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/22/slow-90.json b/tests/__snapshots__/qrcode-2/22/slow-90.json index 9ced769e..d0940f3a 100644 --- a/tests/__snapshots__/qrcode-2/22/slow-90.json +++ b/tests/__snapshots__/qrcode-2/22/slow-90.json @@ -5,7 +5,7 @@ "bytes": "535f159", "bytesECI": "49ed58d", "text": "http://www.hotpepper.jp/mobile/cgi-bin/MBLC80100.cgi?SA=00&Z=AG&vos=hpp064&uid=NULLGWDOCOMO", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "9" + "version": "9", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/23/fast-0.json b/tests/__snapshots__/qrcode-2/23/fast-0.json index 7afe4a1d..cd2857c1 100644 --- a/tests/__snapshots__/qrcode-2/23/fast-0.json +++ b/tests/__snapshots__/qrcode-2/23/fast-0.json @@ -5,7 +5,7 @@ "bytes": "aaf472b", "bytesECI": "78d107c", "text": "http://aniful.jp/pr/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/23/fast-180.json b/tests/__snapshots__/qrcode-2/23/fast-180.json index 8ffd1e5c..b0eaee7e 100644 --- a/tests/__snapshots__/qrcode-2/23/fast-180.json +++ b/tests/__snapshots__/qrcode-2/23/fast-180.json @@ -5,7 +5,7 @@ "bytes": "aaf472b", "bytesECI": "78d107c", "text": "http://aniful.jp/pr/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/23/fast-270.json b/tests/__snapshots__/qrcode-2/23/fast-270.json index 78be93cc..68ca6492 100644 --- a/tests/__snapshots__/qrcode-2/23/fast-270.json +++ b/tests/__snapshots__/qrcode-2/23/fast-270.json @@ -5,7 +5,7 @@ "bytes": "aaf472b", "bytesECI": "78d107c", "text": "http://aniful.jp/pr/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/23/fast-90.json b/tests/__snapshots__/qrcode-2/23/fast-90.json index 2b68c79c..c3daafb4 100644 --- a/tests/__snapshots__/qrcode-2/23/fast-90.json +++ b/tests/__snapshots__/qrcode-2/23/fast-90.json @@ -5,7 +5,7 @@ "bytes": "aaf472b", "bytesECI": "78d107c", "text": "http://aniful.jp/pr/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/23/pure-0.json b/tests/__snapshots__/qrcode-2/23/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/23/pure-0.json +++ b/tests/__snapshots__/qrcode-2/23/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/23/slow-0.json b/tests/__snapshots__/qrcode-2/23/slow-0.json index 7afe4a1d..cd2857c1 100644 --- a/tests/__snapshots__/qrcode-2/23/slow-0.json +++ b/tests/__snapshots__/qrcode-2/23/slow-0.json @@ -5,7 +5,7 @@ "bytes": "aaf472b", "bytesECI": "78d107c", "text": "http://aniful.jp/pr/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/23/slow-180.json b/tests/__snapshots__/qrcode-2/23/slow-180.json index 8ffd1e5c..b0eaee7e 100644 --- a/tests/__snapshots__/qrcode-2/23/slow-180.json +++ b/tests/__snapshots__/qrcode-2/23/slow-180.json @@ -5,7 +5,7 @@ "bytes": "aaf472b", "bytesECI": "78d107c", "text": "http://aniful.jp/pr/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/23/slow-270.json b/tests/__snapshots__/qrcode-2/23/slow-270.json index 78be93cc..68ca6492 100644 --- a/tests/__snapshots__/qrcode-2/23/slow-270.json +++ b/tests/__snapshots__/qrcode-2/23/slow-270.json @@ -5,7 +5,7 @@ "bytes": "aaf472b", "bytesECI": "78d107c", "text": "http://aniful.jp/pr/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/23/slow-90.json b/tests/__snapshots__/qrcode-2/23/slow-90.json index 2b68c79c..c3daafb4 100644 --- a/tests/__snapshots__/qrcode-2/23/slow-90.json +++ b/tests/__snapshots__/qrcode-2/23/slow-90.json @@ -5,7 +5,7 @@ "bytes": "aaf472b", "bytesECI": "78d107c", "text": "http://aniful.jp/pr/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/24/fast-0.json b/tests/__snapshots__/qrcode-2/24/fast-0.json index 6a808759..f45a1751 100644 --- a/tests/__snapshots__/qrcode-2/24/fast-0.json +++ b/tests/__snapshots__/qrcode-2/24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ba4355e", "bytesECI": "4e2ad2c", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/24/fast-180.json b/tests/__snapshots__/qrcode-2/24/fast-180.json index 48af8037..7100ada2 100644 --- a/tests/__snapshots__/qrcode-2/24/fast-180.json +++ b/tests/__snapshots__/qrcode-2/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ba4355e", "bytesECI": "4e2ad2c", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/24/fast-270.json b/tests/__snapshots__/qrcode-2/24/fast-270.json index c7775c45..5260fe2b 100644 --- a/tests/__snapshots__/qrcode-2/24/fast-270.json +++ b/tests/__snapshots__/qrcode-2/24/fast-270.json @@ -5,7 +5,7 @@ "bytes": "ba4355e", "bytesECI": "4e2ad2c", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/24/fast-90.json b/tests/__snapshots__/qrcode-2/24/fast-90.json index effa97ca..42317c05 100644 --- a/tests/__snapshots__/qrcode-2/24/fast-90.json +++ b/tests/__snapshots__/qrcode-2/24/fast-90.json @@ -5,7 +5,7 @@ "bytes": "ba4355e", "bytesECI": "4e2ad2c", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/24/pure-0.json b/tests/__snapshots__/qrcode-2/24/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/24/pure-0.json +++ b/tests/__snapshots__/qrcode-2/24/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/24/slow-0.json b/tests/__snapshots__/qrcode-2/24/slow-0.json index 6a808759..f45a1751 100644 --- a/tests/__snapshots__/qrcode-2/24/slow-0.json +++ b/tests/__snapshots__/qrcode-2/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ba4355e", "bytesECI": "4e2ad2c", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/24/slow-180.json b/tests/__snapshots__/qrcode-2/24/slow-180.json index 48af8037..7100ada2 100644 --- a/tests/__snapshots__/qrcode-2/24/slow-180.json +++ b/tests/__snapshots__/qrcode-2/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ba4355e", "bytesECI": "4e2ad2c", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/24/slow-270.json b/tests/__snapshots__/qrcode-2/24/slow-270.json index c7775c45..5260fe2b 100644 --- a/tests/__snapshots__/qrcode-2/24/slow-270.json +++ b/tests/__snapshots__/qrcode-2/24/slow-270.json @@ -5,7 +5,7 @@ "bytes": "ba4355e", "bytesECI": "4e2ad2c", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/24/slow-90.json b/tests/__snapshots__/qrcode-2/24/slow-90.json index effa97ca..42317c05 100644 --- a/tests/__snapshots__/qrcode-2/24/slow-90.json +++ b/tests/__snapshots__/qrcode-2/24/slow-90.json @@ -5,7 +5,7 @@ "bytes": "ba4355e", "bytesECI": "4e2ad2c", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/25/fast-0.json b/tests/__snapshots__/qrcode-2/25/fast-0.json index a147b886..19d82922 100644 --- a/tests/__snapshots__/qrcode-2/25/fast-0.json +++ b/tests/__snapshots__/qrcode-2/25/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6664752", "bytesECI": "566f517", "text": "MEBKM:TITLE:;URL:http://d.kaywa.com/2020400102;;", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/25/fast-180.json b/tests/__snapshots__/qrcode-2/25/fast-180.json index ec9103ae..c1bfee9d 100644 --- a/tests/__snapshots__/qrcode-2/25/fast-180.json +++ b/tests/__snapshots__/qrcode-2/25/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6664752", "bytesECI": "566f517", "text": "MEBKM:TITLE:;URL:http://d.kaywa.com/2020400102;;", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/25/fast-270.json b/tests/__snapshots__/qrcode-2/25/fast-270.json index 13dbd880..9f1e1cad 100644 --- a/tests/__snapshots__/qrcode-2/25/fast-270.json +++ b/tests/__snapshots__/qrcode-2/25/fast-270.json @@ -5,7 +5,7 @@ "bytes": "6664752", "bytesECI": "566f517", "text": "MEBKM:TITLE:;URL:http://d.kaywa.com/2020400102;;", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/25/fast-90.json b/tests/__snapshots__/qrcode-2/25/fast-90.json index 7313d0e9..bec0db6e 100644 --- a/tests/__snapshots__/qrcode-2/25/fast-90.json +++ b/tests/__snapshots__/qrcode-2/25/fast-90.json @@ -5,7 +5,7 @@ "bytes": "6664752", "bytesECI": "566f517", "text": "MEBKM:TITLE:;URL:http://d.kaywa.com/2020400102;;", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/25/pure-0.json b/tests/__snapshots__/qrcode-2/25/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/25/pure-0.json +++ b/tests/__snapshots__/qrcode-2/25/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/25/slow-0.json b/tests/__snapshots__/qrcode-2/25/slow-0.json index a147b886..19d82922 100644 --- a/tests/__snapshots__/qrcode-2/25/slow-0.json +++ b/tests/__snapshots__/qrcode-2/25/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6664752", "bytesECI": "566f517", "text": "MEBKM:TITLE:;URL:http://d.kaywa.com/2020400102;;", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/25/slow-180.json b/tests/__snapshots__/qrcode-2/25/slow-180.json index ec9103ae..c1bfee9d 100644 --- a/tests/__snapshots__/qrcode-2/25/slow-180.json +++ b/tests/__snapshots__/qrcode-2/25/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6664752", "bytesECI": "566f517", "text": "MEBKM:TITLE:;URL:http://d.kaywa.com/2020400102;;", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/25/slow-270.json b/tests/__snapshots__/qrcode-2/25/slow-270.json index 13dbd880..9f1e1cad 100644 --- a/tests/__snapshots__/qrcode-2/25/slow-270.json +++ b/tests/__snapshots__/qrcode-2/25/slow-270.json @@ -5,7 +5,7 @@ "bytes": "6664752", "bytesECI": "566f517", "text": "MEBKM:TITLE:;URL:http://d.kaywa.com/2020400102;;", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/25/slow-90.json b/tests/__snapshots__/qrcode-2/25/slow-90.json index 7313d0e9..bec0db6e 100644 --- a/tests/__snapshots__/qrcode-2/25/slow-90.json +++ b/tests/__snapshots__/qrcode-2/25/slow-90.json @@ -5,7 +5,7 @@ "bytes": "6664752", "bytesECI": "566f517", "text": "MEBKM:TITLE:;URL:http://d.kaywa.com/2020400102;;", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "8" + "version": "8", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/26/fast-0.json b/tests/__snapshots__/qrcode-2/26/fast-0.json index 190ebe26..ca31981c 100644 --- a/tests/__snapshots__/qrcode-2/26/fast-0.json +++ b/tests/__snapshots__/qrcode-2/26/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a57e971", "bytesECI": "1c3ebda", "text": "<デザインQR> イラスト入りカラーQRコードhttp://d-qr.net/ex/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/26/fast-180.json b/tests/__snapshots__/qrcode-2/26/fast-180.json index f65fdda2..001e551d 100644 --- a/tests/__snapshots__/qrcode-2/26/fast-180.json +++ b/tests/__snapshots__/qrcode-2/26/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a57e971", "bytesECI": "1c3ebda", "text": "<デザインQR> イラスト入りカラーQRコードhttp://d-qr.net/ex/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/26/fast-270.json b/tests/__snapshots__/qrcode-2/26/fast-270.json index 7b4d3289..8671d0bc 100644 --- a/tests/__snapshots__/qrcode-2/26/fast-270.json +++ b/tests/__snapshots__/qrcode-2/26/fast-270.json @@ -5,7 +5,7 @@ "bytes": "a57e971", "bytesECI": "1c3ebda", "text": "<デザインQR> イラスト入りカラーQRコードhttp://d-qr.net/ex/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/26/fast-90.json b/tests/__snapshots__/qrcode-2/26/fast-90.json index 788b398a..c87a5c0e 100644 --- a/tests/__snapshots__/qrcode-2/26/fast-90.json +++ b/tests/__snapshots__/qrcode-2/26/fast-90.json @@ -5,7 +5,7 @@ "bytes": "a57e971", "bytesECI": "1c3ebda", "text": "<デザインQR> イラスト入りカラーQRコードhttp://d-qr.net/ex/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/26/pure-0.json b/tests/__snapshots__/qrcode-2/26/pure-0.json index e6e3e6ab..6852c381 100644 --- a/tests/__snapshots__/qrcode-2/26/pure-0.json +++ b/tests/__snapshots__/qrcode-2/26/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a57e971", "bytesECI": "1c3ebda", "text": "<デザインQR> イラスト入りカラーQRコードhttp://d-qr.net/ex/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/26/slow-0.json b/tests/__snapshots__/qrcode-2/26/slow-0.json index 190ebe26..ca31981c 100644 --- a/tests/__snapshots__/qrcode-2/26/slow-0.json +++ b/tests/__snapshots__/qrcode-2/26/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a57e971", "bytesECI": "1c3ebda", "text": "<デザインQR> イラスト入りカラーQRコードhttp://d-qr.net/ex/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/26/slow-180.json b/tests/__snapshots__/qrcode-2/26/slow-180.json index f65fdda2..001e551d 100644 --- a/tests/__snapshots__/qrcode-2/26/slow-180.json +++ b/tests/__snapshots__/qrcode-2/26/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a57e971", "bytesECI": "1c3ebda", "text": "<デザインQR> イラスト入りカラーQRコードhttp://d-qr.net/ex/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/26/slow-270.json b/tests/__snapshots__/qrcode-2/26/slow-270.json index 7b4d3289..8671d0bc 100644 --- a/tests/__snapshots__/qrcode-2/26/slow-270.json +++ b/tests/__snapshots__/qrcode-2/26/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a57e971", "bytesECI": "1c3ebda", "text": "<デザインQR> イラスト入りカラーQRコードhttp://d-qr.net/ex/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/26/slow-90.json b/tests/__snapshots__/qrcode-2/26/slow-90.json index 788b398a..c87a5c0e 100644 --- a/tests/__snapshots__/qrcode-2/26/slow-90.json +++ b/tests/__snapshots__/qrcode-2/26/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a57e971", "bytesECI": "1c3ebda", "text": "<デザインQR> イラスト入りカラーQRコードhttp://d-qr.net/ex/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/27/fast-0.json b/tests/__snapshots__/qrcode-2/27/fast-0.json index f0f5edb8..68d0d69a 100644 --- a/tests/__snapshots__/qrcode-2/27/fast-0.json +++ b/tests/__snapshots__/qrcode-2/27/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a62c278", "bytesECI": "7d14bb7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/27/fast-180.json b/tests/__snapshots__/qrcode-2/27/fast-180.json index 06df6cf3..70ae1a84 100644 --- a/tests/__snapshots__/qrcode-2/27/fast-180.json +++ b/tests/__snapshots__/qrcode-2/27/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a62c278", "bytesECI": "7d14bb7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/27/fast-270.json b/tests/__snapshots__/qrcode-2/27/fast-270.json index b4b3aa28..1ed93698 100644 --- a/tests/__snapshots__/qrcode-2/27/fast-270.json +++ b/tests/__snapshots__/qrcode-2/27/fast-270.json @@ -5,7 +5,7 @@ "bytes": "a62c278", "bytesECI": "7d14bb7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/27/fast-90.json b/tests/__snapshots__/qrcode-2/27/fast-90.json index c6492b27..a0c38060 100644 --- a/tests/__snapshots__/qrcode-2/27/fast-90.json +++ b/tests/__snapshots__/qrcode-2/27/fast-90.json @@ -5,7 +5,7 @@ "bytes": "a62c278", "bytesECI": "7d14bb7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/27/pure-0.json b/tests/__snapshots__/qrcode-2/27/pure-0.json index fa21595e..108a9791 100644 --- a/tests/__snapshots__/qrcode-2/27/pure-0.json +++ b/tests/__snapshots__/qrcode-2/27/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a62c278", "bytesECI": "7d14bb7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/27/slow-0.json b/tests/__snapshots__/qrcode-2/27/slow-0.json index f0f5edb8..68d0d69a 100644 --- a/tests/__snapshots__/qrcode-2/27/slow-0.json +++ b/tests/__snapshots__/qrcode-2/27/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a62c278", "bytesECI": "7d14bb7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/27/slow-180.json b/tests/__snapshots__/qrcode-2/27/slow-180.json index 06df6cf3..70ae1a84 100644 --- a/tests/__snapshots__/qrcode-2/27/slow-180.json +++ b/tests/__snapshots__/qrcode-2/27/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a62c278", "bytesECI": "7d14bb7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/27/slow-270.json b/tests/__snapshots__/qrcode-2/27/slow-270.json index b4b3aa28..1ed93698 100644 --- a/tests/__snapshots__/qrcode-2/27/slow-270.json +++ b/tests/__snapshots__/qrcode-2/27/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a62c278", "bytesECI": "7d14bb7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/27/slow-90.json b/tests/__snapshots__/qrcode-2/27/slow-90.json index c6492b27..a0c38060 100644 --- a/tests/__snapshots__/qrcode-2/27/slow-90.json +++ b/tests/__snapshots__/qrcode-2/27/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a62c278", "bytesECI": "7d14bb7", "text": "*デザインQR* http://d-qr.net/ex/ ", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "5" + "version": "5", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-2/28/pure-0.json b/tests/__snapshots__/qrcode-2/28/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/28/pure-0.json +++ b/tests/__snapshots__/qrcode-2/28/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/29/fast-0.json b/tests/__snapshots__/qrcode-2/29/fast-0.json index 228b1680..399f9ea5 100644 --- a/tests/__snapshots__/qrcode-2/29/fast-0.json +++ b/tests/__snapshots__/qrcode-2/29/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8e7bb60", "bytesECI": "c694d75", "text": "http://live.fdgm.jp/u/event/hype/hype_top.html MEBKM:TITLE:hypeモバイル;URL:http\\://live.fdgm.jp/u/event/hype/hype_top.html;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/29/fast-180.json b/tests/__snapshots__/qrcode-2/29/fast-180.json index cb2caf3b..79bf62b2 100644 --- a/tests/__snapshots__/qrcode-2/29/fast-180.json +++ b/tests/__snapshots__/qrcode-2/29/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8e7bb60", "bytesECI": "c694d75", "text": "http://live.fdgm.jp/u/event/hype/hype_top.html MEBKM:TITLE:hypeモバイル;URL:http\\://live.fdgm.jp/u/event/hype/hype_top.html;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/29/fast-270.json b/tests/__snapshots__/qrcode-2/29/fast-270.json index a8903430..e01e47be 100644 --- a/tests/__snapshots__/qrcode-2/29/fast-270.json +++ b/tests/__snapshots__/qrcode-2/29/fast-270.json @@ -5,7 +5,7 @@ "bytes": "8e7bb60", "bytesECI": "c694d75", "text": "http://live.fdgm.jp/u/event/hype/hype_top.html MEBKM:TITLE:hypeモバイル;URL:http\\://live.fdgm.jp/u/event/hype/hype_top.html;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/29/fast-90.json b/tests/__snapshots__/qrcode-2/29/fast-90.json index fefcae19..4fd9866b 100644 --- a/tests/__snapshots__/qrcode-2/29/fast-90.json +++ b/tests/__snapshots__/qrcode-2/29/fast-90.json @@ -5,7 +5,7 @@ "bytes": "8e7bb60", "bytesECI": "c694d75", "text": "http://live.fdgm.jp/u/event/hype/hype_top.html MEBKM:TITLE:hypeモバイル;URL:http\\://live.fdgm.jp/u/event/hype/hype_top.html;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/29/pure-0.json b/tests/__snapshots__/qrcode-2/29/pure-0.json index 5d38396b..e828ae48 100644 --- a/tests/__snapshots__/qrcode-2/29/pure-0.json +++ b/tests/__snapshots__/qrcode-2/29/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8e7bb60", "bytesECI": "c694d75", "text": "http://live.fdgm.jp/u/event/hype/hype_top.html MEBKM:TITLE:hypeモバイル;URL:http\\://live.fdgm.jp/u/event/hype/hype_top.html;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/29/slow-0.json b/tests/__snapshots__/qrcode-2/29/slow-0.json index 228b1680..399f9ea5 100644 --- a/tests/__snapshots__/qrcode-2/29/slow-0.json +++ b/tests/__snapshots__/qrcode-2/29/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8e7bb60", "bytesECI": "c694d75", "text": "http://live.fdgm.jp/u/event/hype/hype_top.html MEBKM:TITLE:hypeモバイル;URL:http\\://live.fdgm.jp/u/event/hype/hype_top.html;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/29/slow-180.json b/tests/__snapshots__/qrcode-2/29/slow-180.json index cb2caf3b..79bf62b2 100644 --- a/tests/__snapshots__/qrcode-2/29/slow-180.json +++ b/tests/__snapshots__/qrcode-2/29/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8e7bb60", "bytesECI": "c694d75", "text": "http://live.fdgm.jp/u/event/hype/hype_top.html MEBKM:TITLE:hypeモバイル;URL:http\\://live.fdgm.jp/u/event/hype/hype_top.html;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/29/slow-270.json b/tests/__snapshots__/qrcode-2/29/slow-270.json index a8903430..e01e47be 100644 --- a/tests/__snapshots__/qrcode-2/29/slow-270.json +++ b/tests/__snapshots__/qrcode-2/29/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8e7bb60", "bytesECI": "c694d75", "text": "http://live.fdgm.jp/u/event/hype/hype_top.html MEBKM:TITLE:hypeモバイル;URL:http\\://live.fdgm.jp/u/event/hype/hype_top.html;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/29/slow-90.json b/tests/__snapshots__/qrcode-2/29/slow-90.json index fefcae19..4fd9866b 100644 --- a/tests/__snapshots__/qrcode-2/29/slow-90.json +++ b/tests/__snapshots__/qrcode-2/29/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8e7bb60", "bytesECI": "c694d75", "text": "http://live.fdgm.jp/u/event/hype/hype_top.html MEBKM:TITLE:hypeモバイル;URL:http\\://live.fdgm.jp/u/event/hype/hype_top.html;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30/fast-0.json b/tests/__snapshots__/qrcode-2/30/fast-0.json index 26d01917..8e5a406d 100644 --- a/tests/__snapshots__/qrcode-2/30/fast-0.json +++ b/tests/__snapshots__/qrcode-2/30/fast-0.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30/fast-180.json b/tests/__snapshots__/qrcode-2/30/fast-180.json index f296c9b6..87683b06 100644 --- a/tests/__snapshots__/qrcode-2/30/fast-180.json +++ b/tests/__snapshots__/qrcode-2/30/fast-180.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30/fast-270.json b/tests/__snapshots__/qrcode-2/30/fast-270.json index 898d5beb..baeabb0c 100644 --- a/tests/__snapshots__/qrcode-2/30/fast-270.json +++ b/tests/__snapshots__/qrcode-2/30/fast-270.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30/fast-90.json b/tests/__snapshots__/qrcode-2/30/fast-90.json index 4d90b5dc..3606d65b 100644 --- a/tests/__snapshots__/qrcode-2/30/fast-90.json +++ b/tests/__snapshots__/qrcode-2/30/fast-90.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30/pure-0.json b/tests/__snapshots__/qrcode-2/30/pure-0.json index b59bbc20..a6e5262d 100644 --- a/tests/__snapshots__/qrcode-2/30/pure-0.json +++ b/tests/__snapshots__/qrcode-2/30/pure-0.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30/slow-0.json b/tests/__snapshots__/qrcode-2/30/slow-0.json index 26d01917..8e5a406d 100644 --- a/tests/__snapshots__/qrcode-2/30/slow-0.json +++ b/tests/__snapshots__/qrcode-2/30/slow-0.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30/slow-180.json b/tests/__snapshots__/qrcode-2/30/slow-180.json index f296c9b6..87683b06 100644 --- a/tests/__snapshots__/qrcode-2/30/slow-180.json +++ b/tests/__snapshots__/qrcode-2/30/slow-180.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30/slow-270.json b/tests/__snapshots__/qrcode-2/30/slow-270.json index 898d5beb..baeabb0c 100644 --- a/tests/__snapshots__/qrcode-2/30/slow-270.json +++ b/tests/__snapshots__/qrcode-2/30/slow-270.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30/slow-90.json b/tests/__snapshots__/qrcode-2/30/slow-90.json index 4d90b5dc..3606d65b 100644 --- a/tests/__snapshots__/qrcode-2/30/slow-90.json +++ b/tests/__snapshots__/qrcode-2/30/slow-90.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30a/fast-0.json b/tests/__snapshots__/qrcode-2/30a/fast-0.json index 63c4de14..7e681eca 100644 --- a/tests/__snapshots__/qrcode-2/30a/fast-0.json +++ b/tests/__snapshots__/qrcode-2/30a/fast-0.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30a/fast-180.json b/tests/__snapshots__/qrcode-2/30a/fast-180.json index 7e63d620..f23c0699 100644 --- a/tests/__snapshots__/qrcode-2/30a/fast-180.json +++ b/tests/__snapshots__/qrcode-2/30a/fast-180.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30a/fast-270.json b/tests/__snapshots__/qrcode-2/30a/fast-270.json index 2812f8ae..80399f9e 100644 --- a/tests/__snapshots__/qrcode-2/30a/fast-270.json +++ b/tests/__snapshots__/qrcode-2/30a/fast-270.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30a/fast-90.json b/tests/__snapshots__/qrcode-2/30a/fast-90.json index 330ddff3..e9c70940 100644 --- a/tests/__snapshots__/qrcode-2/30a/fast-90.json +++ b/tests/__snapshots__/qrcode-2/30a/fast-90.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30a/pure-0.json b/tests/__snapshots__/qrcode-2/30a/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/30a/pure-0.json +++ b/tests/__snapshots__/qrcode-2/30a/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/30a/slow-0.json b/tests/__snapshots__/qrcode-2/30a/slow-0.json index 63c4de14..7e681eca 100644 --- a/tests/__snapshots__/qrcode-2/30a/slow-0.json +++ b/tests/__snapshots__/qrcode-2/30a/slow-0.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30a/slow-180.json b/tests/__snapshots__/qrcode-2/30a/slow-180.json index 7e63d620..f23c0699 100644 --- a/tests/__snapshots__/qrcode-2/30a/slow-180.json +++ b/tests/__snapshots__/qrcode-2/30a/slow-180.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30a/slow-270.json b/tests/__snapshots__/qrcode-2/30a/slow-270.json index 2812f8ae..80399f9e 100644 --- a/tests/__snapshots__/qrcode-2/30a/slow-270.json +++ b/tests/__snapshots__/qrcode-2/30a/slow-270.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/30a/slow-90.json b/tests/__snapshots__/qrcode-2/30a/slow-90.json index 330ddff3..e9c70940 100644 --- a/tests/__snapshots__/qrcode-2/30a/slow-90.json +++ b/tests/__snapshots__/qrcode-2/30a/slow-90.json @@ -5,7 +5,7 @@ "bytes": "49cc0cc", "bytesECI": "f9eb980", "text": "MECARD:N:測試;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/31/fast-0.json b/tests/__snapshots__/qrcode-2/31/fast-0.json index 8927c097..bec2d717 100644 --- a/tests/__snapshots__/qrcode-2/31/fast-0.json +++ b/tests/__snapshots__/qrcode-2/31/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b06bb6b", "bytesECI": "1f97010", "text": "今度のバージョンでは文章の暗号化ができます。", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/31/fast-180.json b/tests/__snapshots__/qrcode-2/31/fast-180.json index b095705e..87cc729e 100644 --- a/tests/__snapshots__/qrcode-2/31/fast-180.json +++ b/tests/__snapshots__/qrcode-2/31/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b06bb6b", "bytesECI": "1f97010", "text": "今度のバージョンでは文章の暗号化ができます。", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/31/fast-270.json b/tests/__snapshots__/qrcode-2/31/fast-270.json index 74a27fb0..bf2c14c4 100644 --- a/tests/__snapshots__/qrcode-2/31/fast-270.json +++ b/tests/__snapshots__/qrcode-2/31/fast-270.json @@ -5,7 +5,7 @@ "bytes": "b06bb6b", "bytesECI": "1f97010", "text": "今度のバージョンでは文章の暗号化ができます。", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/31/fast-90.json b/tests/__snapshots__/qrcode-2/31/fast-90.json index e42db4e6..739e5158 100644 --- a/tests/__snapshots__/qrcode-2/31/fast-90.json +++ b/tests/__snapshots__/qrcode-2/31/fast-90.json @@ -5,7 +5,7 @@ "bytes": "b06bb6b", "bytesECI": "1f97010", "text": "今度のバージョンでは文章の暗号化ができます。", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/31/pure-0.json b/tests/__snapshots__/qrcode-2/31/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/31/pure-0.json +++ b/tests/__snapshots__/qrcode-2/31/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/31/slow-0.json b/tests/__snapshots__/qrcode-2/31/slow-0.json index 8927c097..bec2d717 100644 --- a/tests/__snapshots__/qrcode-2/31/slow-0.json +++ b/tests/__snapshots__/qrcode-2/31/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b06bb6b", "bytesECI": "1f97010", "text": "今度のバージョンでは文章の暗号化ができます。", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/31/slow-180.json b/tests/__snapshots__/qrcode-2/31/slow-180.json index b095705e..87cc729e 100644 --- a/tests/__snapshots__/qrcode-2/31/slow-180.json +++ b/tests/__snapshots__/qrcode-2/31/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b06bb6b", "bytesECI": "1f97010", "text": "今度のバージョンでは文章の暗号化ができます。", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/31/slow-270.json b/tests/__snapshots__/qrcode-2/31/slow-270.json index 74a27fb0..bf2c14c4 100644 --- a/tests/__snapshots__/qrcode-2/31/slow-270.json +++ b/tests/__snapshots__/qrcode-2/31/slow-270.json @@ -5,7 +5,7 @@ "bytes": "b06bb6b", "bytesECI": "1f97010", "text": "今度のバージョンでは文章の暗号化ができます。", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/31/slow-90.json b/tests/__snapshots__/qrcode-2/31/slow-90.json index e42db4e6..739e5158 100644 --- a/tests/__snapshots__/qrcode-2/31/slow-90.json +++ b/tests/__snapshots__/qrcode-2/31/slow-90.json @@ -5,7 +5,7 @@ "bytes": "b06bb6b", "bytesECI": "1f97010", "text": "今度のバージョンでは文章の暗号化ができます。", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/32/fast-0.json b/tests/__snapshots__/qrcode-2/32/fast-0.json index d7dc2170..1f1f5dad 100644 --- a/tests/__snapshots__/qrcode-2/32/fast-0.json +++ b/tests/__snapshots__/qrcode-2/32/fast-0.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/32/fast-180.json b/tests/__snapshots__/qrcode-2/32/fast-180.json index 73086d14..ab6f3afa 100644 --- a/tests/__snapshots__/qrcode-2/32/fast-180.json +++ b/tests/__snapshots__/qrcode-2/32/fast-180.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/32/fast-270.json b/tests/__snapshots__/qrcode-2/32/fast-270.json index ab8a6e82..5e2fdb98 100644 --- a/tests/__snapshots__/qrcode-2/32/fast-270.json +++ b/tests/__snapshots__/qrcode-2/32/fast-270.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/32/fast-90.json b/tests/__snapshots__/qrcode-2/32/fast-90.json index 73684861..098bb9c5 100644 --- a/tests/__snapshots__/qrcode-2/32/fast-90.json +++ b/tests/__snapshots__/qrcode-2/32/fast-90.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/32/pure-0.json b/tests/__snapshots__/qrcode-2/32/pure-0.json index c3217f32..2140d847 100644 --- a/tests/__snapshots__/qrcode-2/32/pure-0.json +++ b/tests/__snapshots__/qrcode-2/32/pure-0.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/32/slow-0.json b/tests/__snapshots__/qrcode-2/32/slow-0.json index d7dc2170..1f1f5dad 100644 --- a/tests/__snapshots__/qrcode-2/32/slow-0.json +++ b/tests/__snapshots__/qrcode-2/32/slow-0.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/32/slow-180.json b/tests/__snapshots__/qrcode-2/32/slow-180.json index 73086d14..ab6f3afa 100644 --- a/tests/__snapshots__/qrcode-2/32/slow-180.json +++ b/tests/__snapshots__/qrcode-2/32/slow-180.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/32/slow-270.json b/tests/__snapshots__/qrcode-2/32/slow-270.json index ab8a6e82..5e2fdb98 100644 --- a/tests/__snapshots__/qrcode-2/32/slow-270.json +++ b/tests/__snapshots__/qrcode-2/32/slow-270.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/32/slow-90.json b/tests/__snapshots__/qrcode-2/32/slow-90.json index 73684861..098bb9c5 100644 --- a/tests/__snapshots__/qrcode-2/32/slow-90.json +++ b/tests/__snapshots__/qrcode-2/32/slow-90.json @@ -5,7 +5,7 @@ "bytes": "aa77d77", "bytesECI": "3e2eaf7", "text": "BEGIN:VCARDN:Kennedy;SteveTEL:+44 (0)7775 755503ADR;HOME:;;Flat 2, 43 Howitt Road, Belsize Park;London;;NW34LU;UKORG:NetTek Ltd;TITLE:ConsultantEMAIL:steve@nettek.co.ukURL:www.nettek.co.ukEMAIL;IM:MSN:steve@gbnet.netNOTE:Testing 1 2 3BDAY:19611105END:VCARD", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "12" + "version": "12", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/33/fast-0.json b/tests/__snapshots__/qrcode-2/33/fast-0.json index 1df464a9..c557f1f4 100644 --- a/tests/__snapshots__/qrcode-2/33/fast-0.json +++ b/tests/__snapshots__/qrcode-2/33/fast-0.json @@ -5,7 +5,7 @@ "bytes": "80d9a1c", "bytesECI": "9f79998", "text": "AD:SUB:阿;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Mixed", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/33/fast-180.json b/tests/__snapshots__/qrcode-2/33/fast-180.json index 3474d79a..94b3afe5 100644 --- a/tests/__snapshots__/qrcode-2/33/fast-180.json +++ b/tests/__snapshots__/qrcode-2/33/fast-180.json @@ -5,7 +5,7 @@ "bytes": "80d9a1c", "bytesECI": "9f79998", "text": "AD:SUB:阿;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Mixed", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/33/fast-270.json b/tests/__snapshots__/qrcode-2/33/fast-270.json index 5a77bd07..88873676 100644 --- a/tests/__snapshots__/qrcode-2/33/fast-270.json +++ b/tests/__snapshots__/qrcode-2/33/fast-270.json @@ -5,7 +5,7 @@ "bytes": "80d9a1c", "bytesECI": "9f79998", "text": "AD:SUB:阿;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Mixed", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/33/fast-90.json b/tests/__snapshots__/qrcode-2/33/fast-90.json index 1af6ae25..1219753d 100644 --- a/tests/__snapshots__/qrcode-2/33/fast-90.json +++ b/tests/__snapshots__/qrcode-2/33/fast-90.json @@ -5,7 +5,7 @@ "bytes": "80d9a1c", "bytesECI": "9f79998", "text": "AD:SUB:阿;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Mixed", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/33/pure-0.json b/tests/__snapshots__/qrcode-2/33/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/33/pure-0.json +++ b/tests/__snapshots__/qrcode-2/33/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/33/slow-0.json b/tests/__snapshots__/qrcode-2/33/slow-0.json index 1df464a9..c557f1f4 100644 --- a/tests/__snapshots__/qrcode-2/33/slow-0.json +++ b/tests/__snapshots__/qrcode-2/33/slow-0.json @@ -5,7 +5,7 @@ "bytes": "80d9a1c", "bytesECI": "9f79998", "text": "AD:SUB:阿;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Mixed", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/33/slow-180.json b/tests/__snapshots__/qrcode-2/33/slow-180.json index 3474d79a..94b3afe5 100644 --- a/tests/__snapshots__/qrcode-2/33/slow-180.json +++ b/tests/__snapshots__/qrcode-2/33/slow-180.json @@ -5,7 +5,7 @@ "bytes": "80d9a1c", "bytesECI": "9f79998", "text": "AD:SUB:阿;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Mixed", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/33/slow-270.json b/tests/__snapshots__/qrcode-2/33/slow-270.json index 5a77bd07..88873676 100644 --- a/tests/__snapshots__/qrcode-2/33/slow-270.json +++ b/tests/__snapshots__/qrcode-2/33/slow-270.json @@ -5,7 +5,7 @@ "bytes": "80d9a1c", "bytesECI": "9f79998", "text": "AD:SUB:阿;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Mixed", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/33/slow-90.json b/tests/__snapshots__/qrcode-2/33/slow-90.json index 1af6ae25..1219753d 100644 --- a/tests/__snapshots__/qrcode-2/33/slow-90.json +++ b/tests/__snapshots__/qrcode-2/33/slow-90.json @@ -5,7 +5,7 @@ "bytes": "80d9a1c", "bytesECI": "9f79998", "text": "AD:SUB:阿;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Mixed", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/34/fast-0.json b/tests/__snapshots__/qrcode-2/34/fast-0.json index 10afd5c2..2a1f8391 100644 --- a/tests/__snapshots__/qrcode-2/34/fast-0.json +++ b/tests/__snapshots__/qrcode-2/34/fast-0.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/34/fast-180.json b/tests/__snapshots__/qrcode-2/34/fast-180.json index d6a57ba4..bf4afd66 100644 --- a/tests/__snapshots__/qrcode-2/34/fast-180.json +++ b/tests/__snapshots__/qrcode-2/34/fast-180.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/34/fast-270.json b/tests/__snapshots__/qrcode-2/34/fast-270.json index 5a5e88d1..fddaf2a9 100644 --- a/tests/__snapshots__/qrcode-2/34/fast-270.json +++ b/tests/__snapshots__/qrcode-2/34/fast-270.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/34/fast-90.json b/tests/__snapshots__/qrcode-2/34/fast-90.json index 456d2be7..66e8011e 100644 --- a/tests/__snapshots__/qrcode-2/34/fast-90.json +++ b/tests/__snapshots__/qrcode-2/34/fast-90.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/34/pure-0.json b/tests/__snapshots__/qrcode-2/34/pure-0.json index f5171296..a0b3799f 100644 --- a/tests/__snapshots__/qrcode-2/34/pure-0.json +++ b/tests/__snapshots__/qrcode-2/34/pure-0.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/34/slow-0.json b/tests/__snapshots__/qrcode-2/34/slow-0.json index 10afd5c2..2a1f8391 100644 --- a/tests/__snapshots__/qrcode-2/34/slow-0.json +++ b/tests/__snapshots__/qrcode-2/34/slow-0.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/34/slow-180.json b/tests/__snapshots__/qrcode-2/34/slow-180.json index d6a57ba4..bf4afd66 100644 --- a/tests/__snapshots__/qrcode-2/34/slow-180.json +++ b/tests/__snapshots__/qrcode-2/34/slow-180.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/34/slow-270.json b/tests/__snapshots__/qrcode-2/34/slow-270.json index 5a5e88d1..fddaf2a9 100644 --- a/tests/__snapshots__/qrcode-2/34/slow-270.json +++ b/tests/__snapshots__/qrcode-2/34/slow-270.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/34/slow-90.json b/tests/__snapshots__/qrcode-2/34/slow-90.json index 456d2be7..66e8011e 100644 --- a/tests/__snapshots__/qrcode-2/34/slow-90.json +++ b/tests/__snapshots__/qrcode-2/34/slow-90.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/35/fast-0.json b/tests/__snapshots__/qrcode-2/35/fast-0.json index 10afd5c2..2a1f8391 100644 --- a/tests/__snapshots__/qrcode-2/35/fast-0.json +++ b/tests/__snapshots__/qrcode-2/35/fast-0.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/35/fast-180.json b/tests/__snapshots__/qrcode-2/35/fast-180.json index d6a57ba4..bf4afd66 100644 --- a/tests/__snapshots__/qrcode-2/35/fast-180.json +++ b/tests/__snapshots__/qrcode-2/35/fast-180.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/35/fast-270.json b/tests/__snapshots__/qrcode-2/35/fast-270.json index 5a5e88d1..fddaf2a9 100644 --- a/tests/__snapshots__/qrcode-2/35/fast-270.json +++ b/tests/__snapshots__/qrcode-2/35/fast-270.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/35/fast-90.json b/tests/__snapshots__/qrcode-2/35/fast-90.json index 456d2be7..66e8011e 100644 --- a/tests/__snapshots__/qrcode-2/35/fast-90.json +++ b/tests/__snapshots__/qrcode-2/35/fast-90.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/35/pure-0.json b/tests/__snapshots__/qrcode-2/35/pure-0.json index f5171296..a0b3799f 100644 --- a/tests/__snapshots__/qrcode-2/35/pure-0.json +++ b/tests/__snapshots__/qrcode-2/35/pure-0.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/35/slow-0.json b/tests/__snapshots__/qrcode-2/35/slow-0.json index 10afd5c2..2a1f8391 100644 --- a/tests/__snapshots__/qrcode-2/35/slow-0.json +++ b/tests/__snapshots__/qrcode-2/35/slow-0.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/35/slow-180.json b/tests/__snapshots__/qrcode-2/35/slow-180.json index d6a57ba4..bf4afd66 100644 --- a/tests/__snapshots__/qrcode-2/35/slow-180.json +++ b/tests/__snapshots__/qrcode-2/35/slow-180.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/35/slow-270.json b/tests/__snapshots__/qrcode-2/35/slow-270.json index 5a5e88d1..fddaf2a9 100644 --- a/tests/__snapshots__/qrcode-2/35/slow-270.json +++ b/tests/__snapshots__/qrcode-2/35/slow-270.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/35/slow-90.json b/tests/__snapshots__/qrcode-2/35/slow-90.json index 456d2be7..66e8011e 100644 --- a/tests/__snapshots__/qrcode-2/35/slow-90.json +++ b/tests/__snapshots__/qrcode-2/35/slow-90.json @@ -5,7 +5,7 @@ "bytes": "dd014af", "bytesECI": "f909ca5", "text": "http://www.google.com/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/4/fast-0.json b/tests/__snapshots__/qrcode-2/4/fast-0.json index 0bf6ea10..feb4d11f 100644 --- a/tests/__snapshots__/qrcode-2/4/fast-0.json +++ b/tests/__snapshots__/qrcode-2/4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d403e96", "bytesECI": "e0e93aa", "text": "http://wwws.keihin.ktr.mlit.go.jp/keitai/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/4/fast-180.json b/tests/__snapshots__/qrcode-2/4/fast-180.json index f99d4c7f..2f17ec37 100644 --- a/tests/__snapshots__/qrcode-2/4/fast-180.json +++ b/tests/__snapshots__/qrcode-2/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d403e96", "bytesECI": "e0e93aa", "text": "http://wwws.keihin.ktr.mlit.go.jp/keitai/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/4/fast-270.json b/tests/__snapshots__/qrcode-2/4/fast-270.json index 0223fdb5..4d1d5a54 100644 --- a/tests/__snapshots__/qrcode-2/4/fast-270.json +++ b/tests/__snapshots__/qrcode-2/4/fast-270.json @@ -5,7 +5,7 @@ "bytes": "d403e96", "bytesECI": "e0e93aa", "text": "http://wwws.keihin.ktr.mlit.go.jp/keitai/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/4/fast-90.json b/tests/__snapshots__/qrcode-2/4/fast-90.json index 2b41d4f2..cad45d91 100644 --- a/tests/__snapshots__/qrcode-2/4/fast-90.json +++ b/tests/__snapshots__/qrcode-2/4/fast-90.json @@ -5,7 +5,7 @@ "bytes": "d403e96", "bytesECI": "e0e93aa", "text": "http://wwws.keihin.ktr.mlit.go.jp/keitai/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/4/pure-0.json b/tests/__snapshots__/qrcode-2/4/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/4/pure-0.json +++ b/tests/__snapshots__/qrcode-2/4/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/4/slow-0.json b/tests/__snapshots__/qrcode-2/4/slow-0.json index 0bf6ea10..feb4d11f 100644 --- a/tests/__snapshots__/qrcode-2/4/slow-0.json +++ b/tests/__snapshots__/qrcode-2/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d403e96", "bytesECI": "e0e93aa", "text": "http://wwws.keihin.ktr.mlit.go.jp/keitai/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/4/slow-180.json b/tests/__snapshots__/qrcode-2/4/slow-180.json index f99d4c7f..2f17ec37 100644 --- a/tests/__snapshots__/qrcode-2/4/slow-180.json +++ b/tests/__snapshots__/qrcode-2/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d403e96", "bytesECI": "e0e93aa", "text": "http://wwws.keihin.ktr.mlit.go.jp/keitai/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/4/slow-270.json b/tests/__snapshots__/qrcode-2/4/slow-270.json index 0223fdb5..4d1d5a54 100644 --- a/tests/__snapshots__/qrcode-2/4/slow-270.json +++ b/tests/__snapshots__/qrcode-2/4/slow-270.json @@ -5,7 +5,7 @@ "bytes": "d403e96", "bytesECI": "e0e93aa", "text": "http://wwws.keihin.ktr.mlit.go.jp/keitai/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/4/slow-90.json b/tests/__snapshots__/qrcode-2/4/slow-90.json index 2b41d4f2..cad45d91 100644 --- a/tests/__snapshots__/qrcode-2/4/slow-90.json +++ b/tests/__snapshots__/qrcode-2/4/slow-90.json @@ -5,7 +5,7 @@ "bytes": "d403e96", "bytesECI": "e0e93aa", "text": "http://wwws.keihin.ktr.mlit.go.jp/keitai/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/5/fast-0.json b/tests/__snapshots__/qrcode-2/5/fast-0.json index a0803976..42d010fd 100644 --- a/tests/__snapshots__/qrcode-2/5/fast-0.json +++ b/tests/__snapshots__/qrcode-2/5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "bafb41c", "bytesECI": "da1c081", "text": "2021200000", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/5/fast-180.json b/tests/__snapshots__/qrcode-2/5/fast-180.json index ba00ad4b..c37d239b 100644 --- a/tests/__snapshots__/qrcode-2/5/fast-180.json +++ b/tests/__snapshots__/qrcode-2/5/fast-180.json @@ -5,7 +5,7 @@ "bytes": "bafb41c", "bytesECI": "da1c081", "text": "2021200000", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/5/fast-270.json b/tests/__snapshots__/qrcode-2/5/fast-270.json index a66abe85..66aea0a6 100644 --- a/tests/__snapshots__/qrcode-2/5/fast-270.json +++ b/tests/__snapshots__/qrcode-2/5/fast-270.json @@ -5,7 +5,7 @@ "bytes": "bafb41c", "bytesECI": "da1c081", "text": "2021200000", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/5/fast-90.json b/tests/__snapshots__/qrcode-2/5/fast-90.json index e8ec5dc4..46c6bc43 100644 --- a/tests/__snapshots__/qrcode-2/5/fast-90.json +++ b/tests/__snapshots__/qrcode-2/5/fast-90.json @@ -5,7 +5,7 @@ "bytes": "bafb41c", "bytesECI": "da1c081", "text": "2021200000", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/5/pure-0.json b/tests/__snapshots__/qrcode-2/5/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/5/pure-0.json +++ b/tests/__snapshots__/qrcode-2/5/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/5/slow-0.json b/tests/__snapshots__/qrcode-2/5/slow-0.json index a0803976..42d010fd 100644 --- a/tests/__snapshots__/qrcode-2/5/slow-0.json +++ b/tests/__snapshots__/qrcode-2/5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "bafb41c", "bytesECI": "da1c081", "text": "2021200000", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/5/slow-180.json b/tests/__snapshots__/qrcode-2/5/slow-180.json index ba00ad4b..c37d239b 100644 --- a/tests/__snapshots__/qrcode-2/5/slow-180.json +++ b/tests/__snapshots__/qrcode-2/5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "bafb41c", "bytesECI": "da1c081", "text": "2021200000", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/5/slow-270.json b/tests/__snapshots__/qrcode-2/5/slow-270.json index a66abe85..66aea0a6 100644 --- a/tests/__snapshots__/qrcode-2/5/slow-270.json +++ b/tests/__snapshots__/qrcode-2/5/slow-270.json @@ -5,7 +5,7 @@ "bytes": "bafb41c", "bytesECI": "da1c081", "text": "2021200000", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/5/slow-90.json b/tests/__snapshots__/qrcode-2/5/slow-90.json index e8ec5dc4..46c6bc43 100644 --- a/tests/__snapshots__/qrcode-2/5/slow-90.json +++ b/tests/__snapshots__/qrcode-2/5/slow-90.json @@ -5,7 +5,7 @@ "bytes": "bafb41c", "bytesECI": "da1c081", "text": "2021200000", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/6/fast-0.json b/tests/__snapshots__/qrcode-2/6/fast-0.json index bc11ddc4..31cc1923 100644 --- a/tests/__snapshots__/qrcode-2/6/fast-0.json +++ b/tests/__snapshots__/qrcode-2/6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c09675d", "bytesECI": "9b0c7b2", "text": "http://d.kaywa.com/20207100", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/6/fast-180.json b/tests/__snapshots__/qrcode-2/6/fast-180.json index f13814a1..6f993872 100644 --- a/tests/__snapshots__/qrcode-2/6/fast-180.json +++ b/tests/__snapshots__/qrcode-2/6/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c09675d", "bytesECI": "9b0c7b2", "text": "http://d.kaywa.com/20207100", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/6/fast-270.json b/tests/__snapshots__/qrcode-2/6/fast-270.json index b0e424c1..9e3b65c3 100644 --- a/tests/__snapshots__/qrcode-2/6/fast-270.json +++ b/tests/__snapshots__/qrcode-2/6/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c09675d", "bytesECI": "9b0c7b2", "text": "http://d.kaywa.com/20207100", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/6/fast-90.json b/tests/__snapshots__/qrcode-2/6/fast-90.json index d07bfc11..011478a1 100644 --- a/tests/__snapshots__/qrcode-2/6/fast-90.json +++ b/tests/__snapshots__/qrcode-2/6/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c09675d", "bytesECI": "9b0c7b2", "text": "http://d.kaywa.com/20207100", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/6/pure-0.json b/tests/__snapshots__/qrcode-2/6/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/6/pure-0.json +++ b/tests/__snapshots__/qrcode-2/6/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/6/slow-0.json b/tests/__snapshots__/qrcode-2/6/slow-0.json index bc11ddc4..31cc1923 100644 --- a/tests/__snapshots__/qrcode-2/6/slow-0.json +++ b/tests/__snapshots__/qrcode-2/6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c09675d", "bytesECI": "9b0c7b2", "text": "http://d.kaywa.com/20207100", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/6/slow-180.json b/tests/__snapshots__/qrcode-2/6/slow-180.json index f13814a1..6f993872 100644 --- a/tests/__snapshots__/qrcode-2/6/slow-180.json +++ b/tests/__snapshots__/qrcode-2/6/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c09675d", "bytesECI": "9b0c7b2", "text": "http://d.kaywa.com/20207100", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/6/slow-270.json b/tests/__snapshots__/qrcode-2/6/slow-270.json index b0e424c1..9e3b65c3 100644 --- a/tests/__snapshots__/qrcode-2/6/slow-270.json +++ b/tests/__snapshots__/qrcode-2/6/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c09675d", "bytesECI": "9b0c7b2", "text": "http://d.kaywa.com/20207100", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/6/slow-90.json b/tests/__snapshots__/qrcode-2/6/slow-90.json index d07bfc11..011478a1 100644 --- a/tests/__snapshots__/qrcode-2/6/slow-90.json +++ b/tests/__snapshots__/qrcode-2/6/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c09675d", "bytesECI": "9b0c7b2", "text": "http://d.kaywa.com/20207100", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/7/fast-0.json b/tests/__snapshots__/qrcode-2/7/fast-0.json index 4ae824a0..3ef855f8 100644 --- a/tests/__snapshots__/qrcode-2/7/fast-0.json +++ b/tests/__snapshots__/qrcode-2/7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "04f0689", "bytesECI": "3d1de24", "text": "BIZCARD:N:Todd;X:Ogasawara;T:Tech Geek;C:MobileViews.com;A:MobileTown USA;E:editor@mobileviews.com;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/7/fast-180.json b/tests/__snapshots__/qrcode-2/7/fast-180.json index 80950906..d276b04d 100644 --- a/tests/__snapshots__/qrcode-2/7/fast-180.json +++ b/tests/__snapshots__/qrcode-2/7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "04f0689", "bytesECI": "3d1de24", "text": "BIZCARD:N:Todd;X:Ogasawara;T:Tech Geek;C:MobileViews.com;A:MobileTown USA;E:editor@mobileviews.com;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/7/fast-270.json b/tests/__snapshots__/qrcode-2/7/fast-270.json index ffe09a52..f9f2f7f0 100644 --- a/tests/__snapshots__/qrcode-2/7/fast-270.json +++ b/tests/__snapshots__/qrcode-2/7/fast-270.json @@ -5,7 +5,7 @@ "bytes": "04f0689", "bytesECI": "3d1de24", "text": "BIZCARD:N:Todd;X:Ogasawara;T:Tech Geek;C:MobileViews.com;A:MobileTown USA;E:editor@mobileviews.com;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/7/fast-90.json b/tests/__snapshots__/qrcode-2/7/fast-90.json index 9ba7cda2..20918c8a 100644 --- a/tests/__snapshots__/qrcode-2/7/fast-90.json +++ b/tests/__snapshots__/qrcode-2/7/fast-90.json @@ -5,7 +5,7 @@ "bytes": "04f0689", "bytesECI": "3d1de24", "text": "BIZCARD:N:Todd;X:Ogasawara;T:Tech Geek;C:MobileViews.com;A:MobileTown USA;E:editor@mobileviews.com;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/7/pure-0.json b/tests/__snapshots__/qrcode-2/7/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/7/pure-0.json +++ b/tests/__snapshots__/qrcode-2/7/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/7/slow-0.json b/tests/__snapshots__/qrcode-2/7/slow-0.json index 4ae824a0..3ef855f8 100644 --- a/tests/__snapshots__/qrcode-2/7/slow-0.json +++ b/tests/__snapshots__/qrcode-2/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "04f0689", "bytesECI": "3d1de24", "text": "BIZCARD:N:Todd;X:Ogasawara;T:Tech Geek;C:MobileViews.com;A:MobileTown USA;E:editor@mobileviews.com;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/7/slow-180.json b/tests/__snapshots__/qrcode-2/7/slow-180.json index 80950906..d276b04d 100644 --- a/tests/__snapshots__/qrcode-2/7/slow-180.json +++ b/tests/__snapshots__/qrcode-2/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "04f0689", "bytesECI": "3d1de24", "text": "BIZCARD:N:Todd;X:Ogasawara;T:Tech Geek;C:MobileViews.com;A:MobileTown USA;E:editor@mobileviews.com;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/7/slow-270.json b/tests/__snapshots__/qrcode-2/7/slow-270.json index ffe09a52..f9f2f7f0 100644 --- a/tests/__snapshots__/qrcode-2/7/slow-270.json +++ b/tests/__snapshots__/qrcode-2/7/slow-270.json @@ -5,7 +5,7 @@ "bytes": "04f0689", "bytesECI": "3d1de24", "text": "BIZCARD:N:Todd;X:Ogasawara;T:Tech Geek;C:MobileViews.com;A:MobileTown USA;E:editor@mobileviews.com;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/7/slow-90.json b/tests/__snapshots__/qrcode-2/7/slow-90.json index 9ba7cda2..20918c8a 100644 --- a/tests/__snapshots__/qrcode-2/7/slow-90.json +++ b/tests/__snapshots__/qrcode-2/7/slow-90.json @@ -5,7 +5,7 @@ "bytes": "04f0689", "bytesECI": "3d1de24", "text": "BIZCARD:N:Todd;X:Ogasawara;T:Tech Geek;C:MobileViews.com;A:MobileTown USA;E:editor@mobileviews.com;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/8/fast-0.json b/tests/__snapshots__/qrcode-2/8/fast-0.json index 1a94c442..3148f0c7 100644 --- a/tests/__snapshots__/qrcode-2/8/fast-0.json +++ b/tests/__snapshots__/qrcode-2/8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8ef929f", "bytesECI": "0f39ee8", "text": "http://staticrooster.com", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/8/fast-180.json b/tests/__snapshots__/qrcode-2/8/fast-180.json index d3fe506f..936f869e 100644 --- a/tests/__snapshots__/qrcode-2/8/fast-180.json +++ b/tests/__snapshots__/qrcode-2/8/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8ef929f", "bytesECI": "0f39ee8", "text": "http://staticrooster.com", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/8/fast-270.json b/tests/__snapshots__/qrcode-2/8/fast-270.json index 02e219f6..6dde67c0 100644 --- a/tests/__snapshots__/qrcode-2/8/fast-270.json +++ b/tests/__snapshots__/qrcode-2/8/fast-270.json @@ -5,7 +5,7 @@ "bytes": "8ef929f", "bytesECI": "0f39ee8", "text": "http://staticrooster.com", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/8/fast-90.json b/tests/__snapshots__/qrcode-2/8/fast-90.json index ee08d61c..1b44bbd2 100644 --- a/tests/__snapshots__/qrcode-2/8/fast-90.json +++ b/tests/__snapshots__/qrcode-2/8/fast-90.json @@ -5,7 +5,7 @@ "bytes": "8ef929f", "bytesECI": "0f39ee8", "text": "http://staticrooster.com", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/8/pure-0.json b/tests/__snapshots__/qrcode-2/8/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/8/pure-0.json +++ b/tests/__snapshots__/qrcode-2/8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/8/slow-0.json b/tests/__snapshots__/qrcode-2/8/slow-0.json index 1a94c442..3148f0c7 100644 --- a/tests/__snapshots__/qrcode-2/8/slow-0.json +++ b/tests/__snapshots__/qrcode-2/8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8ef929f", "bytesECI": "0f39ee8", "text": "http://staticrooster.com", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/8/slow-180.json b/tests/__snapshots__/qrcode-2/8/slow-180.json index d3fe506f..936f869e 100644 --- a/tests/__snapshots__/qrcode-2/8/slow-180.json +++ b/tests/__snapshots__/qrcode-2/8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8ef929f", "bytesECI": "0f39ee8", "text": "http://staticrooster.com", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/8/slow-270.json b/tests/__snapshots__/qrcode-2/8/slow-270.json index 02e219f6..6dde67c0 100644 --- a/tests/__snapshots__/qrcode-2/8/slow-270.json +++ b/tests/__snapshots__/qrcode-2/8/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8ef929f", "bytesECI": "0f39ee8", "text": "http://staticrooster.com", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/8/slow-90.json b/tests/__snapshots__/qrcode-2/8/slow-90.json index ee08d61c..1b44bbd2 100644 --- a/tests/__snapshots__/qrcode-2/8/slow-90.json +++ b/tests/__snapshots__/qrcode-2/8/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8ef929f", "bytesECI": "0f39ee8", "text": "http://staticrooster.com", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-2/9/fast-0.json b/tests/__snapshots__/qrcode-2/9/fast-0.json index f759af86..ae950044 100644 --- a/tests/__snapshots__/qrcode-2/9/fast-0.json +++ b/tests/__snapshots__/qrcode-2/9/fast-0.json @@ -5,7 +5,7 @@ "bytes": "2bbfde0", "bytesECI": "585b23a", "text": "Morden", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/9/fast-180.json b/tests/__snapshots__/qrcode-2/9/fast-180.json index 8743c85b..0c591553 100644 --- a/tests/__snapshots__/qrcode-2/9/fast-180.json +++ b/tests/__snapshots__/qrcode-2/9/fast-180.json @@ -5,7 +5,7 @@ "bytes": "2bbfde0", "bytesECI": "585b23a", "text": "Morden", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/9/fast-270.json b/tests/__snapshots__/qrcode-2/9/fast-270.json index c3053731..48697feb 100644 --- a/tests/__snapshots__/qrcode-2/9/fast-270.json +++ b/tests/__snapshots__/qrcode-2/9/fast-270.json @@ -5,7 +5,7 @@ "bytes": "2bbfde0", "bytesECI": "585b23a", "text": "Morden", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/9/fast-90.json b/tests/__snapshots__/qrcode-2/9/fast-90.json index 9188f817..65a41100 100644 --- a/tests/__snapshots__/qrcode-2/9/fast-90.json +++ b/tests/__snapshots__/qrcode-2/9/fast-90.json @@ -5,7 +5,7 @@ "bytes": "2bbfde0", "bytesECI": "585b23a", "text": "Morden", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/9/pure-0.json b/tests/__snapshots__/qrcode-2/9/pure-0.json index f8df9576..51a55046 100644 --- a/tests/__snapshots__/qrcode-2/9/pure-0.json +++ b/tests/__snapshots__/qrcode-2/9/pure-0.json @@ -5,7 +5,7 @@ "bytes": "2bbfde0", "bytesECI": "585b23a", "text": "Morden", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/9/slow-0.json b/tests/__snapshots__/qrcode-2/9/slow-0.json index f759af86..ae950044 100644 --- a/tests/__snapshots__/qrcode-2/9/slow-0.json +++ b/tests/__snapshots__/qrcode-2/9/slow-0.json @@ -5,7 +5,7 @@ "bytes": "2bbfde0", "bytesECI": "585b23a", "text": "Morden", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/9/slow-180.json b/tests/__snapshots__/qrcode-2/9/slow-180.json index 8743c85b..0c591553 100644 --- a/tests/__snapshots__/qrcode-2/9/slow-180.json +++ b/tests/__snapshots__/qrcode-2/9/slow-180.json @@ -5,7 +5,7 @@ "bytes": "2bbfde0", "bytesECI": "585b23a", "text": "Morden", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/9/slow-270.json b/tests/__snapshots__/qrcode-2/9/slow-270.json index c3053731..48697feb 100644 --- a/tests/__snapshots__/qrcode-2/9/slow-270.json +++ b/tests/__snapshots__/qrcode-2/9/slow-270.json @@ -5,7 +5,7 @@ "bytes": "2bbfde0", "bytesECI": "585b23a", "text": "Morden", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/9/slow-90.json b/tests/__snapshots__/qrcode-2/9/slow-90.json index 9188f817..65a41100 100644 --- a/tests/__snapshots__/qrcode-2/9/slow-90.json +++ b/tests/__snapshots__/qrcode-2/9/slow-90.json @@ -5,7 +5,7 @@ "bytes": "2bbfde0", "bytesECI": "585b23a", "text": "Morden", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-2/estimate-tilt/fast-0.json b/tests/__snapshots__/qrcode-2/estimate-tilt/fast-0.json index c0fad5a6..32c01597 100644 --- a/tests/__snapshots__/qrcode-2/estimate-tilt/fast-0.json +++ b/tests/__snapshots__/qrcode-2/estimate-tilt/fast-0.json @@ -5,7 +5,7 @@ "bytes": "194fb8a", "bytesECI": "a6271c0", "text": "VERSION 1 6CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/estimate-tilt/fast-180.json b/tests/__snapshots__/qrcode-2/estimate-tilt/fast-180.json index 86dae31f..7088ec48 100644 --- a/tests/__snapshots__/qrcode-2/estimate-tilt/fast-180.json +++ b/tests/__snapshots__/qrcode-2/estimate-tilt/fast-180.json @@ -5,7 +5,7 @@ "bytes": "194fb8a", "bytesECI": "a6271c0", "text": "VERSION 1 6CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/estimate-tilt/fast-270.json b/tests/__snapshots__/qrcode-2/estimate-tilt/fast-270.json index 96bdaadd..2a741569 100644 --- a/tests/__snapshots__/qrcode-2/estimate-tilt/fast-270.json +++ b/tests/__snapshots__/qrcode-2/estimate-tilt/fast-270.json @@ -5,7 +5,7 @@ "bytes": "194fb8a", "bytesECI": "a6271c0", "text": "VERSION 1 6CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/estimate-tilt/fast-90.json b/tests/__snapshots__/qrcode-2/estimate-tilt/fast-90.json index c07ff5cd..b9598b42 100644 --- a/tests/__snapshots__/qrcode-2/estimate-tilt/fast-90.json +++ b/tests/__snapshots__/qrcode-2/estimate-tilt/fast-90.json @@ -5,7 +5,7 @@ "bytes": "194fb8a", "bytesECI": "a6271c0", "text": "VERSION 1 6CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/estimate-tilt/pure-0.json b/tests/__snapshots__/qrcode-2/estimate-tilt/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/estimate-tilt/pure-0.json +++ b/tests/__snapshots__/qrcode-2/estimate-tilt/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/estimate-tilt/slow-0.json b/tests/__snapshots__/qrcode-2/estimate-tilt/slow-0.json index c0fad5a6..32c01597 100644 --- a/tests/__snapshots__/qrcode-2/estimate-tilt/slow-0.json +++ b/tests/__snapshots__/qrcode-2/estimate-tilt/slow-0.json @@ -5,7 +5,7 @@ "bytes": "194fb8a", "bytesECI": "a6271c0", "text": "VERSION 1 6CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/estimate-tilt/slow-180.json b/tests/__snapshots__/qrcode-2/estimate-tilt/slow-180.json index 86dae31f..7088ec48 100644 --- a/tests/__snapshots__/qrcode-2/estimate-tilt/slow-180.json +++ b/tests/__snapshots__/qrcode-2/estimate-tilt/slow-180.json @@ -5,7 +5,7 @@ "bytes": "194fb8a", "bytesECI": "a6271c0", "text": "VERSION 1 6CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/estimate-tilt/slow-270.json b/tests/__snapshots__/qrcode-2/estimate-tilt/slow-270.json index 96bdaadd..2a741569 100644 --- a/tests/__snapshots__/qrcode-2/estimate-tilt/slow-270.json +++ b/tests/__snapshots__/qrcode-2/estimate-tilt/slow-270.json @@ -5,7 +5,7 @@ "bytes": "194fb8a", "bytesECI": "a6271c0", "text": "VERSION 1 6CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/estimate-tilt/slow-90.json b/tests/__snapshots__/qrcode-2/estimate-tilt/slow-90.json index c07ff5cd..b9598b42 100644 --- a/tests/__snapshots__/qrcode-2/estimate-tilt/slow-90.json +++ b/tests/__snapshots__/qrcode-2/estimate-tilt/slow-90.json @@ -5,7 +5,7 @@ "bytes": "194fb8a", "bytesECI": "a6271c0", "text": "VERSION 1 6CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-0.json b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-0.json index 199c2823..66e996d9 100644 --- a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-0.json +++ b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-180.json b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-180.json index 65efaa90..188542f1 100644 --- a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-180.json +++ b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-270.json b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-270.json index 9bd55fd9..bbc59e08 100644 --- a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-270.json +++ b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-270.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-90.json b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-90.json index 33e47499..5a672ea5 100644 --- a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-90.json +++ b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/fast-90.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/pure-0.json b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/pure-0.json +++ b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-0.json b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-0.json index 199c2823..66e996d9 100644 --- a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-0.json +++ b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-180.json b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-180.json index 65efaa90..188542f1 100644 --- a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-180.json +++ b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-270.json b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-270.json index 9bd55fd9..bbc59e08 100644 --- a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-270.json +++ b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-270.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-90.json b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-90.json index 33e47499..5a672ea5 100644 --- a/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-90.json +++ b/tests/__snapshots__/qrcode-2/fix-finderpattern-order/slow-90.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-traceline/fast-0.json b/tests/__snapshots__/qrcode-2/fix-traceline/fast-0.json index 11f12b12..8111524f 100644 --- a/tests/__snapshots__/qrcode-2/fix-traceline/fast-0.json +++ b/tests/__snapshots__/qrcode-2/fix-traceline/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-traceline/fast-180.json b/tests/__snapshots__/qrcode-2/fix-traceline/fast-180.json index eeec0081..572df912 100644 --- a/tests/__snapshots__/qrcode-2/fix-traceline/fast-180.json +++ b/tests/__snapshots__/qrcode-2/fix-traceline/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-traceline/fast-270.json b/tests/__snapshots__/qrcode-2/fix-traceline/fast-270.json index 805d4bda..da59e6c4 100644 --- a/tests/__snapshots__/qrcode-2/fix-traceline/fast-270.json +++ b/tests/__snapshots__/qrcode-2/fix-traceline/fast-270.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-traceline/fast-90.json b/tests/__snapshots__/qrcode-2/fix-traceline/fast-90.json index b5490cd7..02ecace0 100644 --- a/tests/__snapshots__/qrcode-2/fix-traceline/fast-90.json +++ b/tests/__snapshots__/qrcode-2/fix-traceline/fast-90.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-traceline/pure-0.json b/tests/__snapshots__/qrcode-2/fix-traceline/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/fix-traceline/pure-0.json +++ b/tests/__snapshots__/qrcode-2/fix-traceline/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/fix-traceline/slow-0.json b/tests/__snapshots__/qrcode-2/fix-traceline/slow-0.json index 11f12b12..8111524f 100644 --- a/tests/__snapshots__/qrcode-2/fix-traceline/slow-0.json +++ b/tests/__snapshots__/qrcode-2/fix-traceline/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-traceline/slow-180.json b/tests/__snapshots__/qrcode-2/fix-traceline/slow-180.json index eeec0081..572df912 100644 --- a/tests/__snapshots__/qrcode-2/fix-traceline/slow-180.json +++ b/tests/__snapshots__/qrcode-2/fix-traceline/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-traceline/slow-270.json b/tests/__snapshots__/qrcode-2/fix-traceline/slow-270.json index 805d4bda..da59e6c4 100644 --- a/tests/__snapshots__/qrcode-2/fix-traceline/slow-270.json +++ b/tests/__snapshots__/qrcode-2/fix-traceline/slow-270.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/fix-traceline/slow-90.json b/tests/__snapshots__/qrcode-2/fix-traceline/slow-90.json index b5490cd7..02ecace0 100644 --- a/tests/__snapshots__/qrcode-2/fix-traceline/slow-90.json +++ b/tests/__snapshots__/qrcode-2/fix-traceline/slow-90.json @@ -5,7 +5,7 @@ "bytes": "0ffee3c", "bytesECI": "139d550", "text": "VERSION 2 8CM", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-0.json b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-0.json index 064c5961..2f61a71a 100644 --- a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-0.json +++ b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "39c77ff", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-180.json b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-180.json index aee93001..5714a07f 100644 --- a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-180.json +++ b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "39c77ff", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-270.json b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-270.json index 801cca0e..a948b5d3 100644 --- a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-270.json +++ b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-270.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "39c77ff", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-90.json b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-90.json index 6c3c31d2..b14dacb3 100644 --- a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-90.json +++ b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/fast-90.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "39c77ff", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/pure-0.json b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/pure-0.json index 721a0bb0..e307bb20 100644 --- a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/pure-0.json +++ b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "39c77ff", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-0.json b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-0.json index 064c5961..2f61a71a 100644 --- a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-0.json +++ b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "39c77ff", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-180.json b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-180.json index aee93001..5714a07f 100644 --- a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-180.json +++ b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "39c77ff", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-270.json b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-270.json index 801cca0e..a948b5d3 100644 --- a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-270.json +++ b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-270.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "39c77ff", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-90.json b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-90.json index 6c3c31d2..b14dacb3 100644 --- a/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-90.json +++ b/tests/__snapshots__/qrcode-2/gs1-figure-4.15.1-2/slow-90.json @@ -5,7 +5,7 @@ "bytes": "b569ba8", "bytesECI": "39c77ff", "text": "01095040000591012112345678p901101234567p171411208200http://www.gs1.org/demo/", - "eccLevel": "M", + "ecLevel": "M", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/high-res-1/fast-0.json b/tests/__snapshots__/qrcode-2/high-res-1/fast-0.json index 845c8714..23479346 100644 --- a/tests/__snapshots__/qrcode-2/high-res-1/fast-0.json +++ b/tests/__snapshots__/qrcode-2/high-res-1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "dcc9bdf", "bytesECI": "460a34b", "text": "QR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracQR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or trac", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/high-res-1/fast-180.json b/tests/__snapshots__/qrcode-2/high-res-1/fast-180.json index 72e166fc..38501d3f 100644 --- a/tests/__snapshots__/qrcode-2/high-res-1/fast-180.json +++ b/tests/__snapshots__/qrcode-2/high-res-1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "dcc9bdf", "bytesECI": "460a34b", "text": "QR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracQR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or trac", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/high-res-1/fast-270.json b/tests/__snapshots__/qrcode-2/high-res-1/fast-270.json index d9eb28db..c60acfc9 100644 --- a/tests/__snapshots__/qrcode-2/high-res-1/fast-270.json +++ b/tests/__snapshots__/qrcode-2/high-res-1/fast-270.json @@ -5,7 +5,7 @@ "bytes": "dcc9bdf", "bytesECI": "460a34b", "text": "QR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracQR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or trac", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/high-res-1/fast-90.json b/tests/__snapshots__/qrcode-2/high-res-1/fast-90.json index 56f86fe9..931324ef 100644 --- a/tests/__snapshots__/qrcode-2/high-res-1/fast-90.json +++ b/tests/__snapshots__/qrcode-2/high-res-1/fast-90.json @@ -5,7 +5,7 @@ "bytes": "dcc9bdf", "bytesECI": "460a34b", "text": "QR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracQR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or trac", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/high-res-1/pure-0.json b/tests/__snapshots__/qrcode-2/high-res-1/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/high-res-1/pure-0.json +++ b/tests/__snapshots__/qrcode-2/high-res-1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/high-res-1/slow-0.json b/tests/__snapshots__/qrcode-2/high-res-1/slow-0.json index 845c8714..23479346 100644 --- a/tests/__snapshots__/qrcode-2/high-res-1/slow-0.json +++ b/tests/__snapshots__/qrcode-2/high-res-1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "dcc9bdf", "bytesECI": "460a34b", "text": "QR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracQR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or trac", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/high-res-1/slow-180.json b/tests/__snapshots__/qrcode-2/high-res-1/slow-180.json index 72e166fc..38501d3f 100644 --- a/tests/__snapshots__/qrcode-2/high-res-1/slow-180.json +++ b/tests/__snapshots__/qrcode-2/high-res-1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "dcc9bdf", "bytesECI": "460a34b", "text": "QR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracQR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or trac", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/high-res-1/slow-270.json b/tests/__snapshots__/qrcode-2/high-res-1/slow-270.json index d9eb28db..c60acfc9 100644 --- a/tests/__snapshots__/qrcode-2/high-res-1/slow-270.json +++ b/tests/__snapshots__/qrcode-2/high-res-1/slow-270.json @@ -5,7 +5,7 @@ "bytes": "dcc9bdf", "bytesECI": "460a34b", "text": "QR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracQR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or trac", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/high-res-1/slow-90.json b/tests/__snapshots__/qrcode-2/high-res-1/slow-90.json index 56f86fe9..931324ef 100644 --- a/tests/__snapshots__/qrcode-2/high-res-1/slow-90.json +++ b/tests/__snapshots__/qrcode-2/high-res-1/slow-90.json @@ -5,7 +5,7 @@ "bytes": "dcc9bdf", "bytesECI": "460a34b", "text": "QR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracQR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed in 1994 for the automotive industry in Japan.[1] A barcode is a machine-readable optical label that contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or tracker that points to a website or application. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.[2]sdfgksjdflkgjsdkfgiotmbx,cmvbofghjoaasdfaERYYKLLDFGSDFFFFFFFFFFFFFFFFFFFFFFFFDDDDDDDDDSVFB094856JLKSJFGS0DBIUZKL;KSFDF09846JLKSDNFGBLDKSFBHJ0SP98ASDFKthat contains information about the item to which it is attached. In practice, QR codes often contain data for a locator, identifier, or trac", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "34" + "version": "34", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-inv-1/pure-0.json b/tests/__snapshots__/qrcode-2/qr-inv-1/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/qr-inv-1/pure-0.json +++ b/tests/__snapshots__/qrcode-2/qr-inv-1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/qr-inv-1/slow-0.json b/tests/__snapshots__/qrcode-2/qr-inv-1/slow-0.json index b4101469..6e61457a 100644 --- a/tests/__snapshots__/qrcode-2/qr-inv-1/slow-0.json +++ b/tests/__snapshots__/qrcode-2/qr-inv-1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0f32a05", "bytesECI": "f6e219d", "text": "https://beeline.co/pages/app", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-inv-1/slow-180.json b/tests/__snapshots__/qrcode-2/qr-inv-1/slow-180.json index 7bffb8c0..df86b580 100644 --- a/tests/__snapshots__/qrcode-2/qr-inv-1/slow-180.json +++ b/tests/__snapshots__/qrcode-2/qr-inv-1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0f32a05", "bytesECI": "f6e219d", "text": "https://beeline.co/pages/app", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-inv-1/slow-270.json b/tests/__snapshots__/qrcode-2/qr-inv-1/slow-270.json index c4a84c1b..6b67d5d6 100644 --- a/tests/__snapshots__/qrcode-2/qr-inv-1/slow-270.json +++ b/tests/__snapshots__/qrcode-2/qr-inv-1/slow-270.json @@ -5,7 +5,7 @@ "bytes": "0f32a05", "bytesECI": "f6e219d", "text": "https://beeline.co/pages/app", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-inv-1/slow-90.json b/tests/__snapshots__/qrcode-2/qr-inv-1/slow-90.json index 00a7da12..35791c95 100644 --- a/tests/__snapshots__/qrcode-2/qr-inv-1/slow-90.json +++ b/tests/__snapshots__/qrcode-2/qr-inv-1/slow-90.json @@ -5,7 +5,7 @@ "bytes": "0f32a05", "bytesECI": "f6e219d", "text": "https://beeline.co/pages/app", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-inv-2/pure-0.json b/tests/__snapshots__/qrcode-2/qr-inv-2/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-2/qr-inv-2/pure-0.json +++ b/tests/__snapshots__/qrcode-2/qr-inv-2/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-2/qr-inv-2/slow-0.json b/tests/__snapshots__/qrcode-2/qr-inv-2/slow-0.json index 3a163d15..8c994cc7 100644 --- a/tests/__snapshots__/qrcode-2/qr-inv-2/slow-0.json +++ b/tests/__snapshots__/qrcode-2/qr-inv-2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-inv-2/slow-180.json b/tests/__snapshots__/qrcode-2/qr-inv-2/slow-180.json index 9c1acfbe..7092564f 100644 --- a/tests/__snapshots__/qrcode-2/qr-inv-2/slow-180.json +++ b/tests/__snapshots__/qrcode-2/qr-inv-2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-inv-2/slow-270.json b/tests/__snapshots__/qrcode-2/qr-inv-2/slow-270.json index f6030c27..96c8c4e7 100644 --- a/tests/__snapshots__/qrcode-2/qr-inv-2/slow-270.json +++ b/tests/__snapshots__/qrcode-2/qr-inv-2/slow-270.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-inv-2/slow-90.json b/tests/__snapshots__/qrcode-2/qr-inv-2/slow-90.json index ec412c70..8ba9e2f1 100644 --- a/tests/__snapshots__/qrcode-2/qr-inv-2/slow-90.json +++ b/tests/__snapshots__/qrcode-2/qr-inv-2/slow-90.json @@ -5,7 +5,7 @@ "bytes": "89a2b52", "bytesECI": "f9cbabe", "text": "MEBKM:URL:http\\://en.wikipedia.org/wiki/Main_Page;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-model-1/fast-0.json b/tests/__snapshots__/qrcode-2/qr-model-1/fast-0.json index 48e85bd5..717c466d 100644 --- a/tests/__snapshots__/qrcode-2/qr-model-1/fast-0.json +++ b/tests/__snapshots__/qrcode-2/qr-model-1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "61c45c1", "bytesECI": "26cea35", "text": "QR Code Model 1 ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-model-1/fast-180.json b/tests/__snapshots__/qrcode-2/qr-model-1/fast-180.json index 6a0a52cc..ba7c7c06 100644 --- a/tests/__snapshots__/qrcode-2/qr-model-1/fast-180.json +++ b/tests/__snapshots__/qrcode-2/qr-model-1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "61c45c1", "bytesECI": "26cea35", "text": "QR Code Model 1 ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-model-1/fast-270.json b/tests/__snapshots__/qrcode-2/qr-model-1/fast-270.json index 47af6a91..409fe6b9 100644 --- a/tests/__snapshots__/qrcode-2/qr-model-1/fast-270.json +++ b/tests/__snapshots__/qrcode-2/qr-model-1/fast-270.json @@ -5,7 +5,7 @@ "bytes": "61c45c1", "bytesECI": "26cea35", "text": "QR Code Model 1 ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-model-1/fast-90.json b/tests/__snapshots__/qrcode-2/qr-model-1/fast-90.json index e2c64641..faa1f36e 100644 --- a/tests/__snapshots__/qrcode-2/qr-model-1/fast-90.json +++ b/tests/__snapshots__/qrcode-2/qr-model-1/fast-90.json @@ -5,7 +5,7 @@ "bytes": "61c45c1", "bytesECI": "26cea35", "text": "QR Code Model 1 ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-model-1/pure-0.json b/tests/__snapshots__/qrcode-2/qr-model-1/pure-0.json index b8f24f00..fe6b5308 100644 --- a/tests/__snapshots__/qrcode-2/qr-model-1/pure-0.json +++ b/tests/__snapshots__/qrcode-2/qr-model-1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "61c45c1", "bytesECI": "26cea35", "text": "QR Code Model 1 ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-model-1/slow-0.json b/tests/__snapshots__/qrcode-2/qr-model-1/slow-0.json index 48e85bd5..717c466d 100644 --- a/tests/__snapshots__/qrcode-2/qr-model-1/slow-0.json +++ b/tests/__snapshots__/qrcode-2/qr-model-1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "61c45c1", "bytesECI": "26cea35", "text": "QR Code Model 1 ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-model-1/slow-180.json b/tests/__snapshots__/qrcode-2/qr-model-1/slow-180.json index 6a0a52cc..ba7c7c06 100644 --- a/tests/__snapshots__/qrcode-2/qr-model-1/slow-180.json +++ b/tests/__snapshots__/qrcode-2/qr-model-1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "61c45c1", "bytesECI": "26cea35", "text": "QR Code Model 1 ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-model-1/slow-270.json b/tests/__snapshots__/qrcode-2/qr-model-1/slow-270.json index 47af6a91..409fe6b9 100644 --- a/tests/__snapshots__/qrcode-2/qr-model-1/slow-270.json +++ b/tests/__snapshots__/qrcode-2/qr-model-1/slow-270.json @@ -5,7 +5,7 @@ "bytes": "61c45c1", "bytesECI": "26cea35", "text": "QR Code Model 1 ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-2/qr-model-1/slow-90.json b/tests/__snapshots__/qrcode-2/qr-model-1/slow-90.json index e2c64641..faa1f36e 100644 --- a/tests/__snapshots__/qrcode-2/qr-model-1/slow-90.json +++ b/tests/__snapshots__/qrcode-2/qr-model-1/slow-90.json @@ -5,7 +5,7 @@ "bytes": "61c45c1", "bytesECI": "26cea35", "text": "QR Code Model 1 ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/01/fast-0.json b/tests/__snapshots__/qrcode-3/01/fast-0.json index 6e6f2b72..b0e5fcfc 100644 --- a/tests/__snapshots__/qrcode-3/01/fast-0.json +++ b/tests/__snapshots__/qrcode-3/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/01/fast-180.json b/tests/__snapshots__/qrcode-3/01/fast-180.json index 0416d58f..b2f7de0b 100644 --- a/tests/__snapshots__/qrcode-3/01/fast-180.json +++ b/tests/__snapshots__/qrcode-3/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/01/fast-270.json b/tests/__snapshots__/qrcode-3/01/fast-270.json index edb9ed16..9647574e 100644 --- a/tests/__snapshots__/qrcode-3/01/fast-270.json +++ b/tests/__snapshots__/qrcode-3/01/fast-270.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/01/fast-90.json b/tests/__snapshots__/qrcode-3/01/fast-90.json index 51cf4a88..cfe630b9 100644 --- a/tests/__snapshots__/qrcode-3/01/fast-90.json +++ b/tests/__snapshots__/qrcode-3/01/fast-90.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/01/slow-0.json b/tests/__snapshots__/qrcode-3/01/slow-0.json index 6e6f2b72..b0e5fcfc 100644 --- a/tests/__snapshots__/qrcode-3/01/slow-0.json +++ b/tests/__snapshots__/qrcode-3/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/01/slow-180.json b/tests/__snapshots__/qrcode-3/01/slow-180.json index 0416d58f..b2f7de0b 100644 --- a/tests/__snapshots__/qrcode-3/01/slow-180.json +++ b/tests/__snapshots__/qrcode-3/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/01/slow-270.json b/tests/__snapshots__/qrcode-3/01/slow-270.json index edb9ed16..9647574e 100644 --- a/tests/__snapshots__/qrcode-3/01/slow-270.json +++ b/tests/__snapshots__/qrcode-3/01/slow-270.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/01/slow-90.json b/tests/__snapshots__/qrcode-3/01/slow-90.json index 51cf4a88..cfe630b9 100644 --- a/tests/__snapshots__/qrcode-3/01/slow-90.json +++ b/tests/__snapshots__/qrcode-3/01/slow-90.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/03/fast-0.json b/tests/__snapshots__/qrcode-3/03/fast-0.json index 2ef4df5f..72ab1035 100644 --- a/tests/__snapshots__/qrcode-3/03/fast-0.json +++ b/tests/__snapshots__/qrcode-3/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/03/fast-180.json b/tests/__snapshots__/qrcode-3/03/fast-180.json index 98d86392..a6457161 100644 --- a/tests/__snapshots__/qrcode-3/03/fast-180.json +++ b/tests/__snapshots__/qrcode-3/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/03/fast-270.json b/tests/__snapshots__/qrcode-3/03/fast-270.json index e86e08ca..4ebdb25b 100644 --- a/tests/__snapshots__/qrcode-3/03/fast-270.json +++ b/tests/__snapshots__/qrcode-3/03/fast-270.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/03/fast-90.json b/tests/__snapshots__/qrcode-3/03/fast-90.json index f09ac045..a50eceba 100644 --- a/tests/__snapshots__/qrcode-3/03/fast-90.json +++ b/tests/__snapshots__/qrcode-3/03/fast-90.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/03/slow-0.json b/tests/__snapshots__/qrcode-3/03/slow-0.json index 2ef4df5f..72ab1035 100644 --- a/tests/__snapshots__/qrcode-3/03/slow-0.json +++ b/tests/__snapshots__/qrcode-3/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/03/slow-180.json b/tests/__snapshots__/qrcode-3/03/slow-180.json index 98d86392..a6457161 100644 --- a/tests/__snapshots__/qrcode-3/03/slow-180.json +++ b/tests/__snapshots__/qrcode-3/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/03/slow-270.json b/tests/__snapshots__/qrcode-3/03/slow-270.json index e86e08ca..4ebdb25b 100644 --- a/tests/__snapshots__/qrcode-3/03/slow-270.json +++ b/tests/__snapshots__/qrcode-3/03/slow-270.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/03/slow-90.json b/tests/__snapshots__/qrcode-3/03/slow-90.json index f09ac045..a50eceba 100644 --- a/tests/__snapshots__/qrcode-3/03/slow-90.json +++ b/tests/__snapshots__/qrcode-3/03/slow-90.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/04/fast-0.json b/tests/__snapshots__/qrcode-3/04/fast-0.json index 2895b7e0..f1ce8e72 100644 --- a/tests/__snapshots__/qrcode-3/04/fast-0.json +++ b/tests/__snapshots__/qrcode-3/04/fast-0.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/04/fast-180.json b/tests/__snapshots__/qrcode-3/04/fast-180.json index ad62322d..4286c551 100644 --- a/tests/__snapshots__/qrcode-3/04/fast-180.json +++ b/tests/__snapshots__/qrcode-3/04/fast-180.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/04/fast-270.json b/tests/__snapshots__/qrcode-3/04/fast-270.json index 20c66930..09440c23 100644 --- a/tests/__snapshots__/qrcode-3/04/fast-270.json +++ b/tests/__snapshots__/qrcode-3/04/fast-270.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/04/fast-90.json b/tests/__snapshots__/qrcode-3/04/fast-90.json index 0fb201dc..ff3f6b61 100644 --- a/tests/__snapshots__/qrcode-3/04/fast-90.json +++ b/tests/__snapshots__/qrcode-3/04/fast-90.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/04/slow-0.json b/tests/__snapshots__/qrcode-3/04/slow-0.json index 2895b7e0..f1ce8e72 100644 --- a/tests/__snapshots__/qrcode-3/04/slow-0.json +++ b/tests/__snapshots__/qrcode-3/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/04/slow-180.json b/tests/__snapshots__/qrcode-3/04/slow-180.json index ad62322d..4286c551 100644 --- a/tests/__snapshots__/qrcode-3/04/slow-180.json +++ b/tests/__snapshots__/qrcode-3/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/04/slow-270.json b/tests/__snapshots__/qrcode-3/04/slow-270.json index 20c66930..09440c23 100644 --- a/tests/__snapshots__/qrcode-3/04/slow-270.json +++ b/tests/__snapshots__/qrcode-3/04/slow-270.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/04/slow-90.json b/tests/__snapshots__/qrcode-3/04/slow-90.json index 0fb201dc..ff3f6b61 100644 --- a/tests/__snapshots__/qrcode-3/04/slow-90.json +++ b/tests/__snapshots__/qrcode-3/04/slow-90.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/05/fast-0.json b/tests/__snapshots__/qrcode-3/05/fast-0.json index 79504057..d446f2a0 100644 --- a/tests/__snapshots__/qrcode-3/05/fast-0.json +++ b/tests/__snapshots__/qrcode-3/05/fast-0.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/05/fast-180.json b/tests/__snapshots__/qrcode-3/05/fast-180.json index 5ba629e2..82e363a5 100644 --- a/tests/__snapshots__/qrcode-3/05/fast-180.json +++ b/tests/__snapshots__/qrcode-3/05/fast-180.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/05/fast-270.json b/tests/__snapshots__/qrcode-3/05/fast-270.json index 13ef7a61..b830604c 100644 --- a/tests/__snapshots__/qrcode-3/05/fast-270.json +++ b/tests/__snapshots__/qrcode-3/05/fast-270.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/05/fast-90.json b/tests/__snapshots__/qrcode-3/05/fast-90.json index 917e1035..8cf57ea8 100644 --- a/tests/__snapshots__/qrcode-3/05/fast-90.json +++ b/tests/__snapshots__/qrcode-3/05/fast-90.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/05/slow-0.json b/tests/__snapshots__/qrcode-3/05/slow-0.json index 79504057..d446f2a0 100644 --- a/tests/__snapshots__/qrcode-3/05/slow-0.json +++ b/tests/__snapshots__/qrcode-3/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/05/slow-180.json b/tests/__snapshots__/qrcode-3/05/slow-180.json index 5ba629e2..82e363a5 100644 --- a/tests/__snapshots__/qrcode-3/05/slow-180.json +++ b/tests/__snapshots__/qrcode-3/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/05/slow-270.json b/tests/__snapshots__/qrcode-3/05/slow-270.json index 13ef7a61..b830604c 100644 --- a/tests/__snapshots__/qrcode-3/05/slow-270.json +++ b/tests/__snapshots__/qrcode-3/05/slow-270.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/05/slow-90.json b/tests/__snapshots__/qrcode-3/05/slow-90.json index 917e1035..8cf57ea8 100644 --- a/tests/__snapshots__/qrcode-3/05/slow-90.json +++ b/tests/__snapshots__/qrcode-3/05/slow-90.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/07/fast-0.json b/tests/__snapshots__/qrcode-3/07/fast-0.json index fbaa43d8..b224ae9b 100644 --- a/tests/__snapshots__/qrcode-3/07/fast-0.json +++ b/tests/__snapshots__/qrcode-3/07/fast-0.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/07/fast-180.json b/tests/__snapshots__/qrcode-3/07/fast-180.json index af124ee3..b21e3f2b 100644 --- a/tests/__snapshots__/qrcode-3/07/fast-180.json +++ b/tests/__snapshots__/qrcode-3/07/fast-180.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/07/fast-270.json b/tests/__snapshots__/qrcode-3/07/fast-270.json index 2a431d30..778540f7 100644 --- a/tests/__snapshots__/qrcode-3/07/fast-270.json +++ b/tests/__snapshots__/qrcode-3/07/fast-270.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/07/fast-90.json b/tests/__snapshots__/qrcode-3/07/fast-90.json index 033c3c75..f1899097 100644 --- a/tests/__snapshots__/qrcode-3/07/fast-90.json +++ b/tests/__snapshots__/qrcode-3/07/fast-90.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/07/slow-0.json b/tests/__snapshots__/qrcode-3/07/slow-0.json index fbaa43d8..b224ae9b 100644 --- a/tests/__snapshots__/qrcode-3/07/slow-0.json +++ b/tests/__snapshots__/qrcode-3/07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/07/slow-180.json b/tests/__snapshots__/qrcode-3/07/slow-180.json index af124ee3..b21e3f2b 100644 --- a/tests/__snapshots__/qrcode-3/07/slow-180.json +++ b/tests/__snapshots__/qrcode-3/07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/07/slow-270.json b/tests/__snapshots__/qrcode-3/07/slow-270.json index 2a431d30..778540f7 100644 --- a/tests/__snapshots__/qrcode-3/07/slow-270.json +++ b/tests/__snapshots__/qrcode-3/07/slow-270.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/07/slow-90.json b/tests/__snapshots__/qrcode-3/07/slow-90.json index 033c3c75..f1899097 100644 --- a/tests/__snapshots__/qrcode-3/07/slow-90.json +++ b/tests/__snapshots__/qrcode-3/07/slow-90.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/09/fast-0.json b/tests/__snapshots__/qrcode-3/09/fast-0.json index f748b4d1..79ea2dbf 100644 --- a/tests/__snapshots__/qrcode-3/09/fast-0.json +++ b/tests/__snapshots__/qrcode-3/09/fast-0.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/09/fast-180.json b/tests/__snapshots__/qrcode-3/09/fast-180.json index 2870857f..ec5cac0d 100644 --- a/tests/__snapshots__/qrcode-3/09/fast-180.json +++ b/tests/__snapshots__/qrcode-3/09/fast-180.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/09/fast-270.json b/tests/__snapshots__/qrcode-3/09/fast-270.json index bc7a0354..38d0d773 100644 --- a/tests/__snapshots__/qrcode-3/09/fast-270.json +++ b/tests/__snapshots__/qrcode-3/09/fast-270.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/09/fast-90.json b/tests/__snapshots__/qrcode-3/09/fast-90.json index 241c33d6..c2290c63 100644 --- a/tests/__snapshots__/qrcode-3/09/fast-90.json +++ b/tests/__snapshots__/qrcode-3/09/fast-90.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/09/slow-0.json b/tests/__snapshots__/qrcode-3/09/slow-0.json index f748b4d1..79ea2dbf 100644 --- a/tests/__snapshots__/qrcode-3/09/slow-0.json +++ b/tests/__snapshots__/qrcode-3/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/09/slow-180.json b/tests/__snapshots__/qrcode-3/09/slow-180.json index 2870857f..ec5cac0d 100644 --- a/tests/__snapshots__/qrcode-3/09/slow-180.json +++ b/tests/__snapshots__/qrcode-3/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/09/slow-270.json b/tests/__snapshots__/qrcode-3/09/slow-270.json index bc7a0354..38d0d773 100644 --- a/tests/__snapshots__/qrcode-3/09/slow-270.json +++ b/tests/__snapshots__/qrcode-3/09/slow-270.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/09/slow-90.json b/tests/__snapshots__/qrcode-3/09/slow-90.json index 241c33d6..c2290c63 100644 --- a/tests/__snapshots__/qrcode-3/09/slow-90.json +++ b/tests/__snapshots__/qrcode-3/09/slow-90.json @@ -5,7 +5,7 @@ "bytes": "abc48e3", "bytesECI": "24d25e1", "text": "http://arnaud.sahuguet.com/graffiti/test.php?ll=-74.00309961503218,40.74102573163046,0", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "6" + "version": "6", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/10/fast-0.json b/tests/__snapshots__/qrcode-3/10/fast-0.json index ed20cfb9..f3ceecaf 100644 --- a/tests/__snapshots__/qrcode-3/10/fast-0.json +++ b/tests/__snapshots__/qrcode-3/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/10/fast-180.json b/tests/__snapshots__/qrcode-3/10/fast-180.json index 1c8bf217..bc127393 100644 --- a/tests/__snapshots__/qrcode-3/10/fast-180.json +++ b/tests/__snapshots__/qrcode-3/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/10/fast-270.json b/tests/__snapshots__/qrcode-3/10/fast-270.json index cb83ef56..166e969f 100644 --- a/tests/__snapshots__/qrcode-3/10/fast-270.json +++ b/tests/__snapshots__/qrcode-3/10/fast-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/10/fast-90.json b/tests/__snapshots__/qrcode-3/10/fast-90.json index e73cfd67..7b34136c 100644 --- a/tests/__snapshots__/qrcode-3/10/fast-90.json +++ b/tests/__snapshots__/qrcode-3/10/fast-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/10/slow-0.json b/tests/__snapshots__/qrcode-3/10/slow-0.json index ed20cfb9..f3ceecaf 100644 --- a/tests/__snapshots__/qrcode-3/10/slow-0.json +++ b/tests/__snapshots__/qrcode-3/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/10/slow-180.json b/tests/__snapshots__/qrcode-3/10/slow-180.json index 1c8bf217..bc127393 100644 --- a/tests/__snapshots__/qrcode-3/10/slow-180.json +++ b/tests/__snapshots__/qrcode-3/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/10/slow-270.json b/tests/__snapshots__/qrcode-3/10/slow-270.json index cb83ef56..166e969f 100644 --- a/tests/__snapshots__/qrcode-3/10/slow-270.json +++ b/tests/__snapshots__/qrcode-3/10/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/10/slow-90.json b/tests/__snapshots__/qrcode-3/10/slow-90.json index e73cfd67..7b34136c 100644 --- a/tests/__snapshots__/qrcode-3/10/slow-90.json +++ b/tests/__snapshots__/qrcode-3/10/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/11/fast-0.json b/tests/__snapshots__/qrcode-3/11/fast-0.json index 7df6f099..d2a0b4a1 100644 --- a/tests/__snapshots__/qrcode-3/11/fast-0.json +++ b/tests/__snapshots__/qrcode-3/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/11/fast-180.json b/tests/__snapshots__/qrcode-3/11/fast-180.json index 77c829de..4cec0e11 100644 --- a/tests/__snapshots__/qrcode-3/11/fast-180.json +++ b/tests/__snapshots__/qrcode-3/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/11/fast-270.json b/tests/__snapshots__/qrcode-3/11/fast-270.json index 899d1008..2ac24dda 100644 --- a/tests/__snapshots__/qrcode-3/11/fast-270.json +++ b/tests/__snapshots__/qrcode-3/11/fast-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/11/fast-90.json b/tests/__snapshots__/qrcode-3/11/fast-90.json index 6f4eb7ce..3a002507 100644 --- a/tests/__snapshots__/qrcode-3/11/fast-90.json +++ b/tests/__snapshots__/qrcode-3/11/fast-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/11/slow-0.json b/tests/__snapshots__/qrcode-3/11/slow-0.json index 7df6f099..d2a0b4a1 100644 --- a/tests/__snapshots__/qrcode-3/11/slow-0.json +++ b/tests/__snapshots__/qrcode-3/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/11/slow-180.json b/tests/__snapshots__/qrcode-3/11/slow-180.json index 77c829de..4cec0e11 100644 --- a/tests/__snapshots__/qrcode-3/11/slow-180.json +++ b/tests/__snapshots__/qrcode-3/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/11/slow-270.json b/tests/__snapshots__/qrcode-3/11/slow-270.json index 899d1008..2ac24dda 100644 --- a/tests/__snapshots__/qrcode-3/11/slow-270.json +++ b/tests/__snapshots__/qrcode-3/11/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/11/slow-90.json b/tests/__snapshots__/qrcode-3/11/slow-90.json index 6f4eb7ce..3a002507 100644 --- a/tests/__snapshots__/qrcode-3/11/slow-90.json +++ b/tests/__snapshots__/qrcode-3/11/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/13/fast-0.json b/tests/__snapshots__/qrcode-3/13/fast-0.json index 5a35d2f8..bad5b891 100644 --- a/tests/__snapshots__/qrcode-3/13/fast-0.json +++ b/tests/__snapshots__/qrcode-3/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/13/fast-180.json b/tests/__snapshots__/qrcode-3/13/fast-180.json index f87e3a18..ae49a1b1 100644 --- a/tests/__snapshots__/qrcode-3/13/fast-180.json +++ b/tests/__snapshots__/qrcode-3/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/13/fast-270.json b/tests/__snapshots__/qrcode-3/13/fast-270.json index e5246859..998b9db5 100644 --- a/tests/__snapshots__/qrcode-3/13/fast-270.json +++ b/tests/__snapshots__/qrcode-3/13/fast-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/13/fast-90.json b/tests/__snapshots__/qrcode-3/13/fast-90.json index 2d952760..b07237f7 100644 --- a/tests/__snapshots__/qrcode-3/13/fast-90.json +++ b/tests/__snapshots__/qrcode-3/13/fast-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/13/slow-0.json b/tests/__snapshots__/qrcode-3/13/slow-0.json index 5a35d2f8..bad5b891 100644 --- a/tests/__snapshots__/qrcode-3/13/slow-0.json +++ b/tests/__snapshots__/qrcode-3/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/13/slow-180.json b/tests/__snapshots__/qrcode-3/13/slow-180.json index f87e3a18..ae49a1b1 100644 --- a/tests/__snapshots__/qrcode-3/13/slow-180.json +++ b/tests/__snapshots__/qrcode-3/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/13/slow-270.json b/tests/__snapshots__/qrcode-3/13/slow-270.json index e5246859..998b9db5 100644 --- a/tests/__snapshots__/qrcode-3/13/slow-270.json +++ b/tests/__snapshots__/qrcode-3/13/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/13/slow-90.json b/tests/__snapshots__/qrcode-3/13/slow-90.json index 2d952760..b07237f7 100644 --- a/tests/__snapshots__/qrcode-3/13/slow-90.json +++ b/tests/__snapshots__/qrcode-3/13/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/14/fast-0.json b/tests/__snapshots__/qrcode-3/14/fast-0.json index 59a7e1b6..9e694a43 100644 --- a/tests/__snapshots__/qrcode-3/14/fast-0.json +++ b/tests/__snapshots__/qrcode-3/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/14/fast-180.json b/tests/__snapshots__/qrcode-3/14/fast-180.json index 69849737..9e5909fc 100644 --- a/tests/__snapshots__/qrcode-3/14/fast-180.json +++ b/tests/__snapshots__/qrcode-3/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/14/fast-270.json b/tests/__snapshots__/qrcode-3/14/fast-270.json index 065e0fe6..5e70f9be 100644 --- a/tests/__snapshots__/qrcode-3/14/fast-270.json +++ b/tests/__snapshots__/qrcode-3/14/fast-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/14/fast-90.json b/tests/__snapshots__/qrcode-3/14/fast-90.json index 0cb0fa98..2209b45a 100644 --- a/tests/__snapshots__/qrcode-3/14/fast-90.json +++ b/tests/__snapshots__/qrcode-3/14/fast-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/14/slow-0.json b/tests/__snapshots__/qrcode-3/14/slow-0.json index 59a7e1b6..9e694a43 100644 --- a/tests/__snapshots__/qrcode-3/14/slow-0.json +++ b/tests/__snapshots__/qrcode-3/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/14/slow-180.json b/tests/__snapshots__/qrcode-3/14/slow-180.json index 69849737..9e5909fc 100644 --- a/tests/__snapshots__/qrcode-3/14/slow-180.json +++ b/tests/__snapshots__/qrcode-3/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/14/slow-270.json b/tests/__snapshots__/qrcode-3/14/slow-270.json index 065e0fe6..5e70f9be 100644 --- a/tests/__snapshots__/qrcode-3/14/slow-270.json +++ b/tests/__snapshots__/qrcode-3/14/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/14/slow-90.json b/tests/__snapshots__/qrcode-3/14/slow-90.json index 0cb0fa98..2209b45a 100644 --- a/tests/__snapshots__/qrcode-3/14/slow-90.json +++ b/tests/__snapshots__/qrcode-3/14/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/15/fast-0.json b/tests/__snapshots__/qrcode-3/15/fast-0.json index 299e51fb..ce87223e 100644 --- a/tests/__snapshots__/qrcode-3/15/fast-0.json +++ b/tests/__snapshots__/qrcode-3/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/15/fast-180.json b/tests/__snapshots__/qrcode-3/15/fast-180.json index bffa09db..a94af11a 100644 --- a/tests/__snapshots__/qrcode-3/15/fast-180.json +++ b/tests/__snapshots__/qrcode-3/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/15/fast-270.json b/tests/__snapshots__/qrcode-3/15/fast-270.json index 94264834..6f015263 100644 --- a/tests/__snapshots__/qrcode-3/15/fast-270.json +++ b/tests/__snapshots__/qrcode-3/15/fast-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/15/fast-90.json b/tests/__snapshots__/qrcode-3/15/fast-90.json index db65abb5..dc42d62c 100644 --- a/tests/__snapshots__/qrcode-3/15/fast-90.json +++ b/tests/__snapshots__/qrcode-3/15/fast-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/15/slow-0.json b/tests/__snapshots__/qrcode-3/15/slow-0.json index 299e51fb..ce87223e 100644 --- a/tests/__snapshots__/qrcode-3/15/slow-0.json +++ b/tests/__snapshots__/qrcode-3/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/15/slow-180.json b/tests/__snapshots__/qrcode-3/15/slow-180.json index bffa09db..a94af11a 100644 --- a/tests/__snapshots__/qrcode-3/15/slow-180.json +++ b/tests/__snapshots__/qrcode-3/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/15/slow-270.json b/tests/__snapshots__/qrcode-3/15/slow-270.json index 94264834..6f015263 100644 --- a/tests/__snapshots__/qrcode-3/15/slow-270.json +++ b/tests/__snapshots__/qrcode-3/15/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/15/slow-90.json b/tests/__snapshots__/qrcode-3/15/slow-90.json index db65abb5..dc42d62c 100644 --- a/tests/__snapshots__/qrcode-3/15/slow-90.json +++ b/tests/__snapshots__/qrcode-3/15/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/16/fast-0.json b/tests/__snapshots__/qrcode-3/16/fast-0.json index 2de1b5d7..03076336 100644 --- a/tests/__snapshots__/qrcode-3/16/fast-0.json +++ b/tests/__snapshots__/qrcode-3/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/16/fast-180.json b/tests/__snapshots__/qrcode-3/16/fast-180.json index ca4fe91c..efb8ca21 100644 --- a/tests/__snapshots__/qrcode-3/16/fast-180.json +++ b/tests/__snapshots__/qrcode-3/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/16/fast-270.json b/tests/__snapshots__/qrcode-3/16/fast-270.json index ae2445ba..f5192d9a 100644 --- a/tests/__snapshots__/qrcode-3/16/fast-270.json +++ b/tests/__snapshots__/qrcode-3/16/fast-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/16/fast-90.json b/tests/__snapshots__/qrcode-3/16/fast-90.json index cb435e67..206f6d5c 100644 --- a/tests/__snapshots__/qrcode-3/16/fast-90.json +++ b/tests/__snapshots__/qrcode-3/16/fast-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/16/slow-0.json b/tests/__snapshots__/qrcode-3/16/slow-0.json index 2de1b5d7..03076336 100644 --- a/tests/__snapshots__/qrcode-3/16/slow-0.json +++ b/tests/__snapshots__/qrcode-3/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/16/slow-180.json b/tests/__snapshots__/qrcode-3/16/slow-180.json index ca4fe91c..efb8ca21 100644 --- a/tests/__snapshots__/qrcode-3/16/slow-180.json +++ b/tests/__snapshots__/qrcode-3/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/16/slow-270.json b/tests/__snapshots__/qrcode-3/16/slow-270.json index ae2445ba..f5192d9a 100644 --- a/tests/__snapshots__/qrcode-3/16/slow-270.json +++ b/tests/__snapshots__/qrcode-3/16/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/16/slow-90.json b/tests/__snapshots__/qrcode-3/16/slow-90.json index cb435e67..206f6d5c 100644 --- a/tests/__snapshots__/qrcode-3/16/slow-90.json +++ b/tests/__snapshots__/qrcode-3/16/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/17/fast-0.json b/tests/__snapshots__/qrcode-3/17/fast-0.json index 1a330fc6..98116bca 100644 --- a/tests/__snapshots__/qrcode-3/17/fast-0.json +++ b/tests/__snapshots__/qrcode-3/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/17/fast-180.json b/tests/__snapshots__/qrcode-3/17/fast-180.json index 606ffc44..762f7181 100644 --- a/tests/__snapshots__/qrcode-3/17/fast-180.json +++ b/tests/__snapshots__/qrcode-3/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/17/fast-270.json b/tests/__snapshots__/qrcode-3/17/fast-270.json index 6fc135b0..58cc4a44 100644 --- a/tests/__snapshots__/qrcode-3/17/fast-270.json +++ b/tests/__snapshots__/qrcode-3/17/fast-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/17/fast-90.json b/tests/__snapshots__/qrcode-3/17/fast-90.json index ff57452a..4d1882ea 100644 --- a/tests/__snapshots__/qrcode-3/17/fast-90.json +++ b/tests/__snapshots__/qrcode-3/17/fast-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/17/slow-0.json b/tests/__snapshots__/qrcode-3/17/slow-0.json index 1a330fc6..98116bca 100644 --- a/tests/__snapshots__/qrcode-3/17/slow-0.json +++ b/tests/__snapshots__/qrcode-3/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/17/slow-180.json b/tests/__snapshots__/qrcode-3/17/slow-180.json index 606ffc44..762f7181 100644 --- a/tests/__snapshots__/qrcode-3/17/slow-180.json +++ b/tests/__snapshots__/qrcode-3/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/17/slow-270.json b/tests/__snapshots__/qrcode-3/17/slow-270.json index 6fc135b0..58cc4a44 100644 --- a/tests/__snapshots__/qrcode-3/17/slow-270.json +++ b/tests/__snapshots__/qrcode-3/17/slow-270.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/17/slow-90.json b/tests/__snapshots__/qrcode-3/17/slow-90.json index ff57452a..4d1882ea 100644 --- a/tests/__snapshots__/qrcode-3/17/slow-90.json +++ b/tests/__snapshots__/qrcode-3/17/slow-90.json @@ -5,7 +5,7 @@ "bytes": "a4f962e", "bytesECI": "2aefaa7", "text": "MECARD:N:Google 411,;TEL:18665881077;;", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-3/18/fast-0.json b/tests/__snapshots__/qrcode-3/18/fast-0.json index 7b998285..2cc4338b 100644 --- a/tests/__snapshots__/qrcode-3/18/fast-0.json +++ b/tests/__snapshots__/qrcode-3/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/18/fast-180.json b/tests/__snapshots__/qrcode-3/18/fast-180.json index f5041248..56fd7ee2 100644 --- a/tests/__snapshots__/qrcode-3/18/fast-180.json +++ b/tests/__snapshots__/qrcode-3/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/18/fast-270.json b/tests/__snapshots__/qrcode-3/18/fast-270.json index 4ca95675..2d4b116e 100644 --- a/tests/__snapshots__/qrcode-3/18/fast-270.json +++ b/tests/__snapshots__/qrcode-3/18/fast-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/18/fast-90.json b/tests/__snapshots__/qrcode-3/18/fast-90.json index 3e6ddbc1..4dc14f94 100644 --- a/tests/__snapshots__/qrcode-3/18/fast-90.json +++ b/tests/__snapshots__/qrcode-3/18/fast-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/18/slow-0.json b/tests/__snapshots__/qrcode-3/18/slow-0.json index 7b998285..2cc4338b 100644 --- a/tests/__snapshots__/qrcode-3/18/slow-0.json +++ b/tests/__snapshots__/qrcode-3/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/18/slow-180.json b/tests/__snapshots__/qrcode-3/18/slow-180.json index f5041248..56fd7ee2 100644 --- a/tests/__snapshots__/qrcode-3/18/slow-180.json +++ b/tests/__snapshots__/qrcode-3/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/18/slow-270.json b/tests/__snapshots__/qrcode-3/18/slow-270.json index 4ca95675..2d4b116e 100644 --- a/tests/__snapshots__/qrcode-3/18/slow-270.json +++ b/tests/__snapshots__/qrcode-3/18/slow-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/18/slow-90.json b/tests/__snapshots__/qrcode-3/18/slow-90.json index 3e6ddbc1..4dc14f94 100644 --- a/tests/__snapshots__/qrcode-3/18/slow-90.json +++ b/tests/__snapshots__/qrcode-3/18/slow-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/19/fast-0.json b/tests/__snapshots__/qrcode-3/19/fast-0.json index 033ed114..8e4fb101 100644 --- a/tests/__snapshots__/qrcode-3/19/fast-0.json +++ b/tests/__snapshots__/qrcode-3/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/19/fast-180.json b/tests/__snapshots__/qrcode-3/19/fast-180.json index b4f2f3e8..1474d008 100644 --- a/tests/__snapshots__/qrcode-3/19/fast-180.json +++ b/tests/__snapshots__/qrcode-3/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/19/fast-270.json b/tests/__snapshots__/qrcode-3/19/fast-270.json index a8d97667..f63f62b0 100644 --- a/tests/__snapshots__/qrcode-3/19/fast-270.json +++ b/tests/__snapshots__/qrcode-3/19/fast-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/19/fast-90.json b/tests/__snapshots__/qrcode-3/19/fast-90.json index b33ce009..207dbf59 100644 --- a/tests/__snapshots__/qrcode-3/19/fast-90.json +++ b/tests/__snapshots__/qrcode-3/19/fast-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/19/slow-0.json b/tests/__snapshots__/qrcode-3/19/slow-0.json index 033ed114..8e4fb101 100644 --- a/tests/__snapshots__/qrcode-3/19/slow-0.json +++ b/tests/__snapshots__/qrcode-3/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/19/slow-180.json b/tests/__snapshots__/qrcode-3/19/slow-180.json index b4f2f3e8..1474d008 100644 --- a/tests/__snapshots__/qrcode-3/19/slow-180.json +++ b/tests/__snapshots__/qrcode-3/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/19/slow-270.json b/tests/__snapshots__/qrcode-3/19/slow-270.json index a8d97667..f63f62b0 100644 --- a/tests/__snapshots__/qrcode-3/19/slow-270.json +++ b/tests/__snapshots__/qrcode-3/19/slow-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/19/slow-90.json b/tests/__snapshots__/qrcode-3/19/slow-90.json index b33ce009..207dbf59 100644 --- a/tests/__snapshots__/qrcode-3/19/slow-90.json +++ b/tests/__snapshots__/qrcode-3/19/slow-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/21/fast-0.json b/tests/__snapshots__/qrcode-3/21/fast-0.json index 1d02a6bc..aa0307d3 100644 --- a/tests/__snapshots__/qrcode-3/21/fast-0.json +++ b/tests/__snapshots__/qrcode-3/21/fast-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/21/fast-180.json b/tests/__snapshots__/qrcode-3/21/fast-180.json index ea5a4bbb..cf8219c5 100644 --- a/tests/__snapshots__/qrcode-3/21/fast-180.json +++ b/tests/__snapshots__/qrcode-3/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/21/fast-270.json b/tests/__snapshots__/qrcode-3/21/fast-270.json index 7967fed0..e7b31f89 100644 --- a/tests/__snapshots__/qrcode-3/21/fast-270.json +++ b/tests/__snapshots__/qrcode-3/21/fast-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/21/fast-90.json b/tests/__snapshots__/qrcode-3/21/fast-90.json index 9a33ba45..4d1e3a28 100644 --- a/tests/__snapshots__/qrcode-3/21/fast-90.json +++ b/tests/__snapshots__/qrcode-3/21/fast-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/21/slow-0.json b/tests/__snapshots__/qrcode-3/21/slow-0.json index 1d02a6bc..aa0307d3 100644 --- a/tests/__snapshots__/qrcode-3/21/slow-0.json +++ b/tests/__snapshots__/qrcode-3/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/21/slow-180.json b/tests/__snapshots__/qrcode-3/21/slow-180.json index ea5a4bbb..cf8219c5 100644 --- a/tests/__snapshots__/qrcode-3/21/slow-180.json +++ b/tests/__snapshots__/qrcode-3/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/21/slow-270.json b/tests/__snapshots__/qrcode-3/21/slow-270.json index 7967fed0..e7b31f89 100644 --- a/tests/__snapshots__/qrcode-3/21/slow-270.json +++ b/tests/__snapshots__/qrcode-3/21/slow-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/21/slow-90.json b/tests/__snapshots__/qrcode-3/21/slow-90.json index 9a33ba45..4d1e3a28 100644 --- a/tests/__snapshots__/qrcode-3/21/slow-90.json +++ b/tests/__snapshots__/qrcode-3/21/slow-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/22/fast-0.json b/tests/__snapshots__/qrcode-3/22/fast-0.json index c48a9e31..eaf28e57 100644 --- a/tests/__snapshots__/qrcode-3/22/fast-0.json +++ b/tests/__snapshots__/qrcode-3/22/fast-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/22/fast-180.json b/tests/__snapshots__/qrcode-3/22/fast-180.json index fa3da895..9159b3a5 100644 --- a/tests/__snapshots__/qrcode-3/22/fast-180.json +++ b/tests/__snapshots__/qrcode-3/22/fast-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/22/fast-270.json b/tests/__snapshots__/qrcode-3/22/fast-270.json index c51137ef..327e9868 100644 --- a/tests/__snapshots__/qrcode-3/22/fast-270.json +++ b/tests/__snapshots__/qrcode-3/22/fast-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/22/fast-90.json b/tests/__snapshots__/qrcode-3/22/fast-90.json index 7f319f43..53c4f653 100644 --- a/tests/__snapshots__/qrcode-3/22/fast-90.json +++ b/tests/__snapshots__/qrcode-3/22/fast-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/22/slow-0.json b/tests/__snapshots__/qrcode-3/22/slow-0.json index c48a9e31..eaf28e57 100644 --- a/tests/__snapshots__/qrcode-3/22/slow-0.json +++ b/tests/__snapshots__/qrcode-3/22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/22/slow-180.json b/tests/__snapshots__/qrcode-3/22/slow-180.json index fa3da895..9159b3a5 100644 --- a/tests/__snapshots__/qrcode-3/22/slow-180.json +++ b/tests/__snapshots__/qrcode-3/22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/22/slow-270.json b/tests/__snapshots__/qrcode-3/22/slow-270.json index c51137ef..327e9868 100644 --- a/tests/__snapshots__/qrcode-3/22/slow-270.json +++ b/tests/__snapshots__/qrcode-3/22/slow-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/22/slow-90.json b/tests/__snapshots__/qrcode-3/22/slow-90.json index 7f319f43..53c4f653 100644 --- a/tests/__snapshots__/qrcode-3/22/slow-90.json +++ b/tests/__snapshots__/qrcode-3/22/slow-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/23/fast-0.json b/tests/__snapshots__/qrcode-3/23/fast-0.json index 001f28b4..c895b3ef 100644 --- a/tests/__snapshots__/qrcode-3/23/fast-0.json +++ b/tests/__snapshots__/qrcode-3/23/fast-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/23/fast-180.json b/tests/__snapshots__/qrcode-3/23/fast-180.json index 38303a4b..e7e0649f 100644 --- a/tests/__snapshots__/qrcode-3/23/fast-180.json +++ b/tests/__snapshots__/qrcode-3/23/fast-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/23/fast-270.json b/tests/__snapshots__/qrcode-3/23/fast-270.json index ba92be3f..bd886730 100644 --- a/tests/__snapshots__/qrcode-3/23/fast-270.json +++ b/tests/__snapshots__/qrcode-3/23/fast-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/23/fast-90.json b/tests/__snapshots__/qrcode-3/23/fast-90.json index b2d26785..1f52927c 100644 --- a/tests/__snapshots__/qrcode-3/23/fast-90.json +++ b/tests/__snapshots__/qrcode-3/23/fast-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/23/slow-0.json b/tests/__snapshots__/qrcode-3/23/slow-0.json index 001f28b4..c895b3ef 100644 --- a/tests/__snapshots__/qrcode-3/23/slow-0.json +++ b/tests/__snapshots__/qrcode-3/23/slow-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/23/slow-180.json b/tests/__snapshots__/qrcode-3/23/slow-180.json index 38303a4b..e7e0649f 100644 --- a/tests/__snapshots__/qrcode-3/23/slow-180.json +++ b/tests/__snapshots__/qrcode-3/23/slow-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/23/slow-270.json b/tests/__snapshots__/qrcode-3/23/slow-270.json index ba92be3f..bd886730 100644 --- a/tests/__snapshots__/qrcode-3/23/slow-270.json +++ b/tests/__snapshots__/qrcode-3/23/slow-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/23/slow-90.json b/tests/__snapshots__/qrcode-3/23/slow-90.json index b2d26785..1f52927c 100644 --- a/tests/__snapshots__/qrcode-3/23/slow-90.json +++ b/tests/__snapshots__/qrcode-3/23/slow-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/24/fast-0.json b/tests/__snapshots__/qrcode-3/24/fast-0.json index 46ad5ca3..b4b08949 100644 --- a/tests/__snapshots__/qrcode-3/24/fast-0.json +++ b/tests/__snapshots__/qrcode-3/24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/24/fast-180.json b/tests/__snapshots__/qrcode-3/24/fast-180.json index 3c0daea7..95e878c0 100644 --- a/tests/__snapshots__/qrcode-3/24/fast-180.json +++ b/tests/__snapshots__/qrcode-3/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/24/fast-270.json b/tests/__snapshots__/qrcode-3/24/fast-270.json index 221b9a2f..5c693ca2 100644 --- a/tests/__snapshots__/qrcode-3/24/fast-270.json +++ b/tests/__snapshots__/qrcode-3/24/fast-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/24/fast-90.json b/tests/__snapshots__/qrcode-3/24/fast-90.json index df679e92..78b62004 100644 --- a/tests/__snapshots__/qrcode-3/24/fast-90.json +++ b/tests/__snapshots__/qrcode-3/24/fast-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/24/slow-0.json b/tests/__snapshots__/qrcode-3/24/slow-0.json index 46ad5ca3..b4b08949 100644 --- a/tests/__snapshots__/qrcode-3/24/slow-0.json +++ b/tests/__snapshots__/qrcode-3/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/24/slow-180.json b/tests/__snapshots__/qrcode-3/24/slow-180.json index 3c0daea7..95e878c0 100644 --- a/tests/__snapshots__/qrcode-3/24/slow-180.json +++ b/tests/__snapshots__/qrcode-3/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/24/slow-270.json b/tests/__snapshots__/qrcode-3/24/slow-270.json index 221b9a2f..5c693ca2 100644 --- a/tests/__snapshots__/qrcode-3/24/slow-270.json +++ b/tests/__snapshots__/qrcode-3/24/slow-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/24/slow-90.json b/tests/__snapshots__/qrcode-3/24/slow-90.json index df679e92..78b62004 100644 --- a/tests/__snapshots__/qrcode-3/24/slow-90.json +++ b/tests/__snapshots__/qrcode-3/24/slow-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/25/fast-0.json b/tests/__snapshots__/qrcode-3/25/fast-0.json index 85259728..b8cd52b0 100644 --- a/tests/__snapshots__/qrcode-3/25/fast-0.json +++ b/tests/__snapshots__/qrcode-3/25/fast-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/25/fast-180.json b/tests/__snapshots__/qrcode-3/25/fast-180.json index b138d851..d364f3f6 100644 --- a/tests/__snapshots__/qrcode-3/25/fast-180.json +++ b/tests/__snapshots__/qrcode-3/25/fast-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/25/fast-270.json b/tests/__snapshots__/qrcode-3/25/fast-270.json index 525ebd5e..74879c25 100644 --- a/tests/__snapshots__/qrcode-3/25/fast-270.json +++ b/tests/__snapshots__/qrcode-3/25/fast-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/25/fast-90.json b/tests/__snapshots__/qrcode-3/25/fast-90.json index a0f3447d..9e82a154 100644 --- a/tests/__snapshots__/qrcode-3/25/fast-90.json +++ b/tests/__snapshots__/qrcode-3/25/fast-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/25/slow-0.json b/tests/__snapshots__/qrcode-3/25/slow-0.json index 85259728..b8cd52b0 100644 --- a/tests/__snapshots__/qrcode-3/25/slow-0.json +++ b/tests/__snapshots__/qrcode-3/25/slow-0.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/25/slow-180.json b/tests/__snapshots__/qrcode-3/25/slow-180.json index b138d851..d364f3f6 100644 --- a/tests/__snapshots__/qrcode-3/25/slow-180.json +++ b/tests/__snapshots__/qrcode-3/25/slow-180.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/25/slow-270.json b/tests/__snapshots__/qrcode-3/25/slow-270.json index 525ebd5e..74879c25 100644 --- a/tests/__snapshots__/qrcode-3/25/slow-270.json +++ b/tests/__snapshots__/qrcode-3/25/slow-270.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/25/slow-90.json b/tests/__snapshots__/qrcode-3/25/slow-90.json index a0f3447d..9e82a154 100644 --- a/tests/__snapshots__/qrcode-3/25/slow-90.json +++ b/tests/__snapshots__/qrcode-3/25/slow-90.json @@ -5,7 +5,7 @@ "bytes": "65a30ce", "bytesECI": "f4ac7b3", "text": "UI office hours signuphttp://www.corp.google.com/sparrow/ui_office_hours/ ", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "7" + "version": "7", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-3/27/fast-0.json b/tests/__snapshots__/qrcode-3/27/fast-0.json index 186a43ea..c8a20223 100644 --- a/tests/__snapshots__/qrcode-3/27/fast-0.json +++ b/tests/__snapshots__/qrcode-3/27/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/27/fast-180.json b/tests/__snapshots__/qrcode-3/27/fast-180.json index 0e21e7f6..c3a4d143 100644 --- a/tests/__snapshots__/qrcode-3/27/fast-180.json +++ b/tests/__snapshots__/qrcode-3/27/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/27/fast-270.json b/tests/__snapshots__/qrcode-3/27/fast-270.json index 02ca5d05..baa5fe6d 100644 --- a/tests/__snapshots__/qrcode-3/27/fast-270.json +++ b/tests/__snapshots__/qrcode-3/27/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/27/fast-90.json b/tests/__snapshots__/qrcode-3/27/fast-90.json index aed7447f..4047bd73 100644 --- a/tests/__snapshots__/qrcode-3/27/fast-90.json +++ b/tests/__snapshots__/qrcode-3/27/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/27/slow-0.json b/tests/__snapshots__/qrcode-3/27/slow-0.json index 186a43ea..c8a20223 100644 --- a/tests/__snapshots__/qrcode-3/27/slow-0.json +++ b/tests/__snapshots__/qrcode-3/27/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/27/slow-180.json b/tests/__snapshots__/qrcode-3/27/slow-180.json index 0e21e7f6..c3a4d143 100644 --- a/tests/__snapshots__/qrcode-3/27/slow-180.json +++ b/tests/__snapshots__/qrcode-3/27/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/27/slow-270.json b/tests/__snapshots__/qrcode-3/27/slow-270.json index 02ca5d05..baa5fe6d 100644 --- a/tests/__snapshots__/qrcode-3/27/slow-270.json +++ b/tests/__snapshots__/qrcode-3/27/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/27/slow-90.json b/tests/__snapshots__/qrcode-3/27/slow-90.json index aed7447f..4047bd73 100644 --- a/tests/__snapshots__/qrcode-3/27/slow-90.json +++ b/tests/__snapshots__/qrcode-3/27/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/28/fast-0.json b/tests/__snapshots__/qrcode-3/28/fast-0.json index 817bbbf9..06b57876 100644 --- a/tests/__snapshots__/qrcode-3/28/fast-0.json +++ b/tests/__snapshots__/qrcode-3/28/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/28/fast-180.json b/tests/__snapshots__/qrcode-3/28/fast-180.json index d5715463..2a45f473 100644 --- a/tests/__snapshots__/qrcode-3/28/fast-180.json +++ b/tests/__snapshots__/qrcode-3/28/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/28/fast-270.json b/tests/__snapshots__/qrcode-3/28/fast-270.json index 8ee1b656..1163a1e7 100644 --- a/tests/__snapshots__/qrcode-3/28/fast-270.json +++ b/tests/__snapshots__/qrcode-3/28/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/28/fast-90.json b/tests/__snapshots__/qrcode-3/28/fast-90.json index 893757d9..08350e74 100644 --- a/tests/__snapshots__/qrcode-3/28/fast-90.json +++ b/tests/__snapshots__/qrcode-3/28/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/28/slow-0.json b/tests/__snapshots__/qrcode-3/28/slow-0.json index 817bbbf9..06b57876 100644 --- a/tests/__snapshots__/qrcode-3/28/slow-0.json +++ b/tests/__snapshots__/qrcode-3/28/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/28/slow-180.json b/tests/__snapshots__/qrcode-3/28/slow-180.json index d5715463..2a45f473 100644 --- a/tests/__snapshots__/qrcode-3/28/slow-180.json +++ b/tests/__snapshots__/qrcode-3/28/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/28/slow-270.json b/tests/__snapshots__/qrcode-3/28/slow-270.json index 8ee1b656..1163a1e7 100644 --- a/tests/__snapshots__/qrcode-3/28/slow-270.json +++ b/tests/__snapshots__/qrcode-3/28/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/28/slow-90.json b/tests/__snapshots__/qrcode-3/28/slow-90.json index 893757d9..08350e74 100644 --- a/tests/__snapshots__/qrcode-3/28/slow-90.json +++ b/tests/__snapshots__/qrcode-3/28/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/30/fast-0.json b/tests/__snapshots__/qrcode-3/30/fast-0.json index df5f23fd..a1d837b7 100644 --- a/tests/__snapshots__/qrcode-3/30/fast-0.json +++ b/tests/__snapshots__/qrcode-3/30/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/30/fast-180.json b/tests/__snapshots__/qrcode-3/30/fast-180.json index cec8c70e..e19581bb 100644 --- a/tests/__snapshots__/qrcode-3/30/fast-180.json +++ b/tests/__snapshots__/qrcode-3/30/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/30/fast-270.json b/tests/__snapshots__/qrcode-3/30/fast-270.json index fe568bf5..30066730 100644 --- a/tests/__snapshots__/qrcode-3/30/fast-270.json +++ b/tests/__snapshots__/qrcode-3/30/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/30/fast-90.json b/tests/__snapshots__/qrcode-3/30/fast-90.json index f4ef89e8..94829165 100644 --- a/tests/__snapshots__/qrcode-3/30/fast-90.json +++ b/tests/__snapshots__/qrcode-3/30/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/30/slow-0.json b/tests/__snapshots__/qrcode-3/30/slow-0.json index df5f23fd..a1d837b7 100644 --- a/tests/__snapshots__/qrcode-3/30/slow-0.json +++ b/tests/__snapshots__/qrcode-3/30/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/30/slow-180.json b/tests/__snapshots__/qrcode-3/30/slow-180.json index cec8c70e..e19581bb 100644 --- a/tests/__snapshots__/qrcode-3/30/slow-180.json +++ b/tests/__snapshots__/qrcode-3/30/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/30/slow-270.json b/tests/__snapshots__/qrcode-3/30/slow-270.json index fe568bf5..30066730 100644 --- a/tests/__snapshots__/qrcode-3/30/slow-270.json +++ b/tests/__snapshots__/qrcode-3/30/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/30/slow-90.json b/tests/__snapshots__/qrcode-3/30/slow-90.json index f4ef89e8..94829165 100644 --- a/tests/__snapshots__/qrcode-3/30/slow-90.json +++ b/tests/__snapshots__/qrcode-3/30/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/31/fast-0.json b/tests/__snapshots__/qrcode-3/31/fast-0.json index 5fb3e2b4..c7dee1a1 100644 --- a/tests/__snapshots__/qrcode-3/31/fast-0.json +++ b/tests/__snapshots__/qrcode-3/31/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/31/fast-180.json b/tests/__snapshots__/qrcode-3/31/fast-180.json index 797c97ac..617c1698 100644 --- a/tests/__snapshots__/qrcode-3/31/fast-180.json +++ b/tests/__snapshots__/qrcode-3/31/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/31/fast-270.json b/tests/__snapshots__/qrcode-3/31/fast-270.json index eb2bb628..b959635c 100644 --- a/tests/__snapshots__/qrcode-3/31/fast-270.json +++ b/tests/__snapshots__/qrcode-3/31/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/31/fast-90.json b/tests/__snapshots__/qrcode-3/31/fast-90.json index 77f1dda5..b19c7882 100644 --- a/tests/__snapshots__/qrcode-3/31/fast-90.json +++ b/tests/__snapshots__/qrcode-3/31/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/31/slow-0.json b/tests/__snapshots__/qrcode-3/31/slow-0.json index 5fb3e2b4..c7dee1a1 100644 --- a/tests/__snapshots__/qrcode-3/31/slow-0.json +++ b/tests/__snapshots__/qrcode-3/31/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/31/slow-180.json b/tests/__snapshots__/qrcode-3/31/slow-180.json index 797c97ac..617c1698 100644 --- a/tests/__snapshots__/qrcode-3/31/slow-180.json +++ b/tests/__snapshots__/qrcode-3/31/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/31/slow-270.json b/tests/__snapshots__/qrcode-3/31/slow-270.json index eb2bb628..b959635c 100644 --- a/tests/__snapshots__/qrcode-3/31/slow-270.json +++ b/tests/__snapshots__/qrcode-3/31/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/31/slow-90.json b/tests/__snapshots__/qrcode-3/31/slow-90.json index 77f1dda5..b19c7882 100644 --- a/tests/__snapshots__/qrcode-3/31/slow-90.json +++ b/tests/__snapshots__/qrcode-3/31/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/33/fast-0.json b/tests/__snapshots__/qrcode-3/33/fast-0.json index 7550c7a8..64bcaaf0 100644 --- a/tests/__snapshots__/qrcode-3/33/fast-0.json +++ b/tests/__snapshots__/qrcode-3/33/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/33/fast-180.json b/tests/__snapshots__/qrcode-3/33/fast-180.json index 1ee88cb7..e5f53e89 100644 --- a/tests/__snapshots__/qrcode-3/33/fast-180.json +++ b/tests/__snapshots__/qrcode-3/33/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/33/fast-270.json b/tests/__snapshots__/qrcode-3/33/fast-270.json index 26d0411e..909a82b7 100644 --- a/tests/__snapshots__/qrcode-3/33/fast-270.json +++ b/tests/__snapshots__/qrcode-3/33/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/33/fast-90.json b/tests/__snapshots__/qrcode-3/33/fast-90.json index 57dc682e..6185e817 100644 --- a/tests/__snapshots__/qrcode-3/33/fast-90.json +++ b/tests/__snapshots__/qrcode-3/33/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/33/slow-0.json b/tests/__snapshots__/qrcode-3/33/slow-0.json index 7550c7a8..64bcaaf0 100644 --- a/tests/__snapshots__/qrcode-3/33/slow-0.json +++ b/tests/__snapshots__/qrcode-3/33/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/33/slow-180.json b/tests/__snapshots__/qrcode-3/33/slow-180.json index 1ee88cb7..e5f53e89 100644 --- a/tests/__snapshots__/qrcode-3/33/slow-180.json +++ b/tests/__snapshots__/qrcode-3/33/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/33/slow-270.json b/tests/__snapshots__/qrcode-3/33/slow-270.json index 26d0411e..909a82b7 100644 --- a/tests/__snapshots__/qrcode-3/33/slow-270.json +++ b/tests/__snapshots__/qrcode-3/33/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/33/slow-90.json b/tests/__snapshots__/qrcode-3/33/slow-90.json index 57dc682e..6185e817 100644 --- a/tests/__snapshots__/qrcode-3/33/slow-90.json +++ b/tests/__snapshots__/qrcode-3/33/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/37/fast-0.json b/tests/__snapshots__/qrcode-3/37/fast-0.json index b621eaeb..b37064fb 100644 --- a/tests/__snapshots__/qrcode-3/37/fast-0.json +++ b/tests/__snapshots__/qrcode-3/37/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/37/fast-180.json b/tests/__snapshots__/qrcode-3/37/fast-180.json index ac56acf7..1bb0e80a 100644 --- a/tests/__snapshots__/qrcode-3/37/fast-180.json +++ b/tests/__snapshots__/qrcode-3/37/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/37/fast-270.json b/tests/__snapshots__/qrcode-3/37/fast-270.json index 1228433e..4ae09536 100644 --- a/tests/__snapshots__/qrcode-3/37/fast-270.json +++ b/tests/__snapshots__/qrcode-3/37/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/37/fast-90.json b/tests/__snapshots__/qrcode-3/37/fast-90.json index 87b1aad9..7bd7a7f1 100644 --- a/tests/__snapshots__/qrcode-3/37/fast-90.json +++ b/tests/__snapshots__/qrcode-3/37/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/37/slow-0.json b/tests/__snapshots__/qrcode-3/37/slow-0.json index b621eaeb..b37064fb 100644 --- a/tests/__snapshots__/qrcode-3/37/slow-0.json +++ b/tests/__snapshots__/qrcode-3/37/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/37/slow-180.json b/tests/__snapshots__/qrcode-3/37/slow-180.json index ac56acf7..1bb0e80a 100644 --- a/tests/__snapshots__/qrcode-3/37/slow-180.json +++ b/tests/__snapshots__/qrcode-3/37/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/37/slow-270.json b/tests/__snapshots__/qrcode-3/37/slow-270.json index 1228433e..4ae09536 100644 --- a/tests/__snapshots__/qrcode-3/37/slow-270.json +++ b/tests/__snapshots__/qrcode-3/37/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/37/slow-90.json b/tests/__snapshots__/qrcode-3/37/slow-90.json index 87b1aad9..7bd7a7f1 100644 --- a/tests/__snapshots__/qrcode-3/37/slow-90.json +++ b/tests/__snapshots__/qrcode-3/37/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/40/fast-0.json b/tests/__snapshots__/qrcode-3/40/fast-0.json index b35fa7ff..bbe9f1fc 100644 --- a/tests/__snapshots__/qrcode-3/40/fast-0.json +++ b/tests/__snapshots__/qrcode-3/40/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/40/fast-180.json b/tests/__snapshots__/qrcode-3/40/fast-180.json index effaa895..b7991759 100644 --- a/tests/__snapshots__/qrcode-3/40/fast-180.json +++ b/tests/__snapshots__/qrcode-3/40/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/40/fast-270.json b/tests/__snapshots__/qrcode-3/40/fast-270.json index b40ac9ea..76db5cf3 100644 --- a/tests/__snapshots__/qrcode-3/40/fast-270.json +++ b/tests/__snapshots__/qrcode-3/40/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/40/fast-90.json b/tests/__snapshots__/qrcode-3/40/fast-90.json index 89a8d569..b49e4bee 100644 --- a/tests/__snapshots__/qrcode-3/40/fast-90.json +++ b/tests/__snapshots__/qrcode-3/40/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/40/slow-0.json b/tests/__snapshots__/qrcode-3/40/slow-0.json index b35fa7ff..bbe9f1fc 100644 --- a/tests/__snapshots__/qrcode-3/40/slow-0.json +++ b/tests/__snapshots__/qrcode-3/40/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/40/slow-180.json b/tests/__snapshots__/qrcode-3/40/slow-180.json index effaa895..b7991759 100644 --- a/tests/__snapshots__/qrcode-3/40/slow-180.json +++ b/tests/__snapshots__/qrcode-3/40/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/40/slow-270.json b/tests/__snapshots__/qrcode-3/40/slow-270.json index b40ac9ea..76db5cf3 100644 --- a/tests/__snapshots__/qrcode-3/40/slow-270.json +++ b/tests/__snapshots__/qrcode-3/40/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/40/slow-90.json b/tests/__snapshots__/qrcode-3/40/slow-90.json index 89a8d569..b49e4bee 100644 --- a/tests/__snapshots__/qrcode-3/40/slow-90.json +++ b/tests/__snapshots__/qrcode-3/40/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/42/fast-0.json b/tests/__snapshots__/qrcode-3/42/fast-0.json index c3c74a27..31f74d65 100644 --- a/tests/__snapshots__/qrcode-3/42/fast-0.json +++ b/tests/__snapshots__/qrcode-3/42/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/42/fast-180.json b/tests/__snapshots__/qrcode-3/42/fast-180.json index d4cc3731..02b3b415 100644 --- a/tests/__snapshots__/qrcode-3/42/fast-180.json +++ b/tests/__snapshots__/qrcode-3/42/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/42/fast-270.json b/tests/__snapshots__/qrcode-3/42/fast-270.json index b7278a3b..da663a41 100644 --- a/tests/__snapshots__/qrcode-3/42/fast-270.json +++ b/tests/__snapshots__/qrcode-3/42/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/42/fast-90.json b/tests/__snapshots__/qrcode-3/42/fast-90.json index b3795e89..b4593c04 100644 --- a/tests/__snapshots__/qrcode-3/42/fast-90.json +++ b/tests/__snapshots__/qrcode-3/42/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/42/slow-0.json b/tests/__snapshots__/qrcode-3/42/slow-0.json index c3c74a27..31f74d65 100644 --- a/tests/__snapshots__/qrcode-3/42/slow-0.json +++ b/tests/__snapshots__/qrcode-3/42/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/42/slow-180.json b/tests/__snapshots__/qrcode-3/42/slow-180.json index d4cc3731..02b3b415 100644 --- a/tests/__snapshots__/qrcode-3/42/slow-180.json +++ b/tests/__snapshots__/qrcode-3/42/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/42/slow-270.json b/tests/__snapshots__/qrcode-3/42/slow-270.json index b7278a3b..da663a41 100644 --- a/tests/__snapshots__/qrcode-3/42/slow-270.json +++ b/tests/__snapshots__/qrcode-3/42/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-3/42/slow-90.json b/tests/__snapshots__/qrcode-3/42/slow-90.json index b3795e89..b4593c04 100644 --- a/tests/__snapshots__/qrcode-3/42/slow-90.json +++ b/tests/__snapshots__/qrcode-3/42/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/01/fast-0.json b/tests/__snapshots__/qrcode-4/01/fast-0.json index 5b69cec4..d4654ec9 100644 --- a/tests/__snapshots__/qrcode-4/01/fast-0.json +++ b/tests/__snapshots__/qrcode-4/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/01/fast-180.json b/tests/__snapshots__/qrcode-4/01/fast-180.json index 1be8b0d0..67e05a7d 100644 --- a/tests/__snapshots__/qrcode-4/01/fast-180.json +++ b/tests/__snapshots__/qrcode-4/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/01/fast-270.json b/tests/__snapshots__/qrcode-4/01/fast-270.json index d4da739c..ac4f3e21 100644 --- a/tests/__snapshots__/qrcode-4/01/fast-270.json +++ b/tests/__snapshots__/qrcode-4/01/fast-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/01/fast-90.json b/tests/__snapshots__/qrcode-4/01/fast-90.json index badf1e39..3d378a61 100644 --- a/tests/__snapshots__/qrcode-4/01/fast-90.json +++ b/tests/__snapshots__/qrcode-4/01/fast-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/01/slow-0.json b/tests/__snapshots__/qrcode-4/01/slow-0.json index 5b69cec4..d4654ec9 100644 --- a/tests/__snapshots__/qrcode-4/01/slow-0.json +++ b/tests/__snapshots__/qrcode-4/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/01/slow-180.json b/tests/__snapshots__/qrcode-4/01/slow-180.json index 1be8b0d0..67e05a7d 100644 --- a/tests/__snapshots__/qrcode-4/01/slow-180.json +++ b/tests/__snapshots__/qrcode-4/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/01/slow-270.json b/tests/__snapshots__/qrcode-4/01/slow-270.json index d4da739c..ac4f3e21 100644 --- a/tests/__snapshots__/qrcode-4/01/slow-270.json +++ b/tests/__snapshots__/qrcode-4/01/slow-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/01/slow-90.json b/tests/__snapshots__/qrcode-4/01/slow-90.json index badf1e39..3d378a61 100644 --- a/tests/__snapshots__/qrcode-4/01/slow-90.json +++ b/tests/__snapshots__/qrcode-4/01/slow-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/02/fast-0.json b/tests/__snapshots__/qrcode-4/02/fast-0.json index c3d2f715..2fbb308b 100644 --- a/tests/__snapshots__/qrcode-4/02/fast-0.json +++ b/tests/__snapshots__/qrcode-4/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/02/fast-180.json b/tests/__snapshots__/qrcode-4/02/fast-180.json index 909e0909..f0dad50d 100644 --- a/tests/__snapshots__/qrcode-4/02/fast-180.json +++ b/tests/__snapshots__/qrcode-4/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/02/fast-270.json b/tests/__snapshots__/qrcode-4/02/fast-270.json index d4167b2b..a9768c2c 100644 --- a/tests/__snapshots__/qrcode-4/02/fast-270.json +++ b/tests/__snapshots__/qrcode-4/02/fast-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/02/fast-90.json b/tests/__snapshots__/qrcode-4/02/fast-90.json index e40bc046..546b0517 100644 --- a/tests/__snapshots__/qrcode-4/02/fast-90.json +++ b/tests/__snapshots__/qrcode-4/02/fast-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/02/slow-0.json b/tests/__snapshots__/qrcode-4/02/slow-0.json index c3d2f715..2fbb308b 100644 --- a/tests/__snapshots__/qrcode-4/02/slow-0.json +++ b/tests/__snapshots__/qrcode-4/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/02/slow-180.json b/tests/__snapshots__/qrcode-4/02/slow-180.json index 909e0909..f0dad50d 100644 --- a/tests/__snapshots__/qrcode-4/02/slow-180.json +++ b/tests/__snapshots__/qrcode-4/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/02/slow-270.json b/tests/__snapshots__/qrcode-4/02/slow-270.json index d4167b2b..a9768c2c 100644 --- a/tests/__snapshots__/qrcode-4/02/slow-270.json +++ b/tests/__snapshots__/qrcode-4/02/slow-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/02/slow-90.json b/tests/__snapshots__/qrcode-4/02/slow-90.json index e40bc046..546b0517 100644 --- a/tests/__snapshots__/qrcode-4/02/slow-90.json +++ b/tests/__snapshots__/qrcode-4/02/slow-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/03/fast-0.json b/tests/__snapshots__/qrcode-4/03/fast-0.json index ca7eaead..3ba23c12 100644 --- a/tests/__snapshots__/qrcode-4/03/fast-0.json +++ b/tests/__snapshots__/qrcode-4/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/03/fast-180.json b/tests/__snapshots__/qrcode-4/03/fast-180.json index cb14546f..dcd80a18 100644 --- a/tests/__snapshots__/qrcode-4/03/fast-180.json +++ b/tests/__snapshots__/qrcode-4/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/03/fast-270.json b/tests/__snapshots__/qrcode-4/03/fast-270.json index 6fdf550c..250cbc8a 100644 --- a/tests/__snapshots__/qrcode-4/03/fast-270.json +++ b/tests/__snapshots__/qrcode-4/03/fast-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/03/fast-90.json b/tests/__snapshots__/qrcode-4/03/fast-90.json index 83dcceba..a3b883e0 100644 --- a/tests/__snapshots__/qrcode-4/03/fast-90.json +++ b/tests/__snapshots__/qrcode-4/03/fast-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/03/slow-0.json b/tests/__snapshots__/qrcode-4/03/slow-0.json index ca7eaead..3ba23c12 100644 --- a/tests/__snapshots__/qrcode-4/03/slow-0.json +++ b/tests/__snapshots__/qrcode-4/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/03/slow-180.json b/tests/__snapshots__/qrcode-4/03/slow-180.json index cb14546f..dcd80a18 100644 --- a/tests/__snapshots__/qrcode-4/03/slow-180.json +++ b/tests/__snapshots__/qrcode-4/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/03/slow-270.json b/tests/__snapshots__/qrcode-4/03/slow-270.json index 6fdf550c..250cbc8a 100644 --- a/tests/__snapshots__/qrcode-4/03/slow-270.json +++ b/tests/__snapshots__/qrcode-4/03/slow-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/03/slow-90.json b/tests/__snapshots__/qrcode-4/03/slow-90.json index 83dcceba..a3b883e0 100644 --- a/tests/__snapshots__/qrcode-4/03/slow-90.json +++ b/tests/__snapshots__/qrcode-4/03/slow-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/04/fast-0.json b/tests/__snapshots__/qrcode-4/04/fast-0.json index 95b8b8d6..ab558c88 100644 --- a/tests/__snapshots__/qrcode-4/04/fast-0.json +++ b/tests/__snapshots__/qrcode-4/04/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/04/fast-180.json b/tests/__snapshots__/qrcode-4/04/fast-180.json index bcd7ad75..812717a7 100644 --- a/tests/__snapshots__/qrcode-4/04/fast-180.json +++ b/tests/__snapshots__/qrcode-4/04/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/04/fast-270.json b/tests/__snapshots__/qrcode-4/04/fast-270.json index f2852901..c51716a3 100644 --- a/tests/__snapshots__/qrcode-4/04/fast-270.json +++ b/tests/__snapshots__/qrcode-4/04/fast-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/04/fast-90.json b/tests/__snapshots__/qrcode-4/04/fast-90.json index be98f392..2b52e747 100644 --- a/tests/__snapshots__/qrcode-4/04/fast-90.json +++ b/tests/__snapshots__/qrcode-4/04/fast-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/04/slow-0.json b/tests/__snapshots__/qrcode-4/04/slow-0.json index 95b8b8d6..ab558c88 100644 --- a/tests/__snapshots__/qrcode-4/04/slow-0.json +++ b/tests/__snapshots__/qrcode-4/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/04/slow-180.json b/tests/__snapshots__/qrcode-4/04/slow-180.json index bcd7ad75..812717a7 100644 --- a/tests/__snapshots__/qrcode-4/04/slow-180.json +++ b/tests/__snapshots__/qrcode-4/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/04/slow-270.json b/tests/__snapshots__/qrcode-4/04/slow-270.json index f2852901..c51716a3 100644 --- a/tests/__snapshots__/qrcode-4/04/slow-270.json +++ b/tests/__snapshots__/qrcode-4/04/slow-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/04/slow-90.json b/tests/__snapshots__/qrcode-4/04/slow-90.json index be98f392..2b52e747 100644 --- a/tests/__snapshots__/qrcode-4/04/slow-90.json +++ b/tests/__snapshots__/qrcode-4/04/slow-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/07/fast-0.json b/tests/__snapshots__/qrcode-4/07/fast-0.json index 4b3e3c6b..962e68cc 100644 --- a/tests/__snapshots__/qrcode-4/07/fast-0.json +++ b/tests/__snapshots__/qrcode-4/07/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/07/fast-180.json b/tests/__snapshots__/qrcode-4/07/fast-180.json index 2a2088d8..b899e777 100644 --- a/tests/__snapshots__/qrcode-4/07/fast-180.json +++ b/tests/__snapshots__/qrcode-4/07/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/07/fast-270.json b/tests/__snapshots__/qrcode-4/07/fast-270.json index 61128947..2b0074a9 100644 --- a/tests/__snapshots__/qrcode-4/07/fast-270.json +++ b/tests/__snapshots__/qrcode-4/07/fast-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/07/fast-90.json b/tests/__snapshots__/qrcode-4/07/fast-90.json index 49debd03..2ae83baf 100644 --- a/tests/__snapshots__/qrcode-4/07/fast-90.json +++ b/tests/__snapshots__/qrcode-4/07/fast-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/07/slow-0.json b/tests/__snapshots__/qrcode-4/07/slow-0.json index 4b3e3c6b..962e68cc 100644 --- a/tests/__snapshots__/qrcode-4/07/slow-0.json +++ b/tests/__snapshots__/qrcode-4/07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/07/slow-180.json b/tests/__snapshots__/qrcode-4/07/slow-180.json index 2a2088d8..b899e777 100644 --- a/tests/__snapshots__/qrcode-4/07/slow-180.json +++ b/tests/__snapshots__/qrcode-4/07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/07/slow-270.json b/tests/__snapshots__/qrcode-4/07/slow-270.json index 61128947..2b0074a9 100644 --- a/tests/__snapshots__/qrcode-4/07/slow-270.json +++ b/tests/__snapshots__/qrcode-4/07/slow-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/07/slow-90.json b/tests/__snapshots__/qrcode-4/07/slow-90.json index 49debd03..2ae83baf 100644 --- a/tests/__snapshots__/qrcode-4/07/slow-90.json +++ b/tests/__snapshots__/qrcode-4/07/slow-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/10/fast-0.json b/tests/__snapshots__/qrcode-4/10/fast-0.json index 82cd67d5..8fd6a59a 100644 --- a/tests/__snapshots__/qrcode-4/10/fast-0.json +++ b/tests/__snapshots__/qrcode-4/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/10/fast-180.json b/tests/__snapshots__/qrcode-4/10/fast-180.json index 8a7ef9a7..f567a446 100644 --- a/tests/__snapshots__/qrcode-4/10/fast-180.json +++ b/tests/__snapshots__/qrcode-4/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/10/fast-270.json b/tests/__snapshots__/qrcode-4/10/fast-270.json index 19bfacc7..a592991b 100644 --- a/tests/__snapshots__/qrcode-4/10/fast-270.json +++ b/tests/__snapshots__/qrcode-4/10/fast-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/10/fast-90.json b/tests/__snapshots__/qrcode-4/10/fast-90.json index c6ac6045..f61dc6f5 100644 --- a/tests/__snapshots__/qrcode-4/10/fast-90.json +++ b/tests/__snapshots__/qrcode-4/10/fast-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/10/slow-0.json b/tests/__snapshots__/qrcode-4/10/slow-0.json index 82cd67d5..8fd6a59a 100644 --- a/tests/__snapshots__/qrcode-4/10/slow-0.json +++ b/tests/__snapshots__/qrcode-4/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/10/slow-180.json b/tests/__snapshots__/qrcode-4/10/slow-180.json index 8a7ef9a7..f567a446 100644 --- a/tests/__snapshots__/qrcode-4/10/slow-180.json +++ b/tests/__snapshots__/qrcode-4/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/10/slow-270.json b/tests/__snapshots__/qrcode-4/10/slow-270.json index 19bfacc7..a592991b 100644 --- a/tests/__snapshots__/qrcode-4/10/slow-270.json +++ b/tests/__snapshots__/qrcode-4/10/slow-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/10/slow-90.json b/tests/__snapshots__/qrcode-4/10/slow-90.json index c6ac6045..f61dc6f5 100644 --- a/tests/__snapshots__/qrcode-4/10/slow-90.json +++ b/tests/__snapshots__/qrcode-4/10/slow-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/11/fast-0.json b/tests/__snapshots__/qrcode-4/11/fast-0.json index 208419ab..58247d6a 100644 --- a/tests/__snapshots__/qrcode-4/11/fast-0.json +++ b/tests/__snapshots__/qrcode-4/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/11/fast-180.json b/tests/__snapshots__/qrcode-4/11/fast-180.json index f8537b40..6fcbf09c 100644 --- a/tests/__snapshots__/qrcode-4/11/fast-180.json +++ b/tests/__snapshots__/qrcode-4/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/11/fast-270.json b/tests/__snapshots__/qrcode-4/11/fast-270.json index 2f332f5d..6aaa3da7 100644 --- a/tests/__snapshots__/qrcode-4/11/fast-270.json +++ b/tests/__snapshots__/qrcode-4/11/fast-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/11/fast-90.json b/tests/__snapshots__/qrcode-4/11/fast-90.json index 7607b4b2..27500d38 100644 --- a/tests/__snapshots__/qrcode-4/11/fast-90.json +++ b/tests/__snapshots__/qrcode-4/11/fast-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/11/slow-0.json b/tests/__snapshots__/qrcode-4/11/slow-0.json index 208419ab..58247d6a 100644 --- a/tests/__snapshots__/qrcode-4/11/slow-0.json +++ b/tests/__snapshots__/qrcode-4/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/11/slow-180.json b/tests/__snapshots__/qrcode-4/11/slow-180.json index f8537b40..6fcbf09c 100644 --- a/tests/__snapshots__/qrcode-4/11/slow-180.json +++ b/tests/__snapshots__/qrcode-4/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/11/slow-270.json b/tests/__snapshots__/qrcode-4/11/slow-270.json index 2f332f5d..6aaa3da7 100644 --- a/tests/__snapshots__/qrcode-4/11/slow-270.json +++ b/tests/__snapshots__/qrcode-4/11/slow-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/11/slow-90.json b/tests/__snapshots__/qrcode-4/11/slow-90.json index 7607b4b2..27500d38 100644 --- a/tests/__snapshots__/qrcode-4/11/slow-90.json +++ b/tests/__snapshots__/qrcode-4/11/slow-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/12/fast-0.json b/tests/__snapshots__/qrcode-4/12/fast-0.json index 5d97ecdb..e9aef69b 100644 --- a/tests/__snapshots__/qrcode-4/12/fast-0.json +++ b/tests/__snapshots__/qrcode-4/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/12/fast-180.json b/tests/__snapshots__/qrcode-4/12/fast-180.json index 554bb7d9..4a7a2a15 100644 --- a/tests/__snapshots__/qrcode-4/12/fast-180.json +++ b/tests/__snapshots__/qrcode-4/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/12/fast-270.json b/tests/__snapshots__/qrcode-4/12/fast-270.json index 13f6f49a..6a3e94c5 100644 --- a/tests/__snapshots__/qrcode-4/12/fast-270.json +++ b/tests/__snapshots__/qrcode-4/12/fast-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/12/fast-90.json b/tests/__snapshots__/qrcode-4/12/fast-90.json index e1f0a1c3..1fe1ce46 100644 --- a/tests/__snapshots__/qrcode-4/12/fast-90.json +++ b/tests/__snapshots__/qrcode-4/12/fast-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/12/slow-0.json b/tests/__snapshots__/qrcode-4/12/slow-0.json index 5d97ecdb..e9aef69b 100644 --- a/tests/__snapshots__/qrcode-4/12/slow-0.json +++ b/tests/__snapshots__/qrcode-4/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/12/slow-180.json b/tests/__snapshots__/qrcode-4/12/slow-180.json index 554bb7d9..4a7a2a15 100644 --- a/tests/__snapshots__/qrcode-4/12/slow-180.json +++ b/tests/__snapshots__/qrcode-4/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/12/slow-270.json b/tests/__snapshots__/qrcode-4/12/slow-270.json index 13f6f49a..6a3e94c5 100644 --- a/tests/__snapshots__/qrcode-4/12/slow-270.json +++ b/tests/__snapshots__/qrcode-4/12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/12/slow-90.json b/tests/__snapshots__/qrcode-4/12/slow-90.json index e1f0a1c3..1fe1ce46 100644 --- a/tests/__snapshots__/qrcode-4/12/slow-90.json +++ b/tests/__snapshots__/qrcode-4/12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/14/fast-0.json b/tests/__snapshots__/qrcode-4/14/fast-0.json index 2a4f35c5..29d119e6 100644 --- a/tests/__snapshots__/qrcode-4/14/fast-0.json +++ b/tests/__snapshots__/qrcode-4/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/14/fast-180.json b/tests/__snapshots__/qrcode-4/14/fast-180.json index 8c415102..c3a9a2dd 100644 --- a/tests/__snapshots__/qrcode-4/14/fast-180.json +++ b/tests/__snapshots__/qrcode-4/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/14/fast-270.json b/tests/__snapshots__/qrcode-4/14/fast-270.json index 49aa1c4a..081a53fa 100644 --- a/tests/__snapshots__/qrcode-4/14/fast-270.json +++ b/tests/__snapshots__/qrcode-4/14/fast-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/14/fast-90.json b/tests/__snapshots__/qrcode-4/14/fast-90.json index 4456b4c6..3349fcb6 100644 --- a/tests/__snapshots__/qrcode-4/14/fast-90.json +++ b/tests/__snapshots__/qrcode-4/14/fast-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/14/slow-0.json b/tests/__snapshots__/qrcode-4/14/slow-0.json index 2a4f35c5..29d119e6 100644 --- a/tests/__snapshots__/qrcode-4/14/slow-0.json +++ b/tests/__snapshots__/qrcode-4/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/14/slow-180.json b/tests/__snapshots__/qrcode-4/14/slow-180.json index 8c415102..c3a9a2dd 100644 --- a/tests/__snapshots__/qrcode-4/14/slow-180.json +++ b/tests/__snapshots__/qrcode-4/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/14/slow-270.json b/tests/__snapshots__/qrcode-4/14/slow-270.json index 49aa1c4a..081a53fa 100644 --- a/tests/__snapshots__/qrcode-4/14/slow-270.json +++ b/tests/__snapshots__/qrcode-4/14/slow-270.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/14/slow-90.json b/tests/__snapshots__/qrcode-4/14/slow-90.json index 4456b4c6..3349fcb6 100644 --- a/tests/__snapshots__/qrcode-4/14/slow-90.json +++ b/tests/__snapshots__/qrcode-4/14/slow-90.json @@ -5,7 +5,7 @@ "bytes": "43e2286", "bytesECI": "08faedc", "text": "Google Print Ads - T.G.I.A.F. - January 31, 2008", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/15/fast-0.json b/tests/__snapshots__/qrcode-4/15/fast-0.json index adb89733..66e97f3e 100644 --- a/tests/__snapshots__/qrcode-4/15/fast-0.json +++ b/tests/__snapshots__/qrcode-4/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/15/fast-180.json b/tests/__snapshots__/qrcode-4/15/fast-180.json index 451348f3..6f6b5d17 100644 --- a/tests/__snapshots__/qrcode-4/15/fast-180.json +++ b/tests/__snapshots__/qrcode-4/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/15/fast-270.json b/tests/__snapshots__/qrcode-4/15/fast-270.json index aeec9271..3da50158 100644 --- a/tests/__snapshots__/qrcode-4/15/fast-270.json +++ b/tests/__snapshots__/qrcode-4/15/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/15/fast-90.json b/tests/__snapshots__/qrcode-4/15/fast-90.json index fd0cb060..0483ef4a 100644 --- a/tests/__snapshots__/qrcode-4/15/fast-90.json +++ b/tests/__snapshots__/qrcode-4/15/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/15/slow-0.json b/tests/__snapshots__/qrcode-4/15/slow-0.json index adb89733..66e97f3e 100644 --- a/tests/__snapshots__/qrcode-4/15/slow-0.json +++ b/tests/__snapshots__/qrcode-4/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/15/slow-180.json b/tests/__snapshots__/qrcode-4/15/slow-180.json index 451348f3..6f6b5d17 100644 --- a/tests/__snapshots__/qrcode-4/15/slow-180.json +++ b/tests/__snapshots__/qrcode-4/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/15/slow-270.json b/tests/__snapshots__/qrcode-4/15/slow-270.json index aeec9271..3da50158 100644 --- a/tests/__snapshots__/qrcode-4/15/slow-270.json +++ b/tests/__snapshots__/qrcode-4/15/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/15/slow-90.json b/tests/__snapshots__/qrcode-4/15/slow-90.json index fd0cb060..0483ef4a 100644 --- a/tests/__snapshots__/qrcode-4/15/slow-90.json +++ b/tests/__snapshots__/qrcode-4/15/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/16/fast-0.json b/tests/__snapshots__/qrcode-4/16/fast-0.json index 0385c4c5..3193df7a 100644 --- a/tests/__snapshots__/qrcode-4/16/fast-0.json +++ b/tests/__snapshots__/qrcode-4/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/16/fast-180.json b/tests/__snapshots__/qrcode-4/16/fast-180.json index 2b488a08..d1a71c34 100644 --- a/tests/__snapshots__/qrcode-4/16/fast-180.json +++ b/tests/__snapshots__/qrcode-4/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/16/fast-270.json b/tests/__snapshots__/qrcode-4/16/fast-270.json index 4f2a0453..fdae00a2 100644 --- a/tests/__snapshots__/qrcode-4/16/fast-270.json +++ b/tests/__snapshots__/qrcode-4/16/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/16/fast-90.json b/tests/__snapshots__/qrcode-4/16/fast-90.json index 05d60d5b..32e85480 100644 --- a/tests/__snapshots__/qrcode-4/16/fast-90.json +++ b/tests/__snapshots__/qrcode-4/16/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/16/slow-0.json b/tests/__snapshots__/qrcode-4/16/slow-0.json index 0385c4c5..3193df7a 100644 --- a/tests/__snapshots__/qrcode-4/16/slow-0.json +++ b/tests/__snapshots__/qrcode-4/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/16/slow-180.json b/tests/__snapshots__/qrcode-4/16/slow-180.json index 2b488a08..d1a71c34 100644 --- a/tests/__snapshots__/qrcode-4/16/slow-180.json +++ b/tests/__snapshots__/qrcode-4/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/16/slow-270.json b/tests/__snapshots__/qrcode-4/16/slow-270.json index 4f2a0453..fdae00a2 100644 --- a/tests/__snapshots__/qrcode-4/16/slow-270.json +++ b/tests/__snapshots__/qrcode-4/16/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/16/slow-90.json b/tests/__snapshots__/qrcode-4/16/slow-90.json index 05d60d5b..32e85480 100644 --- a/tests/__snapshots__/qrcode-4/16/slow-90.json +++ b/tests/__snapshots__/qrcode-4/16/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/17/fast-0.json b/tests/__snapshots__/qrcode-4/17/fast-0.json index e93e2b01..1b532a20 100644 --- a/tests/__snapshots__/qrcode-4/17/fast-0.json +++ b/tests/__snapshots__/qrcode-4/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/17/fast-180.json b/tests/__snapshots__/qrcode-4/17/fast-180.json index dfdf6a57..3bed1233 100644 --- a/tests/__snapshots__/qrcode-4/17/fast-180.json +++ b/tests/__snapshots__/qrcode-4/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/17/fast-270.json b/tests/__snapshots__/qrcode-4/17/fast-270.json index 4f1eecf6..8526cc2b 100644 --- a/tests/__snapshots__/qrcode-4/17/fast-270.json +++ b/tests/__snapshots__/qrcode-4/17/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/17/fast-90.json b/tests/__snapshots__/qrcode-4/17/fast-90.json index 6be76900..4f9981a5 100644 --- a/tests/__snapshots__/qrcode-4/17/fast-90.json +++ b/tests/__snapshots__/qrcode-4/17/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/17/slow-0.json b/tests/__snapshots__/qrcode-4/17/slow-0.json index e93e2b01..1b532a20 100644 --- a/tests/__snapshots__/qrcode-4/17/slow-0.json +++ b/tests/__snapshots__/qrcode-4/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/17/slow-180.json b/tests/__snapshots__/qrcode-4/17/slow-180.json index dfdf6a57..3bed1233 100644 --- a/tests/__snapshots__/qrcode-4/17/slow-180.json +++ b/tests/__snapshots__/qrcode-4/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/17/slow-270.json b/tests/__snapshots__/qrcode-4/17/slow-270.json index 4f1eecf6..8526cc2b 100644 --- a/tests/__snapshots__/qrcode-4/17/slow-270.json +++ b/tests/__snapshots__/qrcode-4/17/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/17/slow-90.json b/tests/__snapshots__/qrcode-4/17/slow-90.json index 6be76900..4f9981a5 100644 --- a/tests/__snapshots__/qrcode-4/17/slow-90.json +++ b/tests/__snapshots__/qrcode-4/17/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/18/fast-0.json b/tests/__snapshots__/qrcode-4/18/fast-0.json index 350326e1..e10a5edc 100644 --- a/tests/__snapshots__/qrcode-4/18/fast-0.json +++ b/tests/__snapshots__/qrcode-4/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/18/fast-180.json b/tests/__snapshots__/qrcode-4/18/fast-180.json index 474e7b4c..afa54510 100644 --- a/tests/__snapshots__/qrcode-4/18/fast-180.json +++ b/tests/__snapshots__/qrcode-4/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/18/fast-270.json b/tests/__snapshots__/qrcode-4/18/fast-270.json index 48841644..66081b1a 100644 --- a/tests/__snapshots__/qrcode-4/18/fast-270.json +++ b/tests/__snapshots__/qrcode-4/18/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/18/fast-90.json b/tests/__snapshots__/qrcode-4/18/fast-90.json index 4b71a18e..83a82431 100644 --- a/tests/__snapshots__/qrcode-4/18/fast-90.json +++ b/tests/__snapshots__/qrcode-4/18/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/18/slow-0.json b/tests/__snapshots__/qrcode-4/18/slow-0.json index 350326e1..e10a5edc 100644 --- a/tests/__snapshots__/qrcode-4/18/slow-0.json +++ b/tests/__snapshots__/qrcode-4/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/18/slow-180.json b/tests/__snapshots__/qrcode-4/18/slow-180.json index 474e7b4c..afa54510 100644 --- a/tests/__snapshots__/qrcode-4/18/slow-180.json +++ b/tests/__snapshots__/qrcode-4/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/18/slow-270.json b/tests/__snapshots__/qrcode-4/18/slow-270.json index 48841644..66081b1a 100644 --- a/tests/__snapshots__/qrcode-4/18/slow-270.json +++ b/tests/__snapshots__/qrcode-4/18/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/18/slow-90.json b/tests/__snapshots__/qrcode-4/18/slow-90.json index 4b71a18e..83a82431 100644 --- a/tests/__snapshots__/qrcode-4/18/slow-90.json +++ b/tests/__snapshots__/qrcode-4/18/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/19/fast-0.json b/tests/__snapshots__/qrcode-4/19/fast-0.json index 8779bd54..b8c9b82f 100644 --- a/tests/__snapshots__/qrcode-4/19/fast-0.json +++ b/tests/__snapshots__/qrcode-4/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/19/fast-180.json b/tests/__snapshots__/qrcode-4/19/fast-180.json index c7b12563..b7c47ac9 100644 --- a/tests/__snapshots__/qrcode-4/19/fast-180.json +++ b/tests/__snapshots__/qrcode-4/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/19/fast-270.json b/tests/__snapshots__/qrcode-4/19/fast-270.json index 17c3bc92..18bcaad0 100644 --- a/tests/__snapshots__/qrcode-4/19/fast-270.json +++ b/tests/__snapshots__/qrcode-4/19/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/19/fast-90.json b/tests/__snapshots__/qrcode-4/19/fast-90.json index 4d75e2af..666cad31 100644 --- a/tests/__snapshots__/qrcode-4/19/fast-90.json +++ b/tests/__snapshots__/qrcode-4/19/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/19/slow-0.json b/tests/__snapshots__/qrcode-4/19/slow-0.json index 8779bd54..b8c9b82f 100644 --- a/tests/__snapshots__/qrcode-4/19/slow-0.json +++ b/tests/__snapshots__/qrcode-4/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/19/slow-180.json b/tests/__snapshots__/qrcode-4/19/slow-180.json index c7b12563..b7c47ac9 100644 --- a/tests/__snapshots__/qrcode-4/19/slow-180.json +++ b/tests/__snapshots__/qrcode-4/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/19/slow-270.json b/tests/__snapshots__/qrcode-4/19/slow-270.json index 17c3bc92..18bcaad0 100644 --- a/tests/__snapshots__/qrcode-4/19/slow-270.json +++ b/tests/__snapshots__/qrcode-4/19/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/19/slow-90.json b/tests/__snapshots__/qrcode-4/19/slow-90.json index 4d75e2af..666cad31 100644 --- a/tests/__snapshots__/qrcode-4/19/slow-90.json +++ b/tests/__snapshots__/qrcode-4/19/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/20/fast-0.json b/tests/__snapshots__/qrcode-4/20/fast-0.json index 1233140d..2b126b69 100644 --- a/tests/__snapshots__/qrcode-4/20/fast-0.json +++ b/tests/__snapshots__/qrcode-4/20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/20/fast-180.json b/tests/__snapshots__/qrcode-4/20/fast-180.json index eacb88aa..9ea2ba9c 100644 --- a/tests/__snapshots__/qrcode-4/20/fast-180.json +++ b/tests/__snapshots__/qrcode-4/20/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/20/fast-270.json b/tests/__snapshots__/qrcode-4/20/fast-270.json index d8cd1eee..501c5d22 100644 --- a/tests/__snapshots__/qrcode-4/20/fast-270.json +++ b/tests/__snapshots__/qrcode-4/20/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/20/fast-90.json b/tests/__snapshots__/qrcode-4/20/fast-90.json index d8e5e13d..7932064f 100644 --- a/tests/__snapshots__/qrcode-4/20/fast-90.json +++ b/tests/__snapshots__/qrcode-4/20/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/20/slow-0.json b/tests/__snapshots__/qrcode-4/20/slow-0.json index 1233140d..2b126b69 100644 --- a/tests/__snapshots__/qrcode-4/20/slow-0.json +++ b/tests/__snapshots__/qrcode-4/20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/20/slow-180.json b/tests/__snapshots__/qrcode-4/20/slow-180.json index eacb88aa..9ea2ba9c 100644 --- a/tests/__snapshots__/qrcode-4/20/slow-180.json +++ b/tests/__snapshots__/qrcode-4/20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/20/slow-270.json b/tests/__snapshots__/qrcode-4/20/slow-270.json index d8cd1eee..501c5d22 100644 --- a/tests/__snapshots__/qrcode-4/20/slow-270.json +++ b/tests/__snapshots__/qrcode-4/20/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/20/slow-90.json b/tests/__snapshots__/qrcode-4/20/slow-90.json index d8e5e13d..7932064f 100644 --- a/tests/__snapshots__/qrcode-4/20/slow-90.json +++ b/tests/__snapshots__/qrcode-4/20/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/21/fast-0.json b/tests/__snapshots__/qrcode-4/21/fast-0.json index 8b9d471d..bf1d8810 100644 --- a/tests/__snapshots__/qrcode-4/21/fast-0.json +++ b/tests/__snapshots__/qrcode-4/21/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/21/fast-180.json b/tests/__snapshots__/qrcode-4/21/fast-180.json index e2591e1f..b4bbd609 100644 --- a/tests/__snapshots__/qrcode-4/21/fast-180.json +++ b/tests/__snapshots__/qrcode-4/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/21/fast-270.json b/tests/__snapshots__/qrcode-4/21/fast-270.json index de6b3014..8c0aef0f 100644 --- a/tests/__snapshots__/qrcode-4/21/fast-270.json +++ b/tests/__snapshots__/qrcode-4/21/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/21/fast-90.json b/tests/__snapshots__/qrcode-4/21/fast-90.json index 65bc21b9..9e01655e 100644 --- a/tests/__snapshots__/qrcode-4/21/fast-90.json +++ b/tests/__snapshots__/qrcode-4/21/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/21/slow-0.json b/tests/__snapshots__/qrcode-4/21/slow-0.json index 8b9d471d..bf1d8810 100644 --- a/tests/__snapshots__/qrcode-4/21/slow-0.json +++ b/tests/__snapshots__/qrcode-4/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/21/slow-180.json b/tests/__snapshots__/qrcode-4/21/slow-180.json index e2591e1f..b4bbd609 100644 --- a/tests/__snapshots__/qrcode-4/21/slow-180.json +++ b/tests/__snapshots__/qrcode-4/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/21/slow-270.json b/tests/__snapshots__/qrcode-4/21/slow-270.json index de6b3014..8c0aef0f 100644 --- a/tests/__snapshots__/qrcode-4/21/slow-270.json +++ b/tests/__snapshots__/qrcode-4/21/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/21/slow-90.json b/tests/__snapshots__/qrcode-4/21/slow-90.json index 65bc21b9..9e01655e 100644 --- a/tests/__snapshots__/qrcode-4/21/slow-90.json +++ b/tests/__snapshots__/qrcode-4/21/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/22/fast-0.json b/tests/__snapshots__/qrcode-4/22/fast-0.json index 63b8b899..41b9bfa6 100644 --- a/tests/__snapshots__/qrcode-4/22/fast-0.json +++ b/tests/__snapshots__/qrcode-4/22/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/22/fast-180.json b/tests/__snapshots__/qrcode-4/22/fast-180.json index e47bf041..bc284ad7 100644 --- a/tests/__snapshots__/qrcode-4/22/fast-180.json +++ b/tests/__snapshots__/qrcode-4/22/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/22/fast-270.json b/tests/__snapshots__/qrcode-4/22/fast-270.json index cf7cf1e3..ee17b8a9 100644 --- a/tests/__snapshots__/qrcode-4/22/fast-270.json +++ b/tests/__snapshots__/qrcode-4/22/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/22/fast-90.json b/tests/__snapshots__/qrcode-4/22/fast-90.json index 5763a865..7ab9cf41 100644 --- a/tests/__snapshots__/qrcode-4/22/fast-90.json +++ b/tests/__snapshots__/qrcode-4/22/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/22/slow-0.json b/tests/__snapshots__/qrcode-4/22/slow-0.json index 63b8b899..41b9bfa6 100644 --- a/tests/__snapshots__/qrcode-4/22/slow-0.json +++ b/tests/__snapshots__/qrcode-4/22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/22/slow-180.json b/tests/__snapshots__/qrcode-4/22/slow-180.json index e47bf041..bc284ad7 100644 --- a/tests/__snapshots__/qrcode-4/22/slow-180.json +++ b/tests/__snapshots__/qrcode-4/22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/22/slow-270.json b/tests/__snapshots__/qrcode-4/22/slow-270.json index cf7cf1e3..ee17b8a9 100644 --- a/tests/__snapshots__/qrcode-4/22/slow-270.json +++ b/tests/__snapshots__/qrcode-4/22/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/22/slow-90.json b/tests/__snapshots__/qrcode-4/22/slow-90.json index 5763a865..7ab9cf41 100644 --- a/tests/__snapshots__/qrcode-4/22/slow-90.json +++ b/tests/__snapshots__/qrcode-4/22/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/23/fast-0.json b/tests/__snapshots__/qrcode-4/23/fast-0.json index 7544b103..c3125ec2 100644 --- a/tests/__snapshots__/qrcode-4/23/fast-0.json +++ b/tests/__snapshots__/qrcode-4/23/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/23/fast-180.json b/tests/__snapshots__/qrcode-4/23/fast-180.json index eb00cf2a..d1fc5b3e 100644 --- a/tests/__snapshots__/qrcode-4/23/fast-180.json +++ b/tests/__snapshots__/qrcode-4/23/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/23/fast-270.json b/tests/__snapshots__/qrcode-4/23/fast-270.json index 2e1f3203..f4f3f538 100644 --- a/tests/__snapshots__/qrcode-4/23/fast-270.json +++ b/tests/__snapshots__/qrcode-4/23/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/23/fast-90.json b/tests/__snapshots__/qrcode-4/23/fast-90.json index 14d54012..be3485c6 100644 --- a/tests/__snapshots__/qrcode-4/23/fast-90.json +++ b/tests/__snapshots__/qrcode-4/23/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/23/slow-0.json b/tests/__snapshots__/qrcode-4/23/slow-0.json index 7544b103..c3125ec2 100644 --- a/tests/__snapshots__/qrcode-4/23/slow-0.json +++ b/tests/__snapshots__/qrcode-4/23/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/23/slow-180.json b/tests/__snapshots__/qrcode-4/23/slow-180.json index eb00cf2a..d1fc5b3e 100644 --- a/tests/__snapshots__/qrcode-4/23/slow-180.json +++ b/tests/__snapshots__/qrcode-4/23/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/23/slow-270.json b/tests/__snapshots__/qrcode-4/23/slow-270.json index 2e1f3203..f4f3f538 100644 --- a/tests/__snapshots__/qrcode-4/23/slow-270.json +++ b/tests/__snapshots__/qrcode-4/23/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/23/slow-90.json b/tests/__snapshots__/qrcode-4/23/slow-90.json index 14d54012..be3485c6 100644 --- a/tests/__snapshots__/qrcode-4/23/slow-90.json +++ b/tests/__snapshots__/qrcode-4/23/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/24/fast-0.json b/tests/__snapshots__/qrcode-4/24/fast-0.json index b7df758a..b49aafc9 100644 --- a/tests/__snapshots__/qrcode-4/24/fast-0.json +++ b/tests/__snapshots__/qrcode-4/24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/24/fast-180.json b/tests/__snapshots__/qrcode-4/24/fast-180.json index 81d19cdb..18cd34ff 100644 --- a/tests/__snapshots__/qrcode-4/24/fast-180.json +++ b/tests/__snapshots__/qrcode-4/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/24/fast-270.json b/tests/__snapshots__/qrcode-4/24/fast-270.json index 2118ff44..4a7e5a5a 100644 --- a/tests/__snapshots__/qrcode-4/24/fast-270.json +++ b/tests/__snapshots__/qrcode-4/24/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/24/fast-90.json b/tests/__snapshots__/qrcode-4/24/fast-90.json index 5922dbaa..6bc90555 100644 --- a/tests/__snapshots__/qrcode-4/24/fast-90.json +++ b/tests/__snapshots__/qrcode-4/24/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/24/slow-0.json b/tests/__snapshots__/qrcode-4/24/slow-0.json index b7df758a..b49aafc9 100644 --- a/tests/__snapshots__/qrcode-4/24/slow-0.json +++ b/tests/__snapshots__/qrcode-4/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/24/slow-180.json b/tests/__snapshots__/qrcode-4/24/slow-180.json index 81d19cdb..18cd34ff 100644 --- a/tests/__snapshots__/qrcode-4/24/slow-180.json +++ b/tests/__snapshots__/qrcode-4/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/24/slow-270.json b/tests/__snapshots__/qrcode-4/24/slow-270.json index 2118ff44..4a7e5a5a 100644 --- a/tests/__snapshots__/qrcode-4/24/slow-270.json +++ b/tests/__snapshots__/qrcode-4/24/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/24/slow-90.json b/tests/__snapshots__/qrcode-4/24/slow-90.json index 5922dbaa..6bc90555 100644 --- a/tests/__snapshots__/qrcode-4/24/slow-90.json +++ b/tests/__snapshots__/qrcode-4/24/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/26/fast-0.json b/tests/__snapshots__/qrcode-4/26/fast-0.json index 9263e2d2..8d23d252 100644 --- a/tests/__snapshots__/qrcode-4/26/fast-0.json +++ b/tests/__snapshots__/qrcode-4/26/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/26/fast-180.json b/tests/__snapshots__/qrcode-4/26/fast-180.json index eae9a561..9baeff7b 100644 --- a/tests/__snapshots__/qrcode-4/26/fast-180.json +++ b/tests/__snapshots__/qrcode-4/26/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/26/fast-270.json b/tests/__snapshots__/qrcode-4/26/fast-270.json index 7af494b3..664e42cd 100644 --- a/tests/__snapshots__/qrcode-4/26/fast-270.json +++ b/tests/__snapshots__/qrcode-4/26/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/26/fast-90.json b/tests/__snapshots__/qrcode-4/26/fast-90.json index 3aa30b92..0547ea6b 100644 --- a/tests/__snapshots__/qrcode-4/26/fast-90.json +++ b/tests/__snapshots__/qrcode-4/26/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/26/slow-0.json b/tests/__snapshots__/qrcode-4/26/slow-0.json index 9263e2d2..8d23d252 100644 --- a/tests/__snapshots__/qrcode-4/26/slow-0.json +++ b/tests/__snapshots__/qrcode-4/26/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/26/slow-180.json b/tests/__snapshots__/qrcode-4/26/slow-180.json index eae9a561..9baeff7b 100644 --- a/tests/__snapshots__/qrcode-4/26/slow-180.json +++ b/tests/__snapshots__/qrcode-4/26/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/26/slow-270.json b/tests/__snapshots__/qrcode-4/26/slow-270.json index 7af494b3..664e42cd 100644 --- a/tests/__snapshots__/qrcode-4/26/slow-270.json +++ b/tests/__snapshots__/qrcode-4/26/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/26/slow-90.json b/tests/__snapshots__/qrcode-4/26/slow-90.json index 3aa30b92..0547ea6b 100644 --- a/tests/__snapshots__/qrcode-4/26/slow-90.json +++ b/tests/__snapshots__/qrcode-4/26/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/27/fast-0.json b/tests/__snapshots__/qrcode-4/27/fast-0.json index 2f1965c4..8afa7232 100644 --- a/tests/__snapshots__/qrcode-4/27/fast-0.json +++ b/tests/__snapshots__/qrcode-4/27/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/27/fast-180.json b/tests/__snapshots__/qrcode-4/27/fast-180.json index aa1b664e..c9560b45 100644 --- a/tests/__snapshots__/qrcode-4/27/fast-180.json +++ b/tests/__snapshots__/qrcode-4/27/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/27/fast-270.json b/tests/__snapshots__/qrcode-4/27/fast-270.json index ec920a36..a55bcdb6 100644 --- a/tests/__snapshots__/qrcode-4/27/fast-270.json +++ b/tests/__snapshots__/qrcode-4/27/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/27/fast-90.json b/tests/__snapshots__/qrcode-4/27/fast-90.json index abada5f3..7ea900ea 100644 --- a/tests/__snapshots__/qrcode-4/27/fast-90.json +++ b/tests/__snapshots__/qrcode-4/27/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/27/slow-0.json b/tests/__snapshots__/qrcode-4/27/slow-0.json index 2f1965c4..8afa7232 100644 --- a/tests/__snapshots__/qrcode-4/27/slow-0.json +++ b/tests/__snapshots__/qrcode-4/27/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/27/slow-180.json b/tests/__snapshots__/qrcode-4/27/slow-180.json index aa1b664e..c9560b45 100644 --- a/tests/__snapshots__/qrcode-4/27/slow-180.json +++ b/tests/__snapshots__/qrcode-4/27/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/27/slow-270.json b/tests/__snapshots__/qrcode-4/27/slow-270.json index ec920a36..a55bcdb6 100644 --- a/tests/__snapshots__/qrcode-4/27/slow-270.json +++ b/tests/__snapshots__/qrcode-4/27/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/27/slow-90.json b/tests/__snapshots__/qrcode-4/27/slow-90.json index abada5f3..7ea900ea 100644 --- a/tests/__snapshots__/qrcode-4/27/slow-90.json +++ b/tests/__snapshots__/qrcode-4/27/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/28/fast-0.json b/tests/__snapshots__/qrcode-4/28/fast-0.json index 7be04954..59078540 100644 --- a/tests/__snapshots__/qrcode-4/28/fast-0.json +++ b/tests/__snapshots__/qrcode-4/28/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/28/fast-180.json b/tests/__snapshots__/qrcode-4/28/fast-180.json index 3223273a..006ec8a5 100644 --- a/tests/__snapshots__/qrcode-4/28/fast-180.json +++ b/tests/__snapshots__/qrcode-4/28/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/28/fast-270.json b/tests/__snapshots__/qrcode-4/28/fast-270.json index ddc9972e..a497eddc 100644 --- a/tests/__snapshots__/qrcode-4/28/fast-270.json +++ b/tests/__snapshots__/qrcode-4/28/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/28/fast-90.json b/tests/__snapshots__/qrcode-4/28/fast-90.json index 8978eb35..f630505d 100644 --- a/tests/__snapshots__/qrcode-4/28/fast-90.json +++ b/tests/__snapshots__/qrcode-4/28/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/28/slow-0.json b/tests/__snapshots__/qrcode-4/28/slow-0.json index 7be04954..59078540 100644 --- a/tests/__snapshots__/qrcode-4/28/slow-0.json +++ b/tests/__snapshots__/qrcode-4/28/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/28/slow-180.json b/tests/__snapshots__/qrcode-4/28/slow-180.json index 3223273a..006ec8a5 100644 --- a/tests/__snapshots__/qrcode-4/28/slow-180.json +++ b/tests/__snapshots__/qrcode-4/28/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/28/slow-270.json b/tests/__snapshots__/qrcode-4/28/slow-270.json index ddc9972e..a497eddc 100644 --- a/tests/__snapshots__/qrcode-4/28/slow-270.json +++ b/tests/__snapshots__/qrcode-4/28/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/28/slow-90.json b/tests/__snapshots__/qrcode-4/28/slow-90.json index 8978eb35..f630505d 100644 --- a/tests/__snapshots__/qrcode-4/28/slow-90.json +++ b/tests/__snapshots__/qrcode-4/28/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/29/fast-0.json b/tests/__snapshots__/qrcode-4/29/fast-0.json index 511d6dec..63d0137a 100644 --- a/tests/__snapshots__/qrcode-4/29/fast-0.json +++ b/tests/__snapshots__/qrcode-4/29/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/29/fast-180.json b/tests/__snapshots__/qrcode-4/29/fast-180.json index 70140a74..7d907a5d 100644 --- a/tests/__snapshots__/qrcode-4/29/fast-180.json +++ b/tests/__snapshots__/qrcode-4/29/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/29/fast-270.json b/tests/__snapshots__/qrcode-4/29/fast-270.json index 743fefa3..d9dada4f 100644 --- a/tests/__snapshots__/qrcode-4/29/fast-270.json +++ b/tests/__snapshots__/qrcode-4/29/fast-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/29/fast-90.json b/tests/__snapshots__/qrcode-4/29/fast-90.json index 19494981..b45a78be 100644 --- a/tests/__snapshots__/qrcode-4/29/fast-90.json +++ b/tests/__snapshots__/qrcode-4/29/fast-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/29/slow-0.json b/tests/__snapshots__/qrcode-4/29/slow-0.json index 511d6dec..63d0137a 100644 --- a/tests/__snapshots__/qrcode-4/29/slow-0.json +++ b/tests/__snapshots__/qrcode-4/29/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/29/slow-180.json b/tests/__snapshots__/qrcode-4/29/slow-180.json index 70140a74..7d907a5d 100644 --- a/tests/__snapshots__/qrcode-4/29/slow-180.json +++ b/tests/__snapshots__/qrcode-4/29/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/29/slow-270.json b/tests/__snapshots__/qrcode-4/29/slow-270.json index 743fefa3..d9dada4f 100644 --- a/tests/__snapshots__/qrcode-4/29/slow-270.json +++ b/tests/__snapshots__/qrcode-4/29/slow-270.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/29/slow-90.json b/tests/__snapshots__/qrcode-4/29/slow-90.json index 19494981..b45a78be 100644 --- a/tests/__snapshots__/qrcode-4/29/slow-90.json +++ b/tests/__snapshots__/qrcode-4/29/slow-90.json @@ -5,7 +5,7 @@ "bytes": "9c9045e", "bytesECI": "4b722a3", "text": "http://code.google.com", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "3" + "version": "3", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-4/36/fast-0.json b/tests/__snapshots__/qrcode-4/36/fast-0.json index ac35c26f..f872cf50 100644 --- a/tests/__snapshots__/qrcode-4/36/fast-0.json +++ b/tests/__snapshots__/qrcode-4/36/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/36/fast-180.json b/tests/__snapshots__/qrcode-4/36/fast-180.json index 92cc8643..1cca93f1 100644 --- a/tests/__snapshots__/qrcode-4/36/fast-180.json +++ b/tests/__snapshots__/qrcode-4/36/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/36/fast-270.json b/tests/__snapshots__/qrcode-4/36/fast-270.json index 79c2203a..16e9c0c1 100644 --- a/tests/__snapshots__/qrcode-4/36/fast-270.json +++ b/tests/__snapshots__/qrcode-4/36/fast-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/36/fast-90.json b/tests/__snapshots__/qrcode-4/36/fast-90.json index ff533ada..7c92e57f 100644 --- a/tests/__snapshots__/qrcode-4/36/fast-90.json +++ b/tests/__snapshots__/qrcode-4/36/fast-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/36/slow-0.json b/tests/__snapshots__/qrcode-4/36/slow-0.json index ac35c26f..f872cf50 100644 --- a/tests/__snapshots__/qrcode-4/36/slow-0.json +++ b/tests/__snapshots__/qrcode-4/36/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/36/slow-180.json b/tests/__snapshots__/qrcode-4/36/slow-180.json index 92cc8643..1cca93f1 100644 --- a/tests/__snapshots__/qrcode-4/36/slow-180.json +++ b/tests/__snapshots__/qrcode-4/36/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/36/slow-270.json b/tests/__snapshots__/qrcode-4/36/slow-270.json index 79c2203a..16e9c0c1 100644 --- a/tests/__snapshots__/qrcode-4/36/slow-270.json +++ b/tests/__snapshots__/qrcode-4/36/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/36/slow-90.json b/tests/__snapshots__/qrcode-4/36/slow-90.json index ff533ada..7c92e57f 100644 --- a/tests/__snapshots__/qrcode-4/36/slow-90.json +++ b/tests/__snapshots__/qrcode-4/36/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/39/fast-0.json b/tests/__snapshots__/qrcode-4/39/fast-0.json index b1c89223..3d6c14fc 100644 --- a/tests/__snapshots__/qrcode-4/39/fast-0.json +++ b/tests/__snapshots__/qrcode-4/39/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/39/fast-180.json b/tests/__snapshots__/qrcode-4/39/fast-180.json index df59964c..70d09820 100644 --- a/tests/__snapshots__/qrcode-4/39/fast-180.json +++ b/tests/__snapshots__/qrcode-4/39/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/39/fast-270.json b/tests/__snapshots__/qrcode-4/39/fast-270.json index 816cd72a..6ecfe6f6 100644 --- a/tests/__snapshots__/qrcode-4/39/fast-270.json +++ b/tests/__snapshots__/qrcode-4/39/fast-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/39/fast-90.json b/tests/__snapshots__/qrcode-4/39/fast-90.json index affc01b8..f600a7ee 100644 --- a/tests/__snapshots__/qrcode-4/39/fast-90.json +++ b/tests/__snapshots__/qrcode-4/39/fast-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/39/slow-0.json b/tests/__snapshots__/qrcode-4/39/slow-0.json index b1c89223..3d6c14fc 100644 --- a/tests/__snapshots__/qrcode-4/39/slow-0.json +++ b/tests/__snapshots__/qrcode-4/39/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/39/slow-180.json b/tests/__snapshots__/qrcode-4/39/slow-180.json index df59964c..70d09820 100644 --- a/tests/__snapshots__/qrcode-4/39/slow-180.json +++ b/tests/__snapshots__/qrcode-4/39/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/39/slow-270.json b/tests/__snapshots__/qrcode-4/39/slow-270.json index 816cd72a..6ecfe6f6 100644 --- a/tests/__snapshots__/qrcode-4/39/slow-270.json +++ b/tests/__snapshots__/qrcode-4/39/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/39/slow-90.json b/tests/__snapshots__/qrcode-4/39/slow-90.json index affc01b8..f600a7ee 100644 --- a/tests/__snapshots__/qrcode-4/39/slow-90.json +++ b/tests/__snapshots__/qrcode-4/39/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/40/fast-0.json b/tests/__snapshots__/qrcode-4/40/fast-0.json index e0150737..c31a64a8 100644 --- a/tests/__snapshots__/qrcode-4/40/fast-0.json +++ b/tests/__snapshots__/qrcode-4/40/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/40/fast-180.json b/tests/__snapshots__/qrcode-4/40/fast-180.json index 6bf1d3dd..1d512b00 100644 --- a/tests/__snapshots__/qrcode-4/40/fast-180.json +++ b/tests/__snapshots__/qrcode-4/40/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/40/fast-270.json b/tests/__snapshots__/qrcode-4/40/fast-270.json index 9b60f7d4..d49d4b72 100644 --- a/tests/__snapshots__/qrcode-4/40/fast-270.json +++ b/tests/__snapshots__/qrcode-4/40/fast-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/40/fast-90.json b/tests/__snapshots__/qrcode-4/40/fast-90.json index f128edc4..244be2a2 100644 --- a/tests/__snapshots__/qrcode-4/40/fast-90.json +++ b/tests/__snapshots__/qrcode-4/40/fast-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/40/slow-0.json b/tests/__snapshots__/qrcode-4/40/slow-0.json index e0150737..c31a64a8 100644 --- a/tests/__snapshots__/qrcode-4/40/slow-0.json +++ b/tests/__snapshots__/qrcode-4/40/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/40/slow-180.json b/tests/__snapshots__/qrcode-4/40/slow-180.json index 6bf1d3dd..1d512b00 100644 --- a/tests/__snapshots__/qrcode-4/40/slow-180.json +++ b/tests/__snapshots__/qrcode-4/40/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/40/slow-270.json b/tests/__snapshots__/qrcode-4/40/slow-270.json index 9b60f7d4..d49d4b72 100644 --- a/tests/__snapshots__/qrcode-4/40/slow-270.json +++ b/tests/__snapshots__/qrcode-4/40/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/40/slow-90.json b/tests/__snapshots__/qrcode-4/40/slow-90.json index f128edc4..244be2a2 100644 --- a/tests/__snapshots__/qrcode-4/40/slow-90.json +++ b/tests/__snapshots__/qrcode-4/40/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/41/fast-0.json b/tests/__snapshots__/qrcode-4/41/fast-0.json index db0f8b26..18911541 100644 --- a/tests/__snapshots__/qrcode-4/41/fast-0.json +++ b/tests/__snapshots__/qrcode-4/41/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/41/fast-180.json b/tests/__snapshots__/qrcode-4/41/fast-180.json index 16c611d8..9d196b08 100644 --- a/tests/__snapshots__/qrcode-4/41/fast-180.json +++ b/tests/__snapshots__/qrcode-4/41/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/41/fast-270.json b/tests/__snapshots__/qrcode-4/41/fast-270.json index e3f07962..5d197619 100644 --- a/tests/__snapshots__/qrcode-4/41/fast-270.json +++ b/tests/__snapshots__/qrcode-4/41/fast-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/41/fast-90.json b/tests/__snapshots__/qrcode-4/41/fast-90.json index 3bf2629b..31a97624 100644 --- a/tests/__snapshots__/qrcode-4/41/fast-90.json +++ b/tests/__snapshots__/qrcode-4/41/fast-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/41/slow-0.json b/tests/__snapshots__/qrcode-4/41/slow-0.json index db0f8b26..18911541 100644 --- a/tests/__snapshots__/qrcode-4/41/slow-0.json +++ b/tests/__snapshots__/qrcode-4/41/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/41/slow-180.json b/tests/__snapshots__/qrcode-4/41/slow-180.json index 16c611d8..9d196b08 100644 --- a/tests/__snapshots__/qrcode-4/41/slow-180.json +++ b/tests/__snapshots__/qrcode-4/41/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/41/slow-270.json b/tests/__snapshots__/qrcode-4/41/slow-270.json index e3f07962..5d197619 100644 --- a/tests/__snapshots__/qrcode-4/41/slow-270.json +++ b/tests/__snapshots__/qrcode-4/41/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/41/slow-90.json b/tests/__snapshots__/qrcode-4/41/slow-90.json index 3bf2629b..31a97624 100644 --- a/tests/__snapshots__/qrcode-4/41/slow-90.json +++ b/tests/__snapshots__/qrcode-4/41/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/42/fast-0.json b/tests/__snapshots__/qrcode-4/42/fast-0.json index 0db4cacb..9a777cdd 100644 --- a/tests/__snapshots__/qrcode-4/42/fast-0.json +++ b/tests/__snapshots__/qrcode-4/42/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/42/fast-180.json b/tests/__snapshots__/qrcode-4/42/fast-180.json index 384163af..09f36bcc 100644 --- a/tests/__snapshots__/qrcode-4/42/fast-180.json +++ b/tests/__snapshots__/qrcode-4/42/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/42/fast-270.json b/tests/__snapshots__/qrcode-4/42/fast-270.json index 161ac225..53eb11c4 100644 --- a/tests/__snapshots__/qrcode-4/42/fast-270.json +++ b/tests/__snapshots__/qrcode-4/42/fast-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/42/fast-90.json b/tests/__snapshots__/qrcode-4/42/fast-90.json index b53408d9..30d4343f 100644 --- a/tests/__snapshots__/qrcode-4/42/fast-90.json +++ b/tests/__snapshots__/qrcode-4/42/fast-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/42/slow-0.json b/tests/__snapshots__/qrcode-4/42/slow-0.json index 0db4cacb..9a777cdd 100644 --- a/tests/__snapshots__/qrcode-4/42/slow-0.json +++ b/tests/__snapshots__/qrcode-4/42/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/42/slow-180.json b/tests/__snapshots__/qrcode-4/42/slow-180.json index 384163af..09f36bcc 100644 --- a/tests/__snapshots__/qrcode-4/42/slow-180.json +++ b/tests/__snapshots__/qrcode-4/42/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/42/slow-270.json b/tests/__snapshots__/qrcode-4/42/slow-270.json index 161ac225..53eb11c4 100644 --- a/tests/__snapshots__/qrcode-4/42/slow-270.json +++ b/tests/__snapshots__/qrcode-4/42/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/42/slow-90.json b/tests/__snapshots__/qrcode-4/42/slow-90.json index b53408d9..30d4343f 100644 --- a/tests/__snapshots__/qrcode-4/42/slow-90.json +++ b/tests/__snapshots__/qrcode-4/42/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/43/fast-0.json b/tests/__snapshots__/qrcode-4/43/fast-0.json index f53a1675..b3c534f5 100644 --- a/tests/__snapshots__/qrcode-4/43/fast-0.json +++ b/tests/__snapshots__/qrcode-4/43/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/43/fast-180.json b/tests/__snapshots__/qrcode-4/43/fast-180.json index d1166641..e176e00b 100644 --- a/tests/__snapshots__/qrcode-4/43/fast-180.json +++ b/tests/__snapshots__/qrcode-4/43/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/43/fast-270.json b/tests/__snapshots__/qrcode-4/43/fast-270.json index 6e673608..235af722 100644 --- a/tests/__snapshots__/qrcode-4/43/fast-270.json +++ b/tests/__snapshots__/qrcode-4/43/fast-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/43/fast-90.json b/tests/__snapshots__/qrcode-4/43/fast-90.json index 6eb78cd9..43148d9e 100644 --- a/tests/__snapshots__/qrcode-4/43/fast-90.json +++ b/tests/__snapshots__/qrcode-4/43/fast-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/43/slow-0.json b/tests/__snapshots__/qrcode-4/43/slow-0.json index f53a1675..b3c534f5 100644 --- a/tests/__snapshots__/qrcode-4/43/slow-0.json +++ b/tests/__snapshots__/qrcode-4/43/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/43/slow-180.json b/tests/__snapshots__/qrcode-4/43/slow-180.json index d1166641..e176e00b 100644 --- a/tests/__snapshots__/qrcode-4/43/slow-180.json +++ b/tests/__snapshots__/qrcode-4/43/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/43/slow-270.json b/tests/__snapshots__/qrcode-4/43/slow-270.json index 6e673608..235af722 100644 --- a/tests/__snapshots__/qrcode-4/43/slow-270.json +++ b/tests/__snapshots__/qrcode-4/43/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/43/slow-90.json b/tests/__snapshots__/qrcode-4/43/slow-90.json index 6eb78cd9..43148d9e 100644 --- a/tests/__snapshots__/qrcode-4/43/slow-90.json +++ b/tests/__snapshots__/qrcode-4/43/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/46/fast-0.json b/tests/__snapshots__/qrcode-4/46/fast-0.json index 24db0dac..95b9029a 100644 --- a/tests/__snapshots__/qrcode-4/46/fast-0.json +++ b/tests/__snapshots__/qrcode-4/46/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/46/fast-180.json b/tests/__snapshots__/qrcode-4/46/fast-180.json index 92ee188b..2f2779c2 100644 --- a/tests/__snapshots__/qrcode-4/46/fast-180.json +++ b/tests/__snapshots__/qrcode-4/46/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/46/fast-270.json b/tests/__snapshots__/qrcode-4/46/fast-270.json index c64f7722..8e54a629 100644 --- a/tests/__snapshots__/qrcode-4/46/fast-270.json +++ b/tests/__snapshots__/qrcode-4/46/fast-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/46/fast-90.json b/tests/__snapshots__/qrcode-4/46/fast-90.json index 36afbac3..ecb45042 100644 --- a/tests/__snapshots__/qrcode-4/46/fast-90.json +++ b/tests/__snapshots__/qrcode-4/46/fast-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/46/slow-0.json b/tests/__snapshots__/qrcode-4/46/slow-0.json index 24db0dac..95b9029a 100644 --- a/tests/__snapshots__/qrcode-4/46/slow-0.json +++ b/tests/__snapshots__/qrcode-4/46/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/46/slow-180.json b/tests/__snapshots__/qrcode-4/46/slow-180.json index 92ee188b..2f2779c2 100644 --- a/tests/__snapshots__/qrcode-4/46/slow-180.json +++ b/tests/__snapshots__/qrcode-4/46/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/46/slow-270.json b/tests/__snapshots__/qrcode-4/46/slow-270.json index c64f7722..8e54a629 100644 --- a/tests/__snapshots__/qrcode-4/46/slow-270.json +++ b/tests/__snapshots__/qrcode-4/46/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/46/slow-90.json b/tests/__snapshots__/qrcode-4/46/slow-90.json index 36afbac3..ecb45042 100644 --- a/tests/__snapshots__/qrcode-4/46/slow-90.json +++ b/tests/__snapshots__/qrcode-4/46/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/48/fast-0.json b/tests/__snapshots__/qrcode-4/48/fast-0.json index a9ddae3d..840ebcd4 100644 --- a/tests/__snapshots__/qrcode-4/48/fast-0.json +++ b/tests/__snapshots__/qrcode-4/48/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/48/fast-180.json b/tests/__snapshots__/qrcode-4/48/fast-180.json index 67d347ce..4a2c9cff 100644 --- a/tests/__snapshots__/qrcode-4/48/fast-180.json +++ b/tests/__snapshots__/qrcode-4/48/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/48/fast-270.json b/tests/__snapshots__/qrcode-4/48/fast-270.json index 825d8e58..46f2ae78 100644 --- a/tests/__snapshots__/qrcode-4/48/fast-270.json +++ b/tests/__snapshots__/qrcode-4/48/fast-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/48/fast-90.json b/tests/__snapshots__/qrcode-4/48/fast-90.json index 7005b737..98b89116 100644 --- a/tests/__snapshots__/qrcode-4/48/fast-90.json +++ b/tests/__snapshots__/qrcode-4/48/fast-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/48/slow-0.json b/tests/__snapshots__/qrcode-4/48/slow-0.json index a9ddae3d..840ebcd4 100644 --- a/tests/__snapshots__/qrcode-4/48/slow-0.json +++ b/tests/__snapshots__/qrcode-4/48/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/48/slow-180.json b/tests/__snapshots__/qrcode-4/48/slow-180.json index 67d347ce..4a2c9cff 100644 --- a/tests/__snapshots__/qrcode-4/48/slow-180.json +++ b/tests/__snapshots__/qrcode-4/48/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/48/slow-270.json b/tests/__snapshots__/qrcode-4/48/slow-270.json index 825d8e58..46f2ae78 100644 --- a/tests/__snapshots__/qrcode-4/48/slow-270.json +++ b/tests/__snapshots__/qrcode-4/48/slow-270.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-4/48/slow-90.json b/tests/__snapshots__/qrcode-4/48/slow-90.json index 7005b737..98b89116 100644 --- a/tests/__snapshots__/qrcode-4/48/slow-90.json +++ b/tests/__snapshots__/qrcode-4/48/slow-90.json @@ -5,7 +5,7 @@ "bytes": "1bf6bb1", "bytesECI": "4d8e40e", "text": "http://code.google.com/p/zxing/", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "2" + "version": "2", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/01/fast-0.json b/tests/__snapshots__/qrcode-5/01/fast-0.json index b5b71629..6c0fade3 100644 --- a/tests/__snapshots__/qrcode-5/01/fast-0.json +++ b/tests/__snapshots__/qrcode-5/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/01/fast-180.json b/tests/__snapshots__/qrcode-5/01/fast-180.json index d4aaf94f..5104b36b 100644 --- a/tests/__snapshots__/qrcode-5/01/fast-180.json +++ b/tests/__snapshots__/qrcode-5/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/01/fast-270.json b/tests/__snapshots__/qrcode-5/01/fast-270.json index 3407ef03..64f3ae5c 100644 --- a/tests/__snapshots__/qrcode-5/01/fast-270.json +++ b/tests/__snapshots__/qrcode-5/01/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/01/fast-90.json b/tests/__snapshots__/qrcode-5/01/fast-90.json index 03de1a78..010c6c76 100644 --- a/tests/__snapshots__/qrcode-5/01/fast-90.json +++ b/tests/__snapshots__/qrcode-5/01/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/01/pure-0.json b/tests/__snapshots__/qrcode-5/01/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-5/01/pure-0.json +++ b/tests/__snapshots__/qrcode-5/01/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-5/01/slow-0.json b/tests/__snapshots__/qrcode-5/01/slow-0.json index b5b71629..6c0fade3 100644 --- a/tests/__snapshots__/qrcode-5/01/slow-0.json +++ b/tests/__snapshots__/qrcode-5/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/01/slow-180.json b/tests/__snapshots__/qrcode-5/01/slow-180.json index d4aaf94f..5104b36b 100644 --- a/tests/__snapshots__/qrcode-5/01/slow-180.json +++ b/tests/__snapshots__/qrcode-5/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/01/slow-270.json b/tests/__snapshots__/qrcode-5/01/slow-270.json index 3407ef03..64f3ae5c 100644 --- a/tests/__snapshots__/qrcode-5/01/slow-270.json +++ b/tests/__snapshots__/qrcode-5/01/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/01/slow-90.json b/tests/__snapshots__/qrcode-5/01/slow-90.json index 03de1a78..010c6c76 100644 --- a/tests/__snapshots__/qrcode-5/01/slow-90.json +++ b/tests/__snapshots__/qrcode-5/01/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/02/fast-0.json b/tests/__snapshots__/qrcode-5/02/fast-0.json index ae103f54..f0af7094 100644 --- a/tests/__snapshots__/qrcode-5/02/fast-0.json +++ b/tests/__snapshots__/qrcode-5/02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/02/fast-180.json b/tests/__snapshots__/qrcode-5/02/fast-180.json index 67751e95..41a1ef7f 100644 --- a/tests/__snapshots__/qrcode-5/02/fast-180.json +++ b/tests/__snapshots__/qrcode-5/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/02/fast-270.json b/tests/__snapshots__/qrcode-5/02/fast-270.json index 854876c1..dd3157ca 100644 --- a/tests/__snapshots__/qrcode-5/02/fast-270.json +++ b/tests/__snapshots__/qrcode-5/02/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/02/fast-90.json b/tests/__snapshots__/qrcode-5/02/fast-90.json index bd489b74..3576c1a2 100644 --- a/tests/__snapshots__/qrcode-5/02/fast-90.json +++ b/tests/__snapshots__/qrcode-5/02/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/02/pure-0.json b/tests/__snapshots__/qrcode-5/02/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-5/02/pure-0.json +++ b/tests/__snapshots__/qrcode-5/02/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-5/02/slow-0.json b/tests/__snapshots__/qrcode-5/02/slow-0.json index ae103f54..f0af7094 100644 --- a/tests/__snapshots__/qrcode-5/02/slow-0.json +++ b/tests/__snapshots__/qrcode-5/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/02/slow-180.json b/tests/__snapshots__/qrcode-5/02/slow-180.json index 67751e95..41a1ef7f 100644 --- a/tests/__snapshots__/qrcode-5/02/slow-180.json +++ b/tests/__snapshots__/qrcode-5/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/02/slow-270.json b/tests/__snapshots__/qrcode-5/02/slow-270.json index 854876c1..dd3157ca 100644 --- a/tests/__snapshots__/qrcode-5/02/slow-270.json +++ b/tests/__snapshots__/qrcode-5/02/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/02/slow-90.json b/tests/__snapshots__/qrcode-5/02/slow-90.json index bd489b74..3576c1a2 100644 --- a/tests/__snapshots__/qrcode-5/02/slow-90.json +++ b/tests/__snapshots__/qrcode-5/02/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/03/fast-0.json b/tests/__snapshots__/qrcode-5/03/fast-0.json index dd798381..2d1d40bd 100644 --- a/tests/__snapshots__/qrcode-5/03/fast-0.json +++ b/tests/__snapshots__/qrcode-5/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/03/fast-180.json b/tests/__snapshots__/qrcode-5/03/fast-180.json index d0030aec..460f6c22 100644 --- a/tests/__snapshots__/qrcode-5/03/fast-180.json +++ b/tests/__snapshots__/qrcode-5/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/03/fast-270.json b/tests/__snapshots__/qrcode-5/03/fast-270.json index ff987789..779f25fa 100644 --- a/tests/__snapshots__/qrcode-5/03/fast-270.json +++ b/tests/__snapshots__/qrcode-5/03/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/03/fast-90.json b/tests/__snapshots__/qrcode-5/03/fast-90.json index fc56a260..f40a706c 100644 --- a/tests/__snapshots__/qrcode-5/03/fast-90.json +++ b/tests/__snapshots__/qrcode-5/03/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/03/pure-0.json b/tests/__snapshots__/qrcode-5/03/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-5/03/pure-0.json +++ b/tests/__snapshots__/qrcode-5/03/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-5/03/slow-0.json b/tests/__snapshots__/qrcode-5/03/slow-0.json index dd798381..2d1d40bd 100644 --- a/tests/__snapshots__/qrcode-5/03/slow-0.json +++ b/tests/__snapshots__/qrcode-5/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/03/slow-180.json b/tests/__snapshots__/qrcode-5/03/slow-180.json index d0030aec..460f6c22 100644 --- a/tests/__snapshots__/qrcode-5/03/slow-180.json +++ b/tests/__snapshots__/qrcode-5/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/03/slow-270.json b/tests/__snapshots__/qrcode-5/03/slow-270.json index ff987789..779f25fa 100644 --- a/tests/__snapshots__/qrcode-5/03/slow-270.json +++ b/tests/__snapshots__/qrcode-5/03/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/03/slow-90.json b/tests/__snapshots__/qrcode-5/03/slow-90.json index fc56a260..f40a706c 100644 --- a/tests/__snapshots__/qrcode-5/03/slow-90.json +++ b/tests/__snapshots__/qrcode-5/03/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/04/fast-0.json b/tests/__snapshots__/qrcode-5/04/fast-0.json index 938d50c7..131948b7 100644 --- a/tests/__snapshots__/qrcode-5/04/fast-0.json +++ b/tests/__snapshots__/qrcode-5/04/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/04/fast-180.json b/tests/__snapshots__/qrcode-5/04/fast-180.json index 263edf2a..72595291 100644 --- a/tests/__snapshots__/qrcode-5/04/fast-180.json +++ b/tests/__snapshots__/qrcode-5/04/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/04/fast-270.json b/tests/__snapshots__/qrcode-5/04/fast-270.json index d3085ab5..29c76251 100644 --- a/tests/__snapshots__/qrcode-5/04/fast-270.json +++ b/tests/__snapshots__/qrcode-5/04/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/04/fast-90.json b/tests/__snapshots__/qrcode-5/04/fast-90.json index 320f8e4b..1b668a83 100644 --- a/tests/__snapshots__/qrcode-5/04/fast-90.json +++ b/tests/__snapshots__/qrcode-5/04/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/04/pure-0.json b/tests/__snapshots__/qrcode-5/04/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-5/04/pure-0.json +++ b/tests/__snapshots__/qrcode-5/04/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-5/04/slow-0.json b/tests/__snapshots__/qrcode-5/04/slow-0.json index 938d50c7..131948b7 100644 --- a/tests/__snapshots__/qrcode-5/04/slow-0.json +++ b/tests/__snapshots__/qrcode-5/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/04/slow-180.json b/tests/__snapshots__/qrcode-5/04/slow-180.json index 263edf2a..72595291 100644 --- a/tests/__snapshots__/qrcode-5/04/slow-180.json +++ b/tests/__snapshots__/qrcode-5/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/04/slow-270.json b/tests/__snapshots__/qrcode-5/04/slow-270.json index d3085ab5..29c76251 100644 --- a/tests/__snapshots__/qrcode-5/04/slow-270.json +++ b/tests/__snapshots__/qrcode-5/04/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/04/slow-90.json b/tests/__snapshots__/qrcode-5/04/slow-90.json index 320f8e4b..1b668a83 100644 --- a/tests/__snapshots__/qrcode-5/04/slow-90.json +++ b/tests/__snapshots__/qrcode-5/04/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/05/fast-0.json b/tests/__snapshots__/qrcode-5/05/fast-0.json index 391c7b90..8efb4120 100644 --- a/tests/__snapshots__/qrcode-5/05/fast-0.json +++ b/tests/__snapshots__/qrcode-5/05/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/05/fast-180.json b/tests/__snapshots__/qrcode-5/05/fast-180.json index c621a43d..0997a690 100644 --- a/tests/__snapshots__/qrcode-5/05/fast-180.json +++ b/tests/__snapshots__/qrcode-5/05/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/05/fast-270.json b/tests/__snapshots__/qrcode-5/05/fast-270.json index 03f18652..2ec532f8 100644 --- a/tests/__snapshots__/qrcode-5/05/fast-270.json +++ b/tests/__snapshots__/qrcode-5/05/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/05/fast-90.json b/tests/__snapshots__/qrcode-5/05/fast-90.json index 1296e4c6..a12683f5 100644 --- a/tests/__snapshots__/qrcode-5/05/fast-90.json +++ b/tests/__snapshots__/qrcode-5/05/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/05/pure-0.json b/tests/__snapshots__/qrcode-5/05/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-5/05/pure-0.json +++ b/tests/__snapshots__/qrcode-5/05/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-5/05/slow-0.json b/tests/__snapshots__/qrcode-5/05/slow-0.json index 391c7b90..8efb4120 100644 --- a/tests/__snapshots__/qrcode-5/05/slow-0.json +++ b/tests/__snapshots__/qrcode-5/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/05/slow-180.json b/tests/__snapshots__/qrcode-5/05/slow-180.json index c621a43d..0997a690 100644 --- a/tests/__snapshots__/qrcode-5/05/slow-180.json +++ b/tests/__snapshots__/qrcode-5/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/05/slow-270.json b/tests/__snapshots__/qrcode-5/05/slow-270.json index 03f18652..2ec532f8 100644 --- a/tests/__snapshots__/qrcode-5/05/slow-270.json +++ b/tests/__snapshots__/qrcode-5/05/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/05/slow-90.json b/tests/__snapshots__/qrcode-5/05/slow-90.json index 1296e4c6..a12683f5 100644 --- a/tests/__snapshots__/qrcode-5/05/slow-90.json +++ b/tests/__snapshots__/qrcode-5/05/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/08/fast-0.json b/tests/__snapshots__/qrcode-5/08/fast-0.json index 32de2014..82b72739 100644 --- a/tests/__snapshots__/qrcode-5/08/fast-0.json +++ b/tests/__snapshots__/qrcode-5/08/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/08/fast-180.json b/tests/__snapshots__/qrcode-5/08/fast-180.json index 2221160b..fb323309 100644 --- a/tests/__snapshots__/qrcode-5/08/fast-180.json +++ b/tests/__snapshots__/qrcode-5/08/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/08/fast-270.json b/tests/__snapshots__/qrcode-5/08/fast-270.json index 0b2d97df..97329148 100644 --- a/tests/__snapshots__/qrcode-5/08/fast-270.json +++ b/tests/__snapshots__/qrcode-5/08/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/08/fast-90.json b/tests/__snapshots__/qrcode-5/08/fast-90.json index a02333a3..014a78bd 100644 --- a/tests/__snapshots__/qrcode-5/08/fast-90.json +++ b/tests/__snapshots__/qrcode-5/08/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/08/pure-0.json b/tests/__snapshots__/qrcode-5/08/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-5/08/pure-0.json +++ b/tests/__snapshots__/qrcode-5/08/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-5/08/slow-0.json b/tests/__snapshots__/qrcode-5/08/slow-0.json index 32de2014..82b72739 100644 --- a/tests/__snapshots__/qrcode-5/08/slow-0.json +++ b/tests/__snapshots__/qrcode-5/08/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/08/slow-180.json b/tests/__snapshots__/qrcode-5/08/slow-180.json index 2221160b..fb323309 100644 --- a/tests/__snapshots__/qrcode-5/08/slow-180.json +++ b/tests/__snapshots__/qrcode-5/08/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/08/slow-270.json b/tests/__snapshots__/qrcode-5/08/slow-270.json index 0b2d97df..97329148 100644 --- a/tests/__snapshots__/qrcode-5/08/slow-270.json +++ b/tests/__snapshots__/qrcode-5/08/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/08/slow-90.json b/tests/__snapshots__/qrcode-5/08/slow-90.json index a02333a3..014a78bd 100644 --- a/tests/__snapshots__/qrcode-5/08/slow-90.json +++ b/tests/__snapshots__/qrcode-5/08/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/09/fast-0.json b/tests/__snapshots__/qrcode-5/09/fast-0.json index d8de45ac..c1e8293e 100644 --- a/tests/__snapshots__/qrcode-5/09/fast-0.json +++ b/tests/__snapshots__/qrcode-5/09/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/09/fast-180.json b/tests/__snapshots__/qrcode-5/09/fast-180.json index 395d4834..d1c327e4 100644 --- a/tests/__snapshots__/qrcode-5/09/fast-180.json +++ b/tests/__snapshots__/qrcode-5/09/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/09/fast-270.json b/tests/__snapshots__/qrcode-5/09/fast-270.json index 79a3aef1..3248350e 100644 --- a/tests/__snapshots__/qrcode-5/09/fast-270.json +++ b/tests/__snapshots__/qrcode-5/09/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/09/fast-90.json b/tests/__snapshots__/qrcode-5/09/fast-90.json index 3e5a1342..cc6832a3 100644 --- a/tests/__snapshots__/qrcode-5/09/fast-90.json +++ b/tests/__snapshots__/qrcode-5/09/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/09/pure-0.json b/tests/__snapshots__/qrcode-5/09/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-5/09/pure-0.json +++ b/tests/__snapshots__/qrcode-5/09/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-5/09/slow-0.json b/tests/__snapshots__/qrcode-5/09/slow-0.json index d8de45ac..c1e8293e 100644 --- a/tests/__snapshots__/qrcode-5/09/slow-0.json +++ b/tests/__snapshots__/qrcode-5/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/09/slow-180.json b/tests/__snapshots__/qrcode-5/09/slow-180.json index 395d4834..d1c327e4 100644 --- a/tests/__snapshots__/qrcode-5/09/slow-180.json +++ b/tests/__snapshots__/qrcode-5/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/09/slow-270.json b/tests/__snapshots__/qrcode-5/09/slow-270.json index 79a3aef1..3248350e 100644 --- a/tests/__snapshots__/qrcode-5/09/slow-270.json +++ b/tests/__snapshots__/qrcode-5/09/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/09/slow-90.json b/tests/__snapshots__/qrcode-5/09/slow-90.json index 3e5a1342..cc6832a3 100644 --- a/tests/__snapshots__/qrcode-5/09/slow-90.json +++ b/tests/__snapshots__/qrcode-5/09/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/11/fast-0.json b/tests/__snapshots__/qrcode-5/11/fast-0.json index 1ee89556..f224902a 100644 --- a/tests/__snapshots__/qrcode-5/11/fast-0.json +++ b/tests/__snapshots__/qrcode-5/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/11/fast-180.json b/tests/__snapshots__/qrcode-5/11/fast-180.json index 1db1bb53..4bce2ee9 100644 --- a/tests/__snapshots__/qrcode-5/11/fast-180.json +++ b/tests/__snapshots__/qrcode-5/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/11/fast-270.json b/tests/__snapshots__/qrcode-5/11/fast-270.json index 8663dca9..832c4402 100644 --- a/tests/__snapshots__/qrcode-5/11/fast-270.json +++ b/tests/__snapshots__/qrcode-5/11/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/11/fast-90.json b/tests/__snapshots__/qrcode-5/11/fast-90.json index 4f60d31d..e0ed138b 100644 --- a/tests/__snapshots__/qrcode-5/11/fast-90.json +++ b/tests/__snapshots__/qrcode-5/11/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/11/pure-0.json b/tests/__snapshots__/qrcode-5/11/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-5/11/pure-0.json +++ b/tests/__snapshots__/qrcode-5/11/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-5/11/slow-0.json b/tests/__snapshots__/qrcode-5/11/slow-0.json index 1ee89556..f224902a 100644 --- a/tests/__snapshots__/qrcode-5/11/slow-0.json +++ b/tests/__snapshots__/qrcode-5/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/11/slow-180.json b/tests/__snapshots__/qrcode-5/11/slow-180.json index 1db1bb53..4bce2ee9 100644 --- a/tests/__snapshots__/qrcode-5/11/slow-180.json +++ b/tests/__snapshots__/qrcode-5/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/11/slow-270.json b/tests/__snapshots__/qrcode-5/11/slow-270.json index 8663dca9..832c4402 100644 --- a/tests/__snapshots__/qrcode-5/11/slow-270.json +++ b/tests/__snapshots__/qrcode-5/11/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/11/slow-90.json b/tests/__snapshots__/qrcode-5/11/slow-90.json index 4f60d31d..e0ed138b 100644 --- a/tests/__snapshots__/qrcode-5/11/slow-90.json +++ b/tests/__snapshots__/qrcode-5/11/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/12/fast-0.json b/tests/__snapshots__/qrcode-5/12/fast-0.json index 46d36abe..185d5e22 100644 --- a/tests/__snapshots__/qrcode-5/12/fast-0.json +++ b/tests/__snapshots__/qrcode-5/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/12/fast-180.json b/tests/__snapshots__/qrcode-5/12/fast-180.json index c5793277..dbaef7de 100644 --- a/tests/__snapshots__/qrcode-5/12/fast-180.json +++ b/tests/__snapshots__/qrcode-5/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/12/fast-270.json b/tests/__snapshots__/qrcode-5/12/fast-270.json index d2dea8a2..16c3dd21 100644 --- a/tests/__snapshots__/qrcode-5/12/fast-270.json +++ b/tests/__snapshots__/qrcode-5/12/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/12/fast-90.json b/tests/__snapshots__/qrcode-5/12/fast-90.json index 6e10b1cf..e2d4fc43 100644 --- a/tests/__snapshots__/qrcode-5/12/fast-90.json +++ b/tests/__snapshots__/qrcode-5/12/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/12/pure-0.json b/tests/__snapshots__/qrcode-5/12/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-5/12/pure-0.json +++ b/tests/__snapshots__/qrcode-5/12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-5/12/slow-0.json b/tests/__snapshots__/qrcode-5/12/slow-0.json index 46d36abe..185d5e22 100644 --- a/tests/__snapshots__/qrcode-5/12/slow-0.json +++ b/tests/__snapshots__/qrcode-5/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/12/slow-180.json b/tests/__snapshots__/qrcode-5/12/slow-180.json index c5793277..dbaef7de 100644 --- a/tests/__snapshots__/qrcode-5/12/slow-180.json +++ b/tests/__snapshots__/qrcode-5/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/12/slow-270.json b/tests/__snapshots__/qrcode-5/12/slow-270.json index d2dea8a2..16c3dd21 100644 --- a/tests/__snapshots__/qrcode-5/12/slow-270.json +++ b/tests/__snapshots__/qrcode-5/12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/12/slow-90.json b/tests/__snapshots__/qrcode-5/12/slow-90.json index 6e10b1cf..e2d4fc43 100644 --- a/tests/__snapshots__/qrcode-5/12/slow-90.json +++ b/tests/__snapshots__/qrcode-5/12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/13/fast-0.json b/tests/__snapshots__/qrcode-5/13/fast-0.json index 594f7e7c..092cf405 100644 --- a/tests/__snapshots__/qrcode-5/13/fast-0.json +++ b/tests/__snapshots__/qrcode-5/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/13/fast-180.json b/tests/__snapshots__/qrcode-5/13/fast-180.json index 152f37d3..79be4c08 100644 --- a/tests/__snapshots__/qrcode-5/13/fast-180.json +++ b/tests/__snapshots__/qrcode-5/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/13/fast-270.json b/tests/__snapshots__/qrcode-5/13/fast-270.json index d1e3bf4d..d5042f1c 100644 --- a/tests/__snapshots__/qrcode-5/13/fast-270.json +++ b/tests/__snapshots__/qrcode-5/13/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/13/fast-90.json b/tests/__snapshots__/qrcode-5/13/fast-90.json index 6b565dc1..fdc70e6a 100644 --- a/tests/__snapshots__/qrcode-5/13/fast-90.json +++ b/tests/__snapshots__/qrcode-5/13/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/13/pure-0.json b/tests/__snapshots__/qrcode-5/13/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-5/13/pure-0.json +++ b/tests/__snapshots__/qrcode-5/13/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-5/13/slow-0.json b/tests/__snapshots__/qrcode-5/13/slow-0.json index 594f7e7c..092cf405 100644 --- a/tests/__snapshots__/qrcode-5/13/slow-0.json +++ b/tests/__snapshots__/qrcode-5/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/13/slow-180.json b/tests/__snapshots__/qrcode-5/13/slow-180.json index 152f37d3..79be4c08 100644 --- a/tests/__snapshots__/qrcode-5/13/slow-180.json +++ b/tests/__snapshots__/qrcode-5/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/13/slow-270.json b/tests/__snapshots__/qrcode-5/13/slow-270.json index d1e3bf4d..d5042f1c 100644 --- a/tests/__snapshots__/qrcode-5/13/slow-270.json +++ b/tests/__snapshots__/qrcode-5/13/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/13/slow-90.json b/tests/__snapshots__/qrcode-5/13/slow-90.json index 6b565dc1..fdc70e6a 100644 --- a/tests/__snapshots__/qrcode-5/13/slow-90.json +++ b/tests/__snapshots__/qrcode-5/13/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/14/fast-0.json b/tests/__snapshots__/qrcode-5/14/fast-0.json index 78b98a92..44c3ccc9 100644 --- a/tests/__snapshots__/qrcode-5/14/fast-0.json +++ b/tests/__snapshots__/qrcode-5/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/14/fast-180.json b/tests/__snapshots__/qrcode-5/14/fast-180.json index 9e7aaac4..4406733f 100644 --- a/tests/__snapshots__/qrcode-5/14/fast-180.json +++ b/tests/__snapshots__/qrcode-5/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/14/fast-270.json b/tests/__snapshots__/qrcode-5/14/fast-270.json index 1396220a..404d80c1 100644 --- a/tests/__snapshots__/qrcode-5/14/fast-270.json +++ b/tests/__snapshots__/qrcode-5/14/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/14/fast-90.json b/tests/__snapshots__/qrcode-5/14/fast-90.json index 2502db9f..b7dbbc35 100644 --- a/tests/__snapshots__/qrcode-5/14/fast-90.json +++ b/tests/__snapshots__/qrcode-5/14/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/14/pure-0.json b/tests/__snapshots__/qrcode-5/14/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-5/14/pure-0.json +++ b/tests/__snapshots__/qrcode-5/14/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-5/14/slow-0.json b/tests/__snapshots__/qrcode-5/14/slow-0.json index 78b98a92..44c3ccc9 100644 --- a/tests/__snapshots__/qrcode-5/14/slow-0.json +++ b/tests/__snapshots__/qrcode-5/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/14/slow-180.json b/tests/__snapshots__/qrcode-5/14/slow-180.json index 9e7aaac4..4406733f 100644 --- a/tests/__snapshots__/qrcode-5/14/slow-180.json +++ b/tests/__snapshots__/qrcode-5/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/14/slow-270.json b/tests/__snapshots__/qrcode-5/14/slow-270.json index 1396220a..404d80c1 100644 --- a/tests/__snapshots__/qrcode-5/14/slow-270.json +++ b/tests/__snapshots__/qrcode-5/14/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/14/slow-90.json b/tests/__snapshots__/qrcode-5/14/slow-90.json index 2502db9f..b7dbbc35 100644 --- a/tests/__snapshots__/qrcode-5/14/slow-90.json +++ b/tests/__snapshots__/qrcode-5/14/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/15/fast-0.json b/tests/__snapshots__/qrcode-5/15/fast-0.json index 9ab63822..c5ffeed3 100644 --- a/tests/__snapshots__/qrcode-5/15/fast-0.json +++ b/tests/__snapshots__/qrcode-5/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/15/fast-180.json b/tests/__snapshots__/qrcode-5/15/fast-180.json index d0577381..5f6287c2 100644 --- a/tests/__snapshots__/qrcode-5/15/fast-180.json +++ b/tests/__snapshots__/qrcode-5/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/15/fast-270.json b/tests/__snapshots__/qrcode-5/15/fast-270.json index 68e1524e..a32d0101 100644 --- a/tests/__snapshots__/qrcode-5/15/fast-270.json +++ b/tests/__snapshots__/qrcode-5/15/fast-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/15/fast-90.json b/tests/__snapshots__/qrcode-5/15/fast-90.json index 94ac0e8e..75a205fb 100644 --- a/tests/__snapshots__/qrcode-5/15/fast-90.json +++ b/tests/__snapshots__/qrcode-5/15/fast-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/15/pure-0.json b/tests/__snapshots__/qrcode-5/15/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/qrcode-5/15/pure-0.json +++ b/tests/__snapshots__/qrcode-5/15/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/qrcode-5/15/slow-0.json b/tests/__snapshots__/qrcode-5/15/slow-0.json index 9ab63822..c5ffeed3 100644 --- a/tests/__snapshots__/qrcode-5/15/slow-0.json +++ b/tests/__snapshots__/qrcode-5/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/15/slow-180.json b/tests/__snapshots__/qrcode-5/15/slow-180.json index d0577381..5f6287c2 100644 --- a/tests/__snapshots__/qrcode-5/15/slow-180.json +++ b/tests/__snapshots__/qrcode-5/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/15/slow-270.json b/tests/__snapshots__/qrcode-5/15/slow-270.json index 68e1524e..a32d0101 100644 --- a/tests/__snapshots__/qrcode-5/15/slow-270.json +++ b/tests/__snapshots__/qrcode-5/15/slow-270.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/15/slow-90.json b/tests/__snapshots__/qrcode-5/15/slow-90.json index 94ac0e8e..75a205fb 100644 --- a/tests/__snapshots__/qrcode-5/15/slow-90.json +++ b/tests/__snapshots__/qrcode-5/15/slow-90.json @@ -5,7 +5,7 @@ "bytes": "4c1a41c", "bytesECI": "cccdaf2", "text": "MECARD:N:Sean Owen;TEL:+12125658770;EMAIL:srowen@google.com;;", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/16/fast-0.json b/tests/__snapshots__/qrcode-5/16/fast-0.json index bee0cd29..eeeb9eb4 100644 --- a/tests/__snapshots__/qrcode-5/16/fast-0.json +++ b/tests/__snapshots__/qrcode-5/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b595920", "bytesECI": "b613475", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it got so cold, andit snowed so, they had to leave off. Never mind, Kitty, we'll go andsee the bonfire to-morrow.' Here Alice wound two or three turns of theworsted round the kitten's neck, just to see how it would look: this ledto a scramble, in which the ball rolled down upon the floor, and yardsand yards of it got unwound again.'Do you know, I was so angry, Kitty,' Alice went on as soon as they werecomfortably settled again, 'when I saw all the mischief you had beendoing, I was very nearly opening the window, and putting you out intothe snow! And you'd have deserved it, you little mischievous darling!Wha", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/16/fast-180.json b/tests/__snapshots__/qrcode-5/16/fast-180.json index d3d49d82..1773e1c7 100644 --- a/tests/__snapshots__/qrcode-5/16/fast-180.json +++ b/tests/__snapshots__/qrcode-5/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b595920", "bytesECI": "b613475", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it got so cold, andit snowed so, they had to leave off. Never mind, Kitty, we'll go andsee the bonfire to-morrow.' Here Alice wound two or three turns of theworsted round the kitten's neck, just to see how it would look: this ledto a scramble, in which the ball rolled down upon the floor, and yardsand yards of it got unwound again.'Do you know, I was so angry, Kitty,' Alice went on as soon as they werecomfortably settled again, 'when I saw all the mischief you had beendoing, I was very nearly opening the window, and putting you out intothe snow! And you'd have deserved it, you little mischievous darling!Wha", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/16/fast-270.json b/tests/__snapshots__/qrcode-5/16/fast-270.json index a20e9b6b..9a08e344 100644 --- a/tests/__snapshots__/qrcode-5/16/fast-270.json +++ b/tests/__snapshots__/qrcode-5/16/fast-270.json @@ -5,7 +5,7 @@ "bytes": "b595920", "bytesECI": "b613475", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it got so cold, andit snowed so, they had to leave off. Never mind, Kitty, we'll go andsee the bonfire to-morrow.' Here Alice wound two or three turns of theworsted round the kitten's neck, just to see how it would look: this ledto a scramble, in which the ball rolled down upon the floor, and yardsand yards of it got unwound again.'Do you know, I was so angry, Kitty,' Alice went on as soon as they werecomfortably settled again, 'when I saw all the mischief you had beendoing, I was very nearly opening the window, and putting you out intothe snow! And you'd have deserved it, you little mischievous darling!Wha", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/16/fast-90.json b/tests/__snapshots__/qrcode-5/16/fast-90.json index 183c2231..3ed96c48 100644 --- a/tests/__snapshots__/qrcode-5/16/fast-90.json +++ b/tests/__snapshots__/qrcode-5/16/fast-90.json @@ -5,7 +5,7 @@ "bytes": "b595920", "bytesECI": "b613475", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it got so cold, andit snowed so, they had to leave off. Never mind, Kitty, we'll go andsee the bonfire to-morrow.' Here Alice wound two or three turns of theworsted round the kitten's neck, just to see how it would look: this ledto a scramble, in which the ball rolled down upon the floor, and yardsand yards of it got unwound again.'Do you know, I was so angry, Kitty,' Alice went on as soon as they werecomfortably settled again, 'when I saw all the mischief you had beendoing, I was very nearly opening the window, and putting you out intothe snow! And you'd have deserved it, you little mischievous darling!Wha", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/16/pure-0.json b/tests/__snapshots__/qrcode-5/16/pure-0.json index 4d2d762a..8179778b 100644 --- a/tests/__snapshots__/qrcode-5/16/pure-0.json +++ b/tests/__snapshots__/qrcode-5/16/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b595920", "bytesECI": "b613475", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it got so cold, andit snowed so, they had to leave off. Never mind, Kitty, we'll go andsee the bonfire to-morrow.' Here Alice wound two or three turns of theworsted round the kitten's neck, just to see how it would look: this ledto a scramble, in which the ball rolled down upon the floor, and yardsand yards of it got unwound again.'Do you know, I was so angry, Kitty,' Alice went on as soon as they werecomfortably settled again, 'when I saw all the mischief you had beendoing, I was very nearly opening the window, and putting you out intothe snow! And you'd have deserved it, you little mischievous darling!Wha", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/16/slow-0.json b/tests/__snapshots__/qrcode-5/16/slow-0.json index bee0cd29..eeeb9eb4 100644 --- a/tests/__snapshots__/qrcode-5/16/slow-0.json +++ b/tests/__snapshots__/qrcode-5/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b595920", "bytesECI": "b613475", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it got so cold, andit snowed so, they had to leave off. Never mind, Kitty, we'll go andsee the bonfire to-morrow.' Here Alice wound two or three turns of theworsted round the kitten's neck, just to see how it would look: this ledto a scramble, in which the ball rolled down upon the floor, and yardsand yards of it got unwound again.'Do you know, I was so angry, Kitty,' Alice went on as soon as they werecomfortably settled again, 'when I saw all the mischief you had beendoing, I was very nearly opening the window, and putting you out intothe snow! And you'd have deserved it, you little mischievous darling!Wha", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/16/slow-180.json b/tests/__snapshots__/qrcode-5/16/slow-180.json index d3d49d82..1773e1c7 100644 --- a/tests/__snapshots__/qrcode-5/16/slow-180.json +++ b/tests/__snapshots__/qrcode-5/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b595920", "bytesECI": "b613475", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it got so cold, andit snowed so, they had to leave off. Never mind, Kitty, we'll go andsee the bonfire to-morrow.' Here Alice wound two or three turns of theworsted round the kitten's neck, just to see how it would look: this ledto a scramble, in which the ball rolled down upon the floor, and yardsand yards of it got unwound again.'Do you know, I was so angry, Kitty,' Alice went on as soon as they werecomfortably settled again, 'when I saw all the mischief you had beendoing, I was very nearly opening the window, and putting you out intothe snow! And you'd have deserved it, you little mischievous darling!Wha", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/16/slow-270.json b/tests/__snapshots__/qrcode-5/16/slow-270.json index a20e9b6b..9a08e344 100644 --- a/tests/__snapshots__/qrcode-5/16/slow-270.json +++ b/tests/__snapshots__/qrcode-5/16/slow-270.json @@ -5,7 +5,7 @@ "bytes": "b595920", "bytesECI": "b613475", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it got so cold, andit snowed so, they had to leave off. Never mind, Kitty, we'll go andsee the bonfire to-morrow.' Here Alice wound two or three turns of theworsted round the kitten's neck, just to see how it would look: this ledto a scramble, in which the ball rolled down upon the floor, and yardsand yards of it got unwound again.'Do you know, I was so angry, Kitty,' Alice went on as soon as they werecomfortably settled again, 'when I saw all the mischief you had beendoing, I was very nearly opening the window, and putting you out intothe snow! And you'd have deserved it, you little mischievous darling!Wha", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/16/slow-90.json b/tests/__snapshots__/qrcode-5/16/slow-90.json index 183c2231..3ed96c48 100644 --- a/tests/__snapshots__/qrcode-5/16/slow-90.json +++ b/tests/__snapshots__/qrcode-5/16/slow-90.json @@ -5,7 +5,7 @@ "bytes": "b595920", "bytesECI": "b613475", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it got so cold, andit snowed so, they had to leave off. Never mind, Kitty, we'll go andsee the bonfire to-morrow.' Here Alice wound two or three turns of theworsted round the kitten's neck, just to see how it would look: this ledto a scramble, in which the ball rolled down upon the floor, and yardsand yards of it got unwound again.'Do you know, I was so angry, Kitty,' Alice went on as soon as they werecomfortably settled again, 'when I saw all the mischief you had beendoing, I was very nearly opening the window, and putting you out intothe snow! And you'd have deserved it, you little mischievous darling!Wha", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-5/17/fast-0.json b/tests/__snapshots__/qrcode-5/17/fast-0.json index ba91ae1f..fced5586 100644 --- a/tests/__snapshots__/qrcode-5/17/fast-0.json +++ b/tests/__snapshots__/qrcode-5/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "769dd23", "bytesECI": "080d7af", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-5/17/fast-180.json b/tests/__snapshots__/qrcode-5/17/fast-180.json index 0b7ddac9..69414129 100644 --- a/tests/__snapshots__/qrcode-5/17/fast-180.json +++ b/tests/__snapshots__/qrcode-5/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "769dd23", "bytesECI": "080d7af", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-5/17/fast-270.json b/tests/__snapshots__/qrcode-5/17/fast-270.json index c87607e9..11c814bf 100644 --- a/tests/__snapshots__/qrcode-5/17/fast-270.json +++ b/tests/__snapshots__/qrcode-5/17/fast-270.json @@ -5,7 +5,7 @@ "bytes": "769dd23", "bytesECI": "080d7af", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-5/17/fast-90.json b/tests/__snapshots__/qrcode-5/17/fast-90.json index b5215c6c..c4d8f315 100644 --- a/tests/__snapshots__/qrcode-5/17/fast-90.json +++ b/tests/__snapshots__/qrcode-5/17/fast-90.json @@ -5,7 +5,7 @@ "bytes": "769dd23", "bytesECI": "080d7af", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-5/17/pure-0.json b/tests/__snapshots__/qrcode-5/17/pure-0.json index e1d17dac..3d647ba5 100644 --- a/tests/__snapshots__/qrcode-5/17/pure-0.json +++ b/tests/__snapshots__/qrcode-5/17/pure-0.json @@ -5,7 +5,7 @@ "bytes": "769dd23", "bytesECI": "080d7af", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-5/17/slow-0.json b/tests/__snapshots__/qrcode-5/17/slow-0.json index ba91ae1f..fced5586 100644 --- a/tests/__snapshots__/qrcode-5/17/slow-0.json +++ b/tests/__snapshots__/qrcode-5/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "769dd23", "bytesECI": "080d7af", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-5/17/slow-180.json b/tests/__snapshots__/qrcode-5/17/slow-180.json index 0b7ddac9..69414129 100644 --- a/tests/__snapshots__/qrcode-5/17/slow-180.json +++ b/tests/__snapshots__/qrcode-5/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "769dd23", "bytesECI": "080d7af", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-5/17/slow-270.json b/tests/__snapshots__/qrcode-5/17/slow-270.json index c87607e9..11c814bf 100644 --- a/tests/__snapshots__/qrcode-5/17/slow-270.json +++ b/tests/__snapshots__/qrcode-5/17/slow-270.json @@ -5,7 +5,7 @@ "bytes": "769dd23", "bytesECI": "080d7af", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-5/17/slow-90.json b/tests/__snapshots__/qrcode-5/17/slow-90.json index b5215c6c..c4d8f315 100644 --- a/tests/__snapshots__/qrcode-5/17/slow-90.json +++ b/tests/__snapshots__/qrcode-5/17/slow-90.json @@ -5,7 +5,7 @@ "bytes": "769dd23", "bytesECI": "080d7af", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-chair, taking the kitten and the worstedwith her, and began winding up the ball again. But she didn't get onvery fast, as she was talking all the time, sometimes to the kitten, andsometimes to herself. Kitty sat very demurely on her knee, pretending towatch the progress of the winding, and now and then putting out onepaw and gently touching the ball, as if it would be glad to help, if itmight.'Do you know what to-morrow is, Kitty?' Alice began. 'You'd have guessedif you'd been up in the window with me--only Dinah was making you tidy,so you couldn't. I was watching the boys getting in sticks for thebonfire--and it wants plenty of sticks, Kitty! Only it ", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "M" } diff --git a/tests/__snapshots__/qrcode-5/18/fast-0.json b/tests/__snapshots__/qrcode-5/18/fast-0.json index f482bc7d..0d96a657 100644 --- a/tests/__snapshots__/qrcode-5/18/fast-0.json +++ b/tests/__snapshots__/qrcode-5/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "fe2179c", "bytesECI": "7fb0350", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-ch", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-5/18/fast-180.json b/tests/__snapshots__/qrcode-5/18/fast-180.json index 9383cd6c..dd5b8bab 100644 --- a/tests/__snapshots__/qrcode-5/18/fast-180.json +++ b/tests/__snapshots__/qrcode-5/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "fe2179c", "bytesECI": "7fb0350", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-ch", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-5/18/fast-270.json b/tests/__snapshots__/qrcode-5/18/fast-270.json index 372c79c1..38fb428b 100644 --- a/tests/__snapshots__/qrcode-5/18/fast-270.json +++ b/tests/__snapshots__/qrcode-5/18/fast-270.json @@ -5,7 +5,7 @@ "bytes": "fe2179c", "bytesECI": "7fb0350", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-ch", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-5/18/fast-90.json b/tests/__snapshots__/qrcode-5/18/fast-90.json index 707c66b0..56c7ede7 100644 --- a/tests/__snapshots__/qrcode-5/18/fast-90.json +++ b/tests/__snapshots__/qrcode-5/18/fast-90.json @@ -5,7 +5,7 @@ "bytes": "fe2179c", "bytesECI": "7fb0350", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-ch", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-5/18/pure-0.json b/tests/__snapshots__/qrcode-5/18/pure-0.json index d5cf19e7..64351941 100644 --- a/tests/__snapshots__/qrcode-5/18/pure-0.json +++ b/tests/__snapshots__/qrcode-5/18/pure-0.json @@ -5,7 +5,7 @@ "bytes": "fe2179c", "bytesECI": "7fb0350", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-ch", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-5/18/slow-0.json b/tests/__snapshots__/qrcode-5/18/slow-0.json index f482bc7d..0d96a657 100644 --- a/tests/__snapshots__/qrcode-5/18/slow-0.json +++ b/tests/__snapshots__/qrcode-5/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "fe2179c", "bytesECI": "7fb0350", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-ch", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-5/18/slow-180.json b/tests/__snapshots__/qrcode-5/18/slow-180.json index 9383cd6c..dd5b8bab 100644 --- a/tests/__snapshots__/qrcode-5/18/slow-180.json +++ b/tests/__snapshots__/qrcode-5/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "fe2179c", "bytesECI": "7fb0350", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-ch", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-5/18/slow-270.json b/tests/__snapshots__/qrcode-5/18/slow-270.json index 372c79c1..38fb428b 100644 --- a/tests/__snapshots__/qrcode-5/18/slow-270.json +++ b/tests/__snapshots__/qrcode-5/18/slow-270.json @@ -5,7 +5,7 @@ "bytes": "fe2179c", "bytesECI": "7fb0350", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-ch", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-5/18/slow-90.json b/tests/__snapshots__/qrcode-5/18/slow-90.json index 707c66b0..56c7ede7 100644 --- a/tests/__snapshots__/qrcode-5/18/slow-90.json +++ b/tests/__snapshots__/qrcode-5/18/slow-90.json @@ -5,7 +5,7 @@ "bytes": "fe2179c", "bytesECI": "7fb0350", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themiddle.'Oh, you wicked little thing!' cried Alice, catching up the kitten, andgiving it a little kiss to make it understand that it was in disgrace.'Really, Dinah ought to have taught you better manners! You OUGHT,Dinah, you know you ought!' she added, looking reproachfully at the oldcat, and speaking in as cross a voice as she could manage--and then shescrambled back into the arm-ch", - "eccLevel": "Q", + "ecLevel": "Q", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "Q" } diff --git a/tests/__snapshots__/qrcode-5/19/fast-0.json b/tests/__snapshots__/qrcode-5/19/fast-0.json index 7da12418..11b3c631 100644 --- a/tests/__snapshots__/qrcode-5/19/fast-0.json +++ b/tests/__snapshots__/qrcode-5/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "fa7197c", "bytesECI": "1e56537", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themidd", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-5/19/fast-180.json b/tests/__snapshots__/qrcode-5/19/fast-180.json index 6f792acf..11803e07 100644 --- a/tests/__snapshots__/qrcode-5/19/fast-180.json +++ b/tests/__snapshots__/qrcode-5/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "fa7197c", "bytesECI": "1e56537", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themidd", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-5/19/fast-270.json b/tests/__snapshots__/qrcode-5/19/fast-270.json index e2d14f5e..aa8a1b58 100644 --- a/tests/__snapshots__/qrcode-5/19/fast-270.json +++ b/tests/__snapshots__/qrcode-5/19/fast-270.json @@ -5,7 +5,7 @@ "bytes": "fa7197c", "bytesECI": "1e56537", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themidd", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-5/19/fast-90.json b/tests/__snapshots__/qrcode-5/19/fast-90.json index 257f33ad..3a6bd2a5 100644 --- a/tests/__snapshots__/qrcode-5/19/fast-90.json +++ b/tests/__snapshots__/qrcode-5/19/fast-90.json @@ -5,7 +5,7 @@ "bytes": "fa7197c", "bytesECI": "1e56537", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themidd", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-5/19/pure-0.json b/tests/__snapshots__/qrcode-5/19/pure-0.json index 122ba2d9..5661d18d 100644 --- a/tests/__snapshots__/qrcode-5/19/pure-0.json +++ b/tests/__snapshots__/qrcode-5/19/pure-0.json @@ -5,7 +5,7 @@ "bytes": "fa7197c", "bytesECI": "1e56537", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themidd", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-5/19/slow-0.json b/tests/__snapshots__/qrcode-5/19/slow-0.json index 7da12418..11b3c631 100644 --- a/tests/__snapshots__/qrcode-5/19/slow-0.json +++ b/tests/__snapshots__/qrcode-5/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "fa7197c", "bytesECI": "1e56537", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themidd", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-5/19/slow-180.json b/tests/__snapshots__/qrcode-5/19/slow-180.json index 6f792acf..11803e07 100644 --- a/tests/__snapshots__/qrcode-5/19/slow-180.json +++ b/tests/__snapshots__/qrcode-5/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "fa7197c", "bytesECI": "1e56537", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themidd", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-5/19/slow-270.json b/tests/__snapshots__/qrcode-5/19/slow-270.json index e2d14f5e..aa8a1b58 100644 --- a/tests/__snapshots__/qrcode-5/19/slow-270.json +++ b/tests/__snapshots__/qrcode-5/19/slow-270.json @@ -5,7 +5,7 @@ "bytes": "fa7197c", "bytesECI": "1e56537", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themidd", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-5/19/slow-90.json b/tests/__snapshots__/qrcode-5/19/slow-90.json index 257f33ad..3a6bd2a5 100644 --- a/tests/__snapshots__/qrcode-5/19/slow-90.json +++ b/tests/__snapshots__/qrcode-5/19/slow-90.json @@ -5,7 +5,7 @@ "bytes": "fa7197c", "bytesECI": "1e56537", "text": "THROUGH THE LOOKING-GLASSBy Lewis CarrollCHAPTER I. Looking-Glass houseOne thing was certain, that the WHITE kitten had had nothing to do withit:--it was the black kitten's fault entirely. For the white kitten hadbeen having its face washed by the old cat for the last quarter ofan hour (and bearing it pretty well, considering); so you see that itCOULDN'T have had any hand in the mischief.The way Dinah washed her children's faces was this: first she held thepoor thing down by its ear with one paw, and then with the other paw sherubbed its face all over, the wrong way, beginning at the nose: andjust now, as I said, she was hard at work on the white kitten, which waslying quite still and trying to purr--no doubt feeling that it was allmeant for its good.But the black kitten had been finished with earlier in the afternoon,and so, while Alice was sitting curled up in a corner of the greatarm-chair, half talking to herself and half asleep, the kitten had beenhaving a grand game of romps with the ball of worsted Alice had beentrying to wind up, and had been rolling it up and down till it had allcome undone again; and there it was, spread over the hearth-rug, allknots and tangles, with the kitten running after its own tail in themidd", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "40" + "version": "40", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/1/fast-0.json b/tests/__snapshots__/qrcode-6/1/fast-0.json index b528ce9a..92a5e61c 100644 --- a/tests/__snapshots__/qrcode-6/1/fast-0.json +++ b/tests/__snapshots__/qrcode-6/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/1/fast-180.json b/tests/__snapshots__/qrcode-6/1/fast-180.json index 22af1fbd..f8369f58 100644 --- a/tests/__snapshots__/qrcode-6/1/fast-180.json +++ b/tests/__snapshots__/qrcode-6/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/1/fast-270.json b/tests/__snapshots__/qrcode-6/1/fast-270.json index e43abf18..faada51a 100644 --- a/tests/__snapshots__/qrcode-6/1/fast-270.json +++ b/tests/__snapshots__/qrcode-6/1/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/1/fast-90.json b/tests/__snapshots__/qrcode-6/1/fast-90.json index 989def24..c15103dd 100644 --- a/tests/__snapshots__/qrcode-6/1/fast-90.json +++ b/tests/__snapshots__/qrcode-6/1/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/1/slow-0.json b/tests/__snapshots__/qrcode-6/1/slow-0.json index b528ce9a..92a5e61c 100644 --- a/tests/__snapshots__/qrcode-6/1/slow-0.json +++ b/tests/__snapshots__/qrcode-6/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/1/slow-180.json b/tests/__snapshots__/qrcode-6/1/slow-180.json index 22af1fbd..f8369f58 100644 --- a/tests/__snapshots__/qrcode-6/1/slow-180.json +++ b/tests/__snapshots__/qrcode-6/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/1/slow-270.json b/tests/__snapshots__/qrcode-6/1/slow-270.json index e43abf18..faada51a 100644 --- a/tests/__snapshots__/qrcode-6/1/slow-270.json +++ b/tests/__snapshots__/qrcode-6/1/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/1/slow-90.json b/tests/__snapshots__/qrcode-6/1/slow-90.json index 989def24..c15103dd 100644 --- a/tests/__snapshots__/qrcode-6/1/slow-90.json +++ b/tests/__snapshots__/qrcode-6/1/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/10/fast-0.json b/tests/__snapshots__/qrcode-6/10/fast-0.json index 33f87591..7762983f 100644 --- a/tests/__snapshots__/qrcode-6/10/fast-0.json +++ b/tests/__snapshots__/qrcode-6/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/10/fast-180.json b/tests/__snapshots__/qrcode-6/10/fast-180.json index 2b536fff..62ff6053 100644 --- a/tests/__snapshots__/qrcode-6/10/fast-180.json +++ b/tests/__snapshots__/qrcode-6/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/10/fast-270.json b/tests/__snapshots__/qrcode-6/10/fast-270.json index 7a60975f..f8f592c0 100644 --- a/tests/__snapshots__/qrcode-6/10/fast-270.json +++ b/tests/__snapshots__/qrcode-6/10/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/10/fast-90.json b/tests/__snapshots__/qrcode-6/10/fast-90.json index 76dd64ee..d3b2b9c4 100644 --- a/tests/__snapshots__/qrcode-6/10/fast-90.json +++ b/tests/__snapshots__/qrcode-6/10/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/10/slow-0.json b/tests/__snapshots__/qrcode-6/10/slow-0.json index 33f87591..7762983f 100644 --- a/tests/__snapshots__/qrcode-6/10/slow-0.json +++ b/tests/__snapshots__/qrcode-6/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/10/slow-180.json b/tests/__snapshots__/qrcode-6/10/slow-180.json index 2b536fff..62ff6053 100644 --- a/tests/__snapshots__/qrcode-6/10/slow-180.json +++ b/tests/__snapshots__/qrcode-6/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/10/slow-270.json b/tests/__snapshots__/qrcode-6/10/slow-270.json index 7a60975f..f8f592c0 100644 --- a/tests/__snapshots__/qrcode-6/10/slow-270.json +++ b/tests/__snapshots__/qrcode-6/10/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/10/slow-90.json b/tests/__snapshots__/qrcode-6/10/slow-90.json index 76dd64ee..d3b2b9c4 100644 --- a/tests/__snapshots__/qrcode-6/10/slow-90.json +++ b/tests/__snapshots__/qrcode-6/10/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/11/fast-0.json b/tests/__snapshots__/qrcode-6/11/fast-0.json index 22af1fbd..f8369f58 100644 --- a/tests/__snapshots__/qrcode-6/11/fast-0.json +++ b/tests/__snapshots__/qrcode-6/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/11/fast-180.json b/tests/__snapshots__/qrcode-6/11/fast-180.json index b528ce9a..92a5e61c 100644 --- a/tests/__snapshots__/qrcode-6/11/fast-180.json +++ b/tests/__snapshots__/qrcode-6/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/11/fast-270.json b/tests/__snapshots__/qrcode-6/11/fast-270.json index 989def24..c15103dd 100644 --- a/tests/__snapshots__/qrcode-6/11/fast-270.json +++ b/tests/__snapshots__/qrcode-6/11/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/11/fast-90.json b/tests/__snapshots__/qrcode-6/11/fast-90.json index e43abf18..faada51a 100644 --- a/tests/__snapshots__/qrcode-6/11/fast-90.json +++ b/tests/__snapshots__/qrcode-6/11/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/11/slow-0.json b/tests/__snapshots__/qrcode-6/11/slow-0.json index 22af1fbd..f8369f58 100644 --- a/tests/__snapshots__/qrcode-6/11/slow-0.json +++ b/tests/__snapshots__/qrcode-6/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/11/slow-180.json b/tests/__snapshots__/qrcode-6/11/slow-180.json index b528ce9a..92a5e61c 100644 --- a/tests/__snapshots__/qrcode-6/11/slow-180.json +++ b/tests/__snapshots__/qrcode-6/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/11/slow-270.json b/tests/__snapshots__/qrcode-6/11/slow-270.json index 989def24..c15103dd 100644 --- a/tests/__snapshots__/qrcode-6/11/slow-270.json +++ b/tests/__snapshots__/qrcode-6/11/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/11/slow-90.json b/tests/__snapshots__/qrcode-6/11/slow-90.json index e43abf18..faada51a 100644 --- a/tests/__snapshots__/qrcode-6/11/slow-90.json +++ b/tests/__snapshots__/qrcode-6/11/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/12/fast-0.json b/tests/__snapshots__/qrcode-6/12/fast-0.json index ffa0420d..8d723839 100644 --- a/tests/__snapshots__/qrcode-6/12/fast-0.json +++ b/tests/__snapshots__/qrcode-6/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/12/fast-180.json b/tests/__snapshots__/qrcode-6/12/fast-180.json index 7a2a079c..18adc91f 100644 --- a/tests/__snapshots__/qrcode-6/12/fast-180.json +++ b/tests/__snapshots__/qrcode-6/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/12/fast-270.json b/tests/__snapshots__/qrcode-6/12/fast-270.json index 72415160..9d12938e 100644 --- a/tests/__snapshots__/qrcode-6/12/fast-270.json +++ b/tests/__snapshots__/qrcode-6/12/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/12/fast-90.json b/tests/__snapshots__/qrcode-6/12/fast-90.json index 4104d9ad..3a04762e 100644 --- a/tests/__snapshots__/qrcode-6/12/fast-90.json +++ b/tests/__snapshots__/qrcode-6/12/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/12/slow-0.json b/tests/__snapshots__/qrcode-6/12/slow-0.json index ffa0420d..8d723839 100644 --- a/tests/__snapshots__/qrcode-6/12/slow-0.json +++ b/tests/__snapshots__/qrcode-6/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/12/slow-180.json b/tests/__snapshots__/qrcode-6/12/slow-180.json index 7a2a079c..18adc91f 100644 --- a/tests/__snapshots__/qrcode-6/12/slow-180.json +++ b/tests/__snapshots__/qrcode-6/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/12/slow-270.json b/tests/__snapshots__/qrcode-6/12/slow-270.json index 72415160..9d12938e 100644 --- a/tests/__snapshots__/qrcode-6/12/slow-270.json +++ b/tests/__snapshots__/qrcode-6/12/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/12/slow-90.json b/tests/__snapshots__/qrcode-6/12/slow-90.json index 4104d9ad..3a04762e 100644 --- a/tests/__snapshots__/qrcode-6/12/slow-90.json +++ b/tests/__snapshots__/qrcode-6/12/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/13/fast-0.json b/tests/__snapshots__/qrcode-6/13/fast-0.json index 62ad1158..f14077ae 100644 --- a/tests/__snapshots__/qrcode-6/13/fast-0.json +++ b/tests/__snapshots__/qrcode-6/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/13/fast-180.json b/tests/__snapshots__/qrcode-6/13/fast-180.json index b2cd56fa..fc23f387 100644 --- a/tests/__snapshots__/qrcode-6/13/fast-180.json +++ b/tests/__snapshots__/qrcode-6/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/13/fast-270.json b/tests/__snapshots__/qrcode-6/13/fast-270.json index 22260966..cbd447f7 100644 --- a/tests/__snapshots__/qrcode-6/13/fast-270.json +++ b/tests/__snapshots__/qrcode-6/13/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/13/fast-90.json b/tests/__snapshots__/qrcode-6/13/fast-90.json index eb9c8a75..94a271c9 100644 --- a/tests/__snapshots__/qrcode-6/13/fast-90.json +++ b/tests/__snapshots__/qrcode-6/13/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/13/slow-0.json b/tests/__snapshots__/qrcode-6/13/slow-0.json index 62ad1158..f14077ae 100644 --- a/tests/__snapshots__/qrcode-6/13/slow-0.json +++ b/tests/__snapshots__/qrcode-6/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/13/slow-180.json b/tests/__snapshots__/qrcode-6/13/slow-180.json index b2cd56fa..fc23f387 100644 --- a/tests/__snapshots__/qrcode-6/13/slow-180.json +++ b/tests/__snapshots__/qrcode-6/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/13/slow-270.json b/tests/__snapshots__/qrcode-6/13/slow-270.json index 22260966..cbd447f7 100644 --- a/tests/__snapshots__/qrcode-6/13/slow-270.json +++ b/tests/__snapshots__/qrcode-6/13/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/13/slow-90.json b/tests/__snapshots__/qrcode-6/13/slow-90.json index eb9c8a75..94a271c9 100644 --- a/tests/__snapshots__/qrcode-6/13/slow-90.json +++ b/tests/__snapshots__/qrcode-6/13/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/14/fast-0.json b/tests/__snapshots__/qrcode-6/14/fast-0.json index 22260966..cbd447f7 100644 --- a/tests/__snapshots__/qrcode-6/14/fast-0.json +++ b/tests/__snapshots__/qrcode-6/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/14/fast-180.json b/tests/__snapshots__/qrcode-6/14/fast-180.json index eb9c8a75..94a271c9 100644 --- a/tests/__snapshots__/qrcode-6/14/fast-180.json +++ b/tests/__snapshots__/qrcode-6/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/14/fast-270.json b/tests/__snapshots__/qrcode-6/14/fast-270.json index b2cd56fa..fc23f387 100644 --- a/tests/__snapshots__/qrcode-6/14/fast-270.json +++ b/tests/__snapshots__/qrcode-6/14/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/14/fast-90.json b/tests/__snapshots__/qrcode-6/14/fast-90.json index 62ad1158..f14077ae 100644 --- a/tests/__snapshots__/qrcode-6/14/fast-90.json +++ b/tests/__snapshots__/qrcode-6/14/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/14/slow-0.json b/tests/__snapshots__/qrcode-6/14/slow-0.json index 22260966..cbd447f7 100644 --- a/tests/__snapshots__/qrcode-6/14/slow-0.json +++ b/tests/__snapshots__/qrcode-6/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/14/slow-180.json b/tests/__snapshots__/qrcode-6/14/slow-180.json index eb9c8a75..94a271c9 100644 --- a/tests/__snapshots__/qrcode-6/14/slow-180.json +++ b/tests/__snapshots__/qrcode-6/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/14/slow-270.json b/tests/__snapshots__/qrcode-6/14/slow-270.json index b2cd56fa..fc23f387 100644 --- a/tests/__snapshots__/qrcode-6/14/slow-270.json +++ b/tests/__snapshots__/qrcode-6/14/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/14/slow-90.json b/tests/__snapshots__/qrcode-6/14/slow-90.json index 62ad1158..f14077ae 100644 --- a/tests/__snapshots__/qrcode-6/14/slow-90.json +++ b/tests/__snapshots__/qrcode-6/14/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/15/fast-0.json b/tests/__snapshots__/qrcode-6/15/fast-0.json index 8a1c9146..e1f1effe 100644 --- a/tests/__snapshots__/qrcode-6/15/fast-0.json +++ b/tests/__snapshots__/qrcode-6/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "94ee059", "bytesECI": "cf1f592", "text": "TEST", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-6/15/fast-180.json b/tests/__snapshots__/qrcode-6/15/fast-180.json index 37000446..77d77c93 100644 --- a/tests/__snapshots__/qrcode-6/15/fast-180.json +++ b/tests/__snapshots__/qrcode-6/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "94ee059", "bytesECI": "cf1f592", "text": "TEST", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-6/15/fast-270.json b/tests/__snapshots__/qrcode-6/15/fast-270.json index 569f93cf..bce2a04f 100644 --- a/tests/__snapshots__/qrcode-6/15/fast-270.json +++ b/tests/__snapshots__/qrcode-6/15/fast-270.json @@ -5,7 +5,7 @@ "bytes": "94ee059", "bytesECI": "cf1f592", "text": "TEST", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-6/15/fast-90.json b/tests/__snapshots__/qrcode-6/15/fast-90.json index 78576910..91ddca62 100644 --- a/tests/__snapshots__/qrcode-6/15/fast-90.json +++ b/tests/__snapshots__/qrcode-6/15/fast-90.json @@ -5,7 +5,7 @@ "bytes": "94ee059", "bytesECI": "cf1f592", "text": "TEST", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-6/15/slow-0.json b/tests/__snapshots__/qrcode-6/15/slow-0.json index 8a1c9146..e1f1effe 100644 --- a/tests/__snapshots__/qrcode-6/15/slow-0.json +++ b/tests/__snapshots__/qrcode-6/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "94ee059", "bytesECI": "cf1f592", "text": "TEST", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-6/15/slow-180.json b/tests/__snapshots__/qrcode-6/15/slow-180.json index 37000446..77d77c93 100644 --- a/tests/__snapshots__/qrcode-6/15/slow-180.json +++ b/tests/__snapshots__/qrcode-6/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "94ee059", "bytesECI": "cf1f592", "text": "TEST", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-6/15/slow-270.json b/tests/__snapshots__/qrcode-6/15/slow-270.json index 569f93cf..bce2a04f 100644 --- a/tests/__snapshots__/qrcode-6/15/slow-270.json +++ b/tests/__snapshots__/qrcode-6/15/slow-270.json @@ -5,7 +5,7 @@ "bytes": "94ee059", "bytesECI": "cf1f592", "text": "TEST", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-6/15/slow-90.json b/tests/__snapshots__/qrcode-6/15/slow-90.json index 78576910..91ddca62 100644 --- a/tests/__snapshots__/qrcode-6/15/slow-90.json +++ b/tests/__snapshots__/qrcode-6/15/slow-90.json @@ -5,7 +5,7 @@ "bytes": "94ee059", "bytesECI": "cf1f592", "text": "TEST", - "eccLevel": "L", + "ecLevel": "L", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "4" + "version": "4", + "eccLevel": "L" } diff --git a/tests/__snapshots__/qrcode-6/2/fast-0.json b/tests/__snapshots__/qrcode-6/2/fast-0.json index 3d2f9d03..6bff7632 100644 --- a/tests/__snapshots__/qrcode-6/2/fast-0.json +++ b/tests/__snapshots__/qrcode-6/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/2/fast-180.json b/tests/__snapshots__/qrcode-6/2/fast-180.json index 4dda627d..8586dbe7 100644 --- a/tests/__snapshots__/qrcode-6/2/fast-180.json +++ b/tests/__snapshots__/qrcode-6/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/2/fast-270.json b/tests/__snapshots__/qrcode-6/2/fast-270.json index 45e741a8..7e521ee4 100644 --- a/tests/__snapshots__/qrcode-6/2/fast-270.json +++ b/tests/__snapshots__/qrcode-6/2/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/2/fast-90.json b/tests/__snapshots__/qrcode-6/2/fast-90.json index 7ee8f0f5..2c32e8ab 100644 --- a/tests/__snapshots__/qrcode-6/2/fast-90.json +++ b/tests/__snapshots__/qrcode-6/2/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/2/slow-0.json b/tests/__snapshots__/qrcode-6/2/slow-0.json index 3d2f9d03..6bff7632 100644 --- a/tests/__snapshots__/qrcode-6/2/slow-0.json +++ b/tests/__snapshots__/qrcode-6/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/2/slow-180.json b/tests/__snapshots__/qrcode-6/2/slow-180.json index 4dda627d..8586dbe7 100644 --- a/tests/__snapshots__/qrcode-6/2/slow-180.json +++ b/tests/__snapshots__/qrcode-6/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/2/slow-270.json b/tests/__snapshots__/qrcode-6/2/slow-270.json index 45e741a8..7e521ee4 100644 --- a/tests/__snapshots__/qrcode-6/2/slow-270.json +++ b/tests/__snapshots__/qrcode-6/2/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/2/slow-90.json b/tests/__snapshots__/qrcode-6/2/slow-90.json index 7ee8f0f5..2c32e8ab 100644 --- a/tests/__snapshots__/qrcode-6/2/slow-90.json +++ b/tests/__snapshots__/qrcode-6/2/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/3/fast-0.json b/tests/__snapshots__/qrcode-6/3/fast-0.json index 7f89b339..dcd04a59 100644 --- a/tests/__snapshots__/qrcode-6/3/fast-0.json +++ b/tests/__snapshots__/qrcode-6/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/3/fast-180.json b/tests/__snapshots__/qrcode-6/3/fast-180.json index ef52cce4..0d6af207 100644 --- a/tests/__snapshots__/qrcode-6/3/fast-180.json +++ b/tests/__snapshots__/qrcode-6/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/3/fast-270.json b/tests/__snapshots__/qrcode-6/3/fast-270.json index 6e2acf6c..74dad382 100644 --- a/tests/__snapshots__/qrcode-6/3/fast-270.json +++ b/tests/__snapshots__/qrcode-6/3/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/3/fast-90.json b/tests/__snapshots__/qrcode-6/3/fast-90.json index 84b95a4e..2e916353 100644 --- a/tests/__snapshots__/qrcode-6/3/fast-90.json +++ b/tests/__snapshots__/qrcode-6/3/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/3/slow-0.json b/tests/__snapshots__/qrcode-6/3/slow-0.json index 7f89b339..dcd04a59 100644 --- a/tests/__snapshots__/qrcode-6/3/slow-0.json +++ b/tests/__snapshots__/qrcode-6/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/3/slow-180.json b/tests/__snapshots__/qrcode-6/3/slow-180.json index ef52cce4..0d6af207 100644 --- a/tests/__snapshots__/qrcode-6/3/slow-180.json +++ b/tests/__snapshots__/qrcode-6/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/3/slow-270.json b/tests/__snapshots__/qrcode-6/3/slow-270.json index 6e2acf6c..74dad382 100644 --- a/tests/__snapshots__/qrcode-6/3/slow-270.json +++ b/tests/__snapshots__/qrcode-6/3/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/3/slow-90.json b/tests/__snapshots__/qrcode-6/3/slow-90.json index 84b95a4e..2e916353 100644 --- a/tests/__snapshots__/qrcode-6/3/slow-90.json +++ b/tests/__snapshots__/qrcode-6/3/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/4/fast-0.json b/tests/__snapshots__/qrcode-6/4/fast-0.json index 55095b37..739198e8 100644 --- a/tests/__snapshots__/qrcode-6/4/fast-0.json +++ b/tests/__snapshots__/qrcode-6/4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/4/fast-180.json b/tests/__snapshots__/qrcode-6/4/fast-180.json index 726520ea..2099f6e2 100644 --- a/tests/__snapshots__/qrcode-6/4/fast-180.json +++ b/tests/__snapshots__/qrcode-6/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/4/fast-270.json b/tests/__snapshots__/qrcode-6/4/fast-270.json index fa60d082..a89ed0e4 100644 --- a/tests/__snapshots__/qrcode-6/4/fast-270.json +++ b/tests/__snapshots__/qrcode-6/4/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/4/fast-90.json b/tests/__snapshots__/qrcode-6/4/fast-90.json index 95dff043..dfa735b9 100644 --- a/tests/__snapshots__/qrcode-6/4/fast-90.json +++ b/tests/__snapshots__/qrcode-6/4/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/4/slow-0.json b/tests/__snapshots__/qrcode-6/4/slow-0.json index 55095b37..739198e8 100644 --- a/tests/__snapshots__/qrcode-6/4/slow-0.json +++ b/tests/__snapshots__/qrcode-6/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/4/slow-180.json b/tests/__snapshots__/qrcode-6/4/slow-180.json index 726520ea..2099f6e2 100644 --- a/tests/__snapshots__/qrcode-6/4/slow-180.json +++ b/tests/__snapshots__/qrcode-6/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/4/slow-270.json b/tests/__snapshots__/qrcode-6/4/slow-270.json index fa60d082..a89ed0e4 100644 --- a/tests/__snapshots__/qrcode-6/4/slow-270.json +++ b/tests/__snapshots__/qrcode-6/4/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/4/slow-90.json b/tests/__snapshots__/qrcode-6/4/slow-90.json index 95dff043..dfa735b9 100644 --- a/tests/__snapshots__/qrcode-6/4/slow-90.json +++ b/tests/__snapshots__/qrcode-6/4/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/5/fast-0.json b/tests/__snapshots__/qrcode-6/5/fast-0.json index ba3d9a7d..329930b3 100644 --- a/tests/__snapshots__/qrcode-6/5/fast-0.json +++ b/tests/__snapshots__/qrcode-6/5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/5/fast-180.json b/tests/__snapshots__/qrcode-6/5/fast-180.json index db4f3030..2259b182 100644 --- a/tests/__snapshots__/qrcode-6/5/fast-180.json +++ b/tests/__snapshots__/qrcode-6/5/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/5/fast-270.json b/tests/__snapshots__/qrcode-6/5/fast-270.json index 7f9d1af5..df5f8189 100644 --- a/tests/__snapshots__/qrcode-6/5/fast-270.json +++ b/tests/__snapshots__/qrcode-6/5/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/5/fast-90.json b/tests/__snapshots__/qrcode-6/5/fast-90.json index 498fbe86..9243b4eb 100644 --- a/tests/__snapshots__/qrcode-6/5/fast-90.json +++ b/tests/__snapshots__/qrcode-6/5/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/5/slow-0.json b/tests/__snapshots__/qrcode-6/5/slow-0.json index ba3d9a7d..329930b3 100644 --- a/tests/__snapshots__/qrcode-6/5/slow-0.json +++ b/tests/__snapshots__/qrcode-6/5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/5/slow-180.json b/tests/__snapshots__/qrcode-6/5/slow-180.json index db4f3030..2259b182 100644 --- a/tests/__snapshots__/qrcode-6/5/slow-180.json +++ b/tests/__snapshots__/qrcode-6/5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/5/slow-270.json b/tests/__snapshots__/qrcode-6/5/slow-270.json index 7f9d1af5..df5f8189 100644 --- a/tests/__snapshots__/qrcode-6/5/slow-270.json +++ b/tests/__snapshots__/qrcode-6/5/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/5/slow-90.json b/tests/__snapshots__/qrcode-6/5/slow-90.json index 498fbe86..9243b4eb 100644 --- a/tests/__snapshots__/qrcode-6/5/slow-90.json +++ b/tests/__snapshots__/qrcode-6/5/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/6/fast-0.json b/tests/__snapshots__/qrcode-6/6/fast-0.json index 3e5377fd..17a8d01f 100644 --- a/tests/__snapshots__/qrcode-6/6/fast-0.json +++ b/tests/__snapshots__/qrcode-6/6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/6/fast-180.json b/tests/__snapshots__/qrcode-6/6/fast-180.json index 4766b957..0ab6f75b 100644 --- a/tests/__snapshots__/qrcode-6/6/fast-180.json +++ b/tests/__snapshots__/qrcode-6/6/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/6/fast-270.json b/tests/__snapshots__/qrcode-6/6/fast-270.json index 458dc9c6..c0838251 100644 --- a/tests/__snapshots__/qrcode-6/6/fast-270.json +++ b/tests/__snapshots__/qrcode-6/6/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/6/fast-90.json b/tests/__snapshots__/qrcode-6/6/fast-90.json index 77e329f1..e2b0a263 100644 --- a/tests/__snapshots__/qrcode-6/6/fast-90.json +++ b/tests/__snapshots__/qrcode-6/6/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/6/slow-0.json b/tests/__snapshots__/qrcode-6/6/slow-0.json index 3e5377fd..17a8d01f 100644 --- a/tests/__snapshots__/qrcode-6/6/slow-0.json +++ b/tests/__snapshots__/qrcode-6/6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/6/slow-180.json b/tests/__snapshots__/qrcode-6/6/slow-180.json index 4766b957..0ab6f75b 100644 --- a/tests/__snapshots__/qrcode-6/6/slow-180.json +++ b/tests/__snapshots__/qrcode-6/6/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/6/slow-270.json b/tests/__snapshots__/qrcode-6/6/slow-270.json index 458dc9c6..c0838251 100644 --- a/tests/__snapshots__/qrcode-6/6/slow-270.json +++ b/tests/__snapshots__/qrcode-6/6/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/6/slow-90.json b/tests/__snapshots__/qrcode-6/6/slow-90.json index 77e329f1..e2b0a263 100644 --- a/tests/__snapshots__/qrcode-6/6/slow-90.json +++ b/tests/__snapshots__/qrcode-6/6/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/7/fast-0.json b/tests/__snapshots__/qrcode-6/7/fast-0.json index 4104d9ad..3a04762e 100644 --- a/tests/__snapshots__/qrcode-6/7/fast-0.json +++ b/tests/__snapshots__/qrcode-6/7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/7/fast-180.json b/tests/__snapshots__/qrcode-6/7/fast-180.json index 72415160..9d12938e 100644 --- a/tests/__snapshots__/qrcode-6/7/fast-180.json +++ b/tests/__snapshots__/qrcode-6/7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/7/fast-270.json b/tests/__snapshots__/qrcode-6/7/fast-270.json index ffa0420d..8d723839 100644 --- a/tests/__snapshots__/qrcode-6/7/fast-270.json +++ b/tests/__snapshots__/qrcode-6/7/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/7/fast-90.json b/tests/__snapshots__/qrcode-6/7/fast-90.json index 7a2a079c..18adc91f 100644 --- a/tests/__snapshots__/qrcode-6/7/fast-90.json +++ b/tests/__snapshots__/qrcode-6/7/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/7/slow-0.json b/tests/__snapshots__/qrcode-6/7/slow-0.json index 4104d9ad..3a04762e 100644 --- a/tests/__snapshots__/qrcode-6/7/slow-0.json +++ b/tests/__snapshots__/qrcode-6/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/7/slow-180.json b/tests/__snapshots__/qrcode-6/7/slow-180.json index 72415160..9d12938e 100644 --- a/tests/__snapshots__/qrcode-6/7/slow-180.json +++ b/tests/__snapshots__/qrcode-6/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/7/slow-270.json b/tests/__snapshots__/qrcode-6/7/slow-270.json index ffa0420d..8d723839 100644 --- a/tests/__snapshots__/qrcode-6/7/slow-270.json +++ b/tests/__snapshots__/qrcode-6/7/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/7/slow-90.json b/tests/__snapshots__/qrcode-6/7/slow-90.json index 7a2a079c..18adc91f 100644 --- a/tests/__snapshots__/qrcode-6/7/slow-90.json +++ b/tests/__snapshots__/qrcode-6/7/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/8/fast-0.json b/tests/__snapshots__/qrcode-6/8/fast-0.json index fa60d082..a89ed0e4 100644 --- a/tests/__snapshots__/qrcode-6/8/fast-0.json +++ b/tests/__snapshots__/qrcode-6/8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/8/fast-180.json b/tests/__snapshots__/qrcode-6/8/fast-180.json index 95dff043..dfa735b9 100644 --- a/tests/__snapshots__/qrcode-6/8/fast-180.json +++ b/tests/__snapshots__/qrcode-6/8/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/8/fast-270.json b/tests/__snapshots__/qrcode-6/8/fast-270.json index 726520ea..2099f6e2 100644 --- a/tests/__snapshots__/qrcode-6/8/fast-270.json +++ b/tests/__snapshots__/qrcode-6/8/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/8/fast-90.json b/tests/__snapshots__/qrcode-6/8/fast-90.json index 55095b37..739198e8 100644 --- a/tests/__snapshots__/qrcode-6/8/fast-90.json +++ b/tests/__snapshots__/qrcode-6/8/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/8/slow-0.json b/tests/__snapshots__/qrcode-6/8/slow-0.json index fa60d082..a89ed0e4 100644 --- a/tests/__snapshots__/qrcode-6/8/slow-0.json +++ b/tests/__snapshots__/qrcode-6/8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/8/slow-180.json b/tests/__snapshots__/qrcode-6/8/slow-180.json index 95dff043..dfa735b9 100644 --- a/tests/__snapshots__/qrcode-6/8/slow-180.json +++ b/tests/__snapshots__/qrcode-6/8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/8/slow-270.json b/tests/__snapshots__/qrcode-6/8/slow-270.json index 726520ea..2099f6e2 100644 --- a/tests/__snapshots__/qrcode-6/8/slow-270.json +++ b/tests/__snapshots__/qrcode-6/8/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/8/slow-90.json b/tests/__snapshots__/qrcode-6/8/slow-90.json index 55095b37..739198e8 100644 --- a/tests/__snapshots__/qrcode-6/8/slow-90.json +++ b/tests/__snapshots__/qrcode-6/8/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/9/fast-0.json b/tests/__snapshots__/qrcode-6/9/fast-0.json index 7f9d1af5..df5f8189 100644 --- a/tests/__snapshots__/qrcode-6/9/fast-0.json +++ b/tests/__snapshots__/qrcode-6/9/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/9/fast-180.json b/tests/__snapshots__/qrcode-6/9/fast-180.json index 498fbe86..9243b4eb 100644 --- a/tests/__snapshots__/qrcode-6/9/fast-180.json +++ b/tests/__snapshots__/qrcode-6/9/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/9/fast-270.json b/tests/__snapshots__/qrcode-6/9/fast-270.json index db4f3030..2259b182 100644 --- a/tests/__snapshots__/qrcode-6/9/fast-270.json +++ b/tests/__snapshots__/qrcode-6/9/fast-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/9/fast-90.json b/tests/__snapshots__/qrcode-6/9/fast-90.json index ba3d9a7d..329930b3 100644 --- a/tests/__snapshots__/qrcode-6/9/fast-90.json +++ b/tests/__snapshots__/qrcode-6/9/fast-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/9/slow-0.json b/tests/__snapshots__/qrcode-6/9/slow-0.json index 7f9d1af5..df5f8189 100644 --- a/tests/__snapshots__/qrcode-6/9/slow-0.json +++ b/tests/__snapshots__/qrcode-6/9/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/9/slow-180.json b/tests/__snapshots__/qrcode-6/9/slow-180.json index 498fbe86..9243b4eb 100644 --- a/tests/__snapshots__/qrcode-6/9/slow-180.json +++ b/tests/__snapshots__/qrcode-6/9/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/9/slow-270.json b/tests/__snapshots__/qrcode-6/9/slow-270.json index db4f3030..2259b182 100644 --- a/tests/__snapshots__/qrcode-6/9/slow-270.json +++ b/tests/__snapshots__/qrcode-6/9/slow-270.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/qrcode-6/9/slow-90.json b/tests/__snapshots__/qrcode-6/9/slow-90.json index ba3d9a7d..329930b3 100644 --- a/tests/__snapshots__/qrcode-6/9/slow-90.json +++ b/tests/__snapshots__/qrcode-6/9/slow-90.json @@ -5,7 +5,7 @@ "bytes": "c775e7b", "bytesECI": "1cd9efc", "text": "1234567890", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R17x139/fast-0.json b/tests/__snapshots__/rmqrcode-1/R17x139/fast-0.json index 6655ba56..baab1b32 100644 --- a/tests/__snapshots__/rmqrcode-1/R17x139/fast-0.json +++ b/tests/__snapshots__/rmqrcode-1/R17x139/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8dfcfff", "bytesECI": "0cf5547", "text": "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "M" } diff --git a/tests/__snapshots__/rmqrcode-1/R17x139/fast-180.json b/tests/__snapshots__/rmqrcode-1/R17x139/fast-180.json index 51e64cca..5e6a3269 100644 --- a/tests/__snapshots__/rmqrcode-1/R17x139/fast-180.json +++ b/tests/__snapshots__/rmqrcode-1/R17x139/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8dfcfff", "bytesECI": "0cf5547", "text": "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "M" } diff --git a/tests/__snapshots__/rmqrcode-1/R17x139/fast-270.json b/tests/__snapshots__/rmqrcode-1/R17x139/fast-270.json index 203dbc9b..1b71b382 100644 --- a/tests/__snapshots__/rmqrcode-1/R17x139/fast-270.json +++ b/tests/__snapshots__/rmqrcode-1/R17x139/fast-270.json @@ -5,7 +5,7 @@ "bytes": "8dfcfff", "bytesECI": "0cf5547", "text": "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "M" } diff --git a/tests/__snapshots__/rmqrcode-1/R17x139/fast-90.json b/tests/__snapshots__/rmqrcode-1/R17x139/fast-90.json index 88a0a8ad..e95c35f3 100644 --- a/tests/__snapshots__/rmqrcode-1/R17x139/fast-90.json +++ b/tests/__snapshots__/rmqrcode-1/R17x139/fast-90.json @@ -5,7 +5,7 @@ "bytes": "8dfcfff", "bytesECI": "0cf5547", "text": "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "M" } diff --git a/tests/__snapshots__/rmqrcode-1/R17x139/pure-0.json b/tests/__snapshots__/rmqrcode-1/R17x139/pure-0.json index b543677c..8b803488 100644 --- a/tests/__snapshots__/rmqrcode-1/R17x139/pure-0.json +++ b/tests/__snapshots__/rmqrcode-1/R17x139/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8dfcfff", "bytesECI": "0cf5547", "text": "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "M" } diff --git a/tests/__snapshots__/rmqrcode-1/R17x139/slow-0.json b/tests/__snapshots__/rmqrcode-1/R17x139/slow-0.json index 6655ba56..baab1b32 100644 --- a/tests/__snapshots__/rmqrcode-1/R17x139/slow-0.json +++ b/tests/__snapshots__/rmqrcode-1/R17x139/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8dfcfff", "bytesECI": "0cf5547", "text": "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "M" } diff --git a/tests/__snapshots__/rmqrcode-1/R17x139/slow-180.json b/tests/__snapshots__/rmqrcode-1/R17x139/slow-180.json index 51e64cca..5e6a3269 100644 --- a/tests/__snapshots__/rmqrcode-1/R17x139/slow-180.json +++ b/tests/__snapshots__/rmqrcode-1/R17x139/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8dfcfff", "bytesECI": "0cf5547", "text": "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "M" } diff --git a/tests/__snapshots__/rmqrcode-1/R17x139/slow-270.json b/tests/__snapshots__/rmqrcode-1/R17x139/slow-270.json index 203dbc9b..1b71b382 100644 --- a/tests/__snapshots__/rmqrcode-1/R17x139/slow-270.json +++ b/tests/__snapshots__/rmqrcode-1/R17x139/slow-270.json @@ -5,7 +5,7 @@ "bytes": "8dfcfff", "bytesECI": "0cf5547", "text": "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "M" } diff --git a/tests/__snapshots__/rmqrcode-1/R17x139/slow-90.json b/tests/__snapshots__/rmqrcode-1/R17x139/slow-90.json index 88a0a8ad..e95c35f3 100644 --- a/tests/__snapshots__/rmqrcode-1/R17x139/slow-90.json +++ b/tests/__snapshots__/rmqrcode-1/R17x139/slow-90.json @@ -5,7 +5,7 @@ "bytes": "8dfcfff", "bytesECI": "0cf5547", "text": "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081", - "eccLevel": "M", + "ecLevel": "M", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "32" + "version": "32", + "eccLevel": "M" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-0.json b/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-0.json index a3bcf524..5fb8d722 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-0.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-0.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-180.json b/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-180.json index 6c269336..a81b2be7 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-180.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-180.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-270.json b/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-270.json index 85106580..9bf73542 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-270.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-270.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-90.json b/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-90.json index 2524ef63..5da258dd 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-90.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H/fast-90.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H/pure-0.json b/tests/__snapshots__/rmqrcode-1/R7x43-H/pure-0.json index 3beda972..9fa58248 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H/pure-0.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H/pure-0.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-0.json b/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-0.json index a3bcf524..5fb8d722 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-0.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-0.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-180.json b/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-180.json index 6c269336..a81b2be7 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-180.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-180.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-270.json b/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-270.json index 85106580..9bf73542 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-270.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-270.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-90.json b/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-90.json index 2524ef63..5da258dd 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-90.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H/slow-90.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/pure-0.json b/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/pure-0.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-0.json b/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-0.json index e660cc0c..4fc23a6f 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-0.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-0.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-180.json b/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-180.json index 5d1378b3..45080329 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-180.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-180.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-270.json b/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-270.json index 87c1ef8c..46d5911c 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-270.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-270.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-90.json b/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-90.json index 68c19070..183a664c 100644 --- a/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-90.json +++ b/tests/__snapshots__/rmqrcode-1/R7x43-H_inverted/slow-90.json @@ -5,7 +5,7 @@ "bytes": "228c125", "bytesECI": "9122243", "text": ",,", - "eccLevel": "H", + "ecLevel": "H", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "1" + "version": "1", + "eccLevel": "H" } diff --git a/tests/__snapshots__/rss14-1/1/fast-0.json b/tests/__snapshots__/rss14-1/1/fast-0.json index d6745c3a..1d8deff2 100644 --- a/tests/__snapshots__/rss14-1/1/fast-0.json +++ b/tests/__snapshots__/rss14-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "60d6d96", "bytesECI": "6aa3c75", "text": "04412345678909", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/1/fast-180.json b/tests/__snapshots__/rss14-1/1/fast-180.json index 721a4d74..fd58e4c1 100644 --- a/tests/__snapshots__/rss14-1/1/fast-180.json +++ b/tests/__snapshots__/rss14-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "60d6d96", "bytesECI": "6aa3c75", "text": "04412345678909", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/1/slow-0.json b/tests/__snapshots__/rss14-1/1/slow-0.json index f6adae55..155412cc 100644 --- a/tests/__snapshots__/rss14-1/1/slow-0.json +++ b/tests/__snapshots__/rss14-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "60d6d96", "bytesECI": "6aa3c75", "text": "04412345678909", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/1/slow-180.json b/tests/__snapshots__/rss14-1/1/slow-180.json index d81a4492..4b27582b 100644 --- a/tests/__snapshots__/rss14-1/1/slow-180.json +++ b/tests/__snapshots__/rss14-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "60d6d96", "bytesECI": "6aa3c75", "text": "04412345678909", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/2/fast-0.json b/tests/__snapshots__/rss14-1/2/fast-0.json index e7e88d20..cd702629 100644 --- a/tests/__snapshots__/rss14-1/2/fast-0.json +++ b/tests/__snapshots__/rss14-1/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d762967", "bytesECI": "bf6a175", "text": "00821935106427", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/2/fast-180.json b/tests/__snapshots__/rss14-1/2/fast-180.json index df7acc69..f24dab27 100644 --- a/tests/__snapshots__/rss14-1/2/fast-180.json +++ b/tests/__snapshots__/rss14-1/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d762967", "bytesECI": "bf6a175", "text": "00821935106427", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/2/slow-0.json b/tests/__snapshots__/rss14-1/2/slow-0.json index f53ad31e..59c5e831 100644 --- a/tests/__snapshots__/rss14-1/2/slow-0.json +++ b/tests/__snapshots__/rss14-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d762967", "bytesECI": "bf6a175", "text": "00821935106427", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/2/slow-180.json b/tests/__snapshots__/rss14-1/2/slow-180.json index c295131e..17d50eb1 100644 --- a/tests/__snapshots__/rss14-1/2/slow-180.json +++ b/tests/__snapshots__/rss14-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d762967", "bytesECI": "bf6a175", "text": "00821935106427", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/3/fast-0.json b/tests/__snapshots__/rss14-1/3/fast-0.json index 9aba5bec..c45f961c 100644 --- a/tests/__snapshots__/rss14-1/3/fast-0.json +++ b/tests/__snapshots__/rss14-1/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9fe3c95", "bytesECI": "4dfd1b4", "text": "00075678164125", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/3/fast-180.json b/tests/__snapshots__/rss14-1/3/fast-180.json index 9296021c..51dbd67b 100644 --- a/tests/__snapshots__/rss14-1/3/fast-180.json +++ b/tests/__snapshots__/rss14-1/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9fe3c95", "bytesECI": "4dfd1b4", "text": "00075678164125", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/3/slow-0.json b/tests/__snapshots__/rss14-1/3/slow-0.json index a3ac2c3c..f16e3ab2 100644 --- a/tests/__snapshots__/rss14-1/3/slow-0.json +++ b/tests/__snapshots__/rss14-1/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9fe3c95", "bytesECI": "4dfd1b4", "text": "00075678164125", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/3/slow-180.json b/tests/__snapshots__/rss14-1/3/slow-180.json index 7a7931cf..67a1de21 100644 --- a/tests/__snapshots__/rss14-1/3/slow-180.json +++ b/tests/__snapshots__/rss14-1/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9fe3c95", "bytesECI": "4dfd1b4", "text": "00075678164125", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/4/fast-0.json b/tests/__snapshots__/rss14-1/4/fast-0.json index b627142d..f7503609 100644 --- a/tests/__snapshots__/rss14-1/4/fast-0.json +++ b/tests/__snapshots__/rss14-1/4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d876f72", "bytesECI": "33e27e3", "text": "20012345678909", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/4/fast-180.json b/tests/__snapshots__/rss14-1/4/fast-180.json index d26264d0..8a31bdc7 100644 --- a/tests/__snapshots__/rss14-1/4/fast-180.json +++ b/tests/__snapshots__/rss14-1/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d876f72", "bytesECI": "33e27e3", "text": "20012345678909", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/4/slow-0.json b/tests/__snapshots__/rss14-1/4/slow-0.json index 9ad4da39..9bbc8074 100644 --- a/tests/__snapshots__/rss14-1/4/slow-0.json +++ b/tests/__snapshots__/rss14-1/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d876f72", "bytesECI": "33e27e3", "text": "20012345678909", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/4/slow-180.json b/tests/__snapshots__/rss14-1/4/slow-180.json index 9e4f1c6a..a85ea0c1 100644 --- a/tests/__snapshots__/rss14-1/4/slow-180.json +++ b/tests/__snapshots__/rss14-1/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d876f72", "bytesECI": "33e27e3", "text": "20012345678909", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/5/fast-0.json b/tests/__snapshots__/rss14-1/5/fast-0.json index 92dbf809..7f81de20 100644 --- a/tests/__snapshots__/rss14-1/5/fast-0.json +++ b/tests/__snapshots__/rss14-1/5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c214576", "bytesECI": "72e73b0", "text": "00034567890125", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/5/fast-180.json b/tests/__snapshots__/rss14-1/5/fast-180.json index b88ca23a..9c451ed6 100644 --- a/tests/__snapshots__/rss14-1/5/fast-180.json +++ b/tests/__snapshots__/rss14-1/5/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c214576", "bytesECI": "72e73b0", "text": "00034567890125", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/5/slow-0.json b/tests/__snapshots__/rss14-1/5/slow-0.json index 68f0872b..7eb34fc4 100644 --- a/tests/__snapshots__/rss14-1/5/slow-0.json +++ b/tests/__snapshots__/rss14-1/5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c214576", "bytesECI": "72e73b0", "text": "00034567890125", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/5/slow-180.json b/tests/__snapshots__/rss14-1/5/slow-180.json index 382c5059..351951d6 100644 --- a/tests/__snapshots__/rss14-1/5/slow-180.json +++ b/tests/__snapshots__/rss14-1/5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c214576", "bytesECI": "72e73b0", "text": "00034567890125", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/6/fast-0.json b/tests/__snapshots__/rss14-1/6/fast-0.json index 5a03e32e..2a22460c 100644 --- a/tests/__snapshots__/rss14-1/6/fast-0.json +++ b/tests/__snapshots__/rss14-1/6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/6/fast-180.json b/tests/__snapshots__/rss14-1/6/fast-180.json index 2ff93cf0..8eeaa12d 100644 --- a/tests/__snapshots__/rss14-1/6/fast-180.json +++ b/tests/__snapshots__/rss14-1/6/fast-180.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/6/slow-0.json b/tests/__snapshots__/rss14-1/6/slow-0.json index 5a03e32e..2a22460c 100644 --- a/tests/__snapshots__/rss14-1/6/slow-0.json +++ b/tests/__snapshots__/rss14-1/6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-1/6/slow-180.json b/tests/__snapshots__/rss14-1/6/slow-180.json index 2ff93cf0..8eeaa12d 100644 --- a/tests/__snapshots__/rss14-1/6/slow-180.json +++ b/tests/__snapshots__/rss14-1/6/slow-180.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/0120358468019312/fast-0.json b/tests/__snapshots__/rss14-2/0120358468019312/fast-0.json index f46a2aa3..48ea6907 100644 --- a/tests/__snapshots__/rss14-2/0120358468019312/fast-0.json +++ b/tests/__snapshots__/rss14-2/0120358468019312/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f562a41", "bytesECI": "7753e81", "text": "20358468019312", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/0120358468019312/fast-180.json b/tests/__snapshots__/rss14-2/0120358468019312/fast-180.json index 882653db..6d0978c6 100644 --- a/tests/__snapshots__/rss14-2/0120358468019312/fast-180.json +++ b/tests/__snapshots__/rss14-2/0120358468019312/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f562a41", "bytesECI": "7753e81", "text": "20358468019312", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/0120358468019312/slow-0.json b/tests/__snapshots__/rss14-2/0120358468019312/slow-0.json index f46a2aa3..48ea6907 100644 --- a/tests/__snapshots__/rss14-2/0120358468019312/slow-0.json +++ b/tests/__snapshots__/rss14-2/0120358468019312/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f562a41", "bytesECI": "7753e81", "text": "20358468019312", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/0120358468019312/slow-180.json b/tests/__snapshots__/rss14-2/0120358468019312/slow-180.json index 882653db..6d0978c6 100644 --- a/tests/__snapshots__/rss14-2/0120358468019312/slow-180.json +++ b/tests/__snapshots__/rss14-2/0120358468019312/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f562a41", "bytesECI": "7753e81", "text": "20358468019312", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/13/fast-0.json b/tests/__snapshots__/rss14-2/13/fast-0.json index f3101f3e..5d3bc579 100644 --- a/tests/__snapshots__/rss14-2/13/fast-0.json +++ b/tests/__snapshots__/rss14-2/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/13/fast-180.json b/tests/__snapshots__/rss14-2/13/fast-180.json index 8e43c1a2..9f005374 100644 --- a/tests/__snapshots__/rss14-2/13/fast-180.json +++ b/tests/__snapshots__/rss14-2/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/13/slow-0.json b/tests/__snapshots__/rss14-2/13/slow-0.json index 92598a8c..52c5bec5 100644 --- a/tests/__snapshots__/rss14-2/13/slow-0.json +++ b/tests/__snapshots__/rss14-2/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/13/slow-180.json b/tests/__snapshots__/rss14-2/13/slow-180.json index 220994c6..6b772345 100644 --- a/tests/__snapshots__/rss14-2/13/slow-180.json +++ b/tests/__snapshots__/rss14-2/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/14/fast-0.json b/tests/__snapshots__/rss14-2/14/fast-0.json index f4c3c802..ee5923c8 100644 --- a/tests/__snapshots__/rss14-2/14/fast-0.json +++ b/tests/__snapshots__/rss14-2/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/14/fast-180.json b/tests/__snapshots__/rss14-2/14/fast-180.json index b8956ec5..418dbad0 100644 --- a/tests/__snapshots__/rss14-2/14/fast-180.json +++ b/tests/__snapshots__/rss14-2/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/14/slow-0.json b/tests/__snapshots__/rss14-2/14/slow-0.json index e982ffa8..c09e8d08 100644 --- a/tests/__snapshots__/rss14-2/14/slow-0.json +++ b/tests/__snapshots__/rss14-2/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/14/slow-180.json b/tests/__snapshots__/rss14-2/14/slow-180.json index eb1da6f9..2c089d6f 100644 --- a/tests/__snapshots__/rss14-2/14/slow-180.json +++ b/tests/__snapshots__/rss14-2/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/16/fast-0.json b/tests/__snapshots__/rss14-2/16/fast-0.json deleted file mode 100644 index 19765bd5..00000000 --- a/tests/__snapshots__/rss14-2/16/fast-0.json +++ /dev/null @@ -1 +0,0 @@ -null diff --git a/tests/__snapshots__/rss14-2/16/fast-180.json b/tests/__snapshots__/rss14-2/16/fast-180.json deleted file mode 100644 index 19765bd5..00000000 --- a/tests/__snapshots__/rss14-2/16/fast-180.json +++ /dev/null @@ -1 +0,0 @@ -null diff --git a/tests/__snapshots__/rss14-2/16/slow-0.json b/tests/__snapshots__/rss14-2/16/slow-0.json deleted file mode 100644 index 19765bd5..00000000 --- a/tests/__snapshots__/rss14-2/16/slow-0.json +++ /dev/null @@ -1 +0,0 @@ -null diff --git a/tests/__snapshots__/rss14-2/16/slow-180.json b/tests/__snapshots__/rss14-2/16/slow-180.json deleted file mode 100644 index 19765bd5..00000000 --- a/tests/__snapshots__/rss14-2/16/slow-180.json +++ /dev/null @@ -1 +0,0 @@ -null diff --git a/tests/__snapshots__/rss14-2/17/fast-0.json b/tests/__snapshots__/rss14-2/17/fast-0.json deleted file mode 100644 index 19765bd5..00000000 --- a/tests/__snapshots__/rss14-2/17/fast-0.json +++ /dev/null @@ -1 +0,0 @@ -null diff --git a/tests/__snapshots__/rss14-2/17/fast-180.json b/tests/__snapshots__/rss14-2/17/fast-180.json deleted file mode 100644 index 19765bd5..00000000 --- a/tests/__snapshots__/rss14-2/17/fast-180.json +++ /dev/null @@ -1 +0,0 @@ -null diff --git a/tests/__snapshots__/rss14-2/17/slow-0.json b/tests/__snapshots__/rss14-2/17/slow-0.json deleted file mode 100644 index 19765bd5..00000000 --- a/tests/__snapshots__/rss14-2/17/slow-0.json +++ /dev/null @@ -1 +0,0 @@ -null diff --git a/tests/__snapshots__/rss14-2/17/slow-180.json b/tests/__snapshots__/rss14-2/17/slow-180.json deleted file mode 100644 index 19765bd5..00000000 --- a/tests/__snapshots__/rss14-2/17/slow-180.json +++ /dev/null @@ -1 +0,0 @@ -null diff --git a/tests/__snapshots__/rss14-2/18/fast-0.json b/tests/__snapshots__/rss14-2/18/fast-0.json deleted file mode 100644 index 19765bd5..00000000 --- a/tests/__snapshots__/rss14-2/18/fast-0.json +++ /dev/null @@ -1 +0,0 @@ -null diff --git a/tests/__snapshots__/rss14-2/18/fast-180.json b/tests/__snapshots__/rss14-2/18/fast-180.json deleted file mode 100644 index 19765bd5..00000000 --- a/tests/__snapshots__/rss14-2/18/fast-180.json +++ /dev/null @@ -1 +0,0 @@ -null diff --git a/tests/__snapshots__/rss14-2/18/slow-0.json b/tests/__snapshots__/rss14-2/18/slow-0.json deleted file mode 100644 index 19765bd5..00000000 --- a/tests/__snapshots__/rss14-2/18/slow-0.json +++ /dev/null @@ -1 +0,0 @@ -null diff --git a/tests/__snapshots__/rss14-2/18/slow-180.json b/tests/__snapshots__/rss14-2/18/slow-180.json deleted file mode 100644 index 19765bd5..00000000 --- a/tests/__snapshots__/rss14-2/18/slow-180.json +++ /dev/null @@ -1 +0,0 @@ -null diff --git a/tests/__snapshots__/rss14-2/20/fast-0.json b/tests/__snapshots__/rss14-2/20/fast-0.json index 5a92b747..34c7df0c 100644 --- a/tests/__snapshots__/rss14-2/20/fast-0.json +++ b/tests/__snapshots__/rss14-2/20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/20/fast-180.json b/tests/__snapshots__/rss14-2/20/fast-180.json index 0fd31e50..a828adaa 100644 --- a/tests/__snapshots__/rss14-2/20/fast-180.json +++ b/tests/__snapshots__/rss14-2/20/fast-180.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/20/slow-0.json b/tests/__snapshots__/rss14-2/20/slow-0.json index 83a0cf42..e63fcb47 100644 --- a/tests/__snapshots__/rss14-2/20/slow-0.json +++ b/tests/__snapshots__/rss14-2/20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/20/slow-180.json b/tests/__snapshots__/rss14-2/20/slow-180.json index 059763ec..84603e2c 100644 --- a/tests/__snapshots__/rss14-2/20/slow-180.json +++ b/tests/__snapshots__/rss14-2/20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/21/fast-180.json b/tests/__snapshots__/rss14-2/21/fast-180.json index 2a3286b8..8505e500 100644 --- a/tests/__snapshots__/rss14-2/21/fast-180.json +++ b/tests/__snapshots__/rss14-2/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/21/slow-0.json b/tests/__snapshots__/rss14-2/21/slow-0.json index 6a2e1257..e577f073 100644 --- a/tests/__snapshots__/rss14-2/21/slow-0.json +++ b/tests/__snapshots__/rss14-2/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/21/slow-180.json b/tests/__snapshots__/rss14-2/21/slow-180.json index 2a3286b8..8505e500 100644 --- a/tests/__snapshots__/rss14-2/21/slow-180.json +++ b/tests/__snapshots__/rss14-2/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/23/fast-0.json b/tests/__snapshots__/rss14-2/23/fast-0.json index 545ac454..20b6d074 100644 --- a/tests/__snapshots__/rss14-2/23/fast-0.json +++ b/tests/__snapshots__/rss14-2/23/fast-0.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/23/fast-180.json b/tests/__snapshots__/rss14-2/23/fast-180.json index cbdee333..810aa967 100644 --- a/tests/__snapshots__/rss14-2/23/fast-180.json +++ b/tests/__snapshots__/rss14-2/23/fast-180.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/23/slow-0.json b/tests/__snapshots__/rss14-2/23/slow-0.json index 75bafc41..12d6b9b7 100644 --- a/tests/__snapshots__/rss14-2/23/slow-0.json +++ b/tests/__snapshots__/rss14-2/23/slow-0.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/23/slow-180.json b/tests/__snapshots__/rss14-2/23/slow-180.json index f6f7f099..34e95a61 100644 --- a/tests/__snapshots__/rss14-2/23/slow-180.json +++ b/tests/__snapshots__/rss14-2/23/slow-180.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/24/fast-0.json b/tests/__snapshots__/rss14-2/24/fast-0.json index 32eba832..6c9b71c9 100644 --- a/tests/__snapshots__/rss14-2/24/fast-0.json +++ b/tests/__snapshots__/rss14-2/24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/24/fast-180.json b/tests/__snapshots__/rss14-2/24/fast-180.json index ba660175..44fc798c 100644 --- a/tests/__snapshots__/rss14-2/24/fast-180.json +++ b/tests/__snapshots__/rss14-2/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/24/slow-0.json b/tests/__snapshots__/rss14-2/24/slow-0.json index d008bfe6..ff15c5c3 100644 --- a/tests/__snapshots__/rss14-2/24/slow-0.json +++ b/tests/__snapshots__/rss14-2/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/24/slow-180.json b/tests/__snapshots__/rss14-2/24/slow-180.json index 29c6e3f6..b35aeb43 100644 --- a/tests/__snapshots__/rss14-2/24/slow-180.json +++ b/tests/__snapshots__/rss14-2/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "884fe55", "bytesECI": "dc8f153", "text": "00012345678905", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/6/fast-0.json b/tests/__snapshots__/rss14-2/6/fast-0.json index 7baa85e4..5478dfef 100644 --- a/tests/__snapshots__/rss14-2/6/fast-0.json +++ b/tests/__snapshots__/rss14-2/6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/6/fast-180.json b/tests/__snapshots__/rss14-2/6/fast-180.json index 13ef0e6c..95e6a19f 100644 --- a/tests/__snapshots__/rss14-2/6/fast-180.json +++ b/tests/__snapshots__/rss14-2/6/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/6/slow-0.json b/tests/__snapshots__/rss14-2/6/slow-0.json index b1ca5ee3..9e76f14d 100644 --- a/tests/__snapshots__/rss14-2/6/slow-0.json +++ b/tests/__snapshots__/rss14-2/6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/6/slow-180.json b/tests/__snapshots__/rss14-2/6/slow-180.json index 5e8e6dda..8d8aeb56 100644 --- a/tests/__snapshots__/rss14-2/6/slow-180.json +++ b/tests/__snapshots__/rss14-2/6/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/7/fast-0.json b/tests/__snapshots__/rss14-2/7/fast-0.json index 79e43e52..1b2cc9f4 100644 --- a/tests/__snapshots__/rss14-2/7/fast-0.json +++ b/tests/__snapshots__/rss14-2/7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/7/fast-180.json b/tests/__snapshots__/rss14-2/7/fast-180.json index 7ff6c018..2bd3cf42 100644 --- a/tests/__snapshots__/rss14-2/7/fast-180.json +++ b/tests/__snapshots__/rss14-2/7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/7/slow-0.json b/tests/__snapshots__/rss14-2/7/slow-0.json index 1aaa3b7d..4153915e 100644 --- a/tests/__snapshots__/rss14-2/7/slow-0.json +++ b/tests/__snapshots__/rss14-2/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/7/slow-180.json b/tests/__snapshots__/rss14-2/7/slow-180.json index b8363480..638870c2 100644 --- a/tests/__snapshots__/rss14-2/7/slow-180.json +++ b/tests/__snapshots__/rss14-2/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/8/fast-0.json b/tests/__snapshots__/rss14-2/8/fast-0.json index ba88e227..7214b5e8 100644 --- a/tests/__snapshots__/rss14-2/8/fast-0.json +++ b/tests/__snapshots__/rss14-2/8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/8/slow-0.json b/tests/__snapshots__/rss14-2/8/slow-0.json index a794e33f..ecbd3fda 100644 --- a/tests/__snapshots__/rss14-2/8/slow-0.json +++ b/tests/__snapshots__/rss14-2/8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/8/slow-180.json b/tests/__snapshots__/rss14-2/8/slow-180.json index b7400211..b0cd38d1 100644 --- a/tests/__snapshots__/rss14-2/8/slow-180.json +++ b/tests/__snapshots__/rss14-2/8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/9/fast-0.json b/tests/__snapshots__/rss14-2/9/fast-0.json index 961d045b..b06a09dd 100644 --- a/tests/__snapshots__/rss14-2/9/fast-0.json +++ b/tests/__snapshots__/rss14-2/9/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/9/fast-180.json b/tests/__snapshots__/rss14-2/9/fast-180.json index 555b18aa..e9d34e51 100644 --- a/tests/__snapshots__/rss14-2/9/fast-180.json +++ b/tests/__snapshots__/rss14-2/9/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/9/slow-0.json b/tests/__snapshots__/rss14-2/9/slow-0.json index ace6409c..1b068d4c 100644 --- a/tests/__snapshots__/rss14-2/9/slow-0.json +++ b/tests/__snapshots__/rss14-2/9/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rss14-2/9/slow-180.json b/tests/__snapshots__/rss14-2/9/slow-180.json index 714fbe6d..ddb876be 100644 --- a/tests/__snapshots__/rss14-2/9/slow-180.json +++ b/tests/__snapshots__/rss14-2/9/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ea3059e", "bytesECI": "c641d77", "text": "02001234567893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/#384/fast-0.json b/tests/__snapshots__/rssexpanded-1/#384/fast-0.json index 2896938d..8cacc045 100644 --- a/tests/__snapshots__/rssexpanded-1/#384/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/#384/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9fdb5e2", "bytesECI": "3e38413", "text": "0100000000000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/#384/fast-180.json b/tests/__snapshots__/rssexpanded-1/#384/fast-180.json index 592176db..3a9883b8 100644 --- a/tests/__snapshots__/rssexpanded-1/#384/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/#384/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9fdb5e2", "bytesECI": "3e38413", "text": "0100000000000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/#384/pure-0.json b/tests/__snapshots__/rssexpanded-1/#384/pure-0.json index 4e01c94c..249cd3aa 100644 --- a/tests/__snapshots__/rssexpanded-1/#384/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/#384/pure-0.json @@ -5,7 +5,7 @@ "bytes": "9fdb5e2", "bytesECI": "3e38413", "text": "0100000000000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/#384/slow-0.json b/tests/__snapshots__/rssexpanded-1/#384/slow-0.json index 2896938d..8cacc045 100644 --- a/tests/__snapshots__/rssexpanded-1/#384/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/#384/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9fdb5e2", "bytesECI": "3e38413", "text": "0100000000000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/#384/slow-180.json b/tests/__snapshots__/rssexpanded-1/#384/slow-180.json index 592176db..3a9883b8 100644 --- a/tests/__snapshots__/rssexpanded-1/#384/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/#384/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9fdb5e2", "bytesECI": "3e38413", "text": "0100000000000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/1/fast-0.json b/tests/__snapshots__/rssexpanded-1/1/fast-0.json index a8e95d74..d07ea9fb 100644 --- a/tests/__snapshots__/rssexpanded-1/1/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "78dbaca", "bytesECI": "4c8d510", "text": "11100224171102243102000100", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/1/fast-180.json b/tests/__snapshots__/rssexpanded-1/1/fast-180.json index 464d4a68..b8b27d94 100644 --- a/tests/__snapshots__/rssexpanded-1/1/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "78dbaca", "bytesECI": "4c8d510", "text": "11100224171102243102000100", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/1/pure-0.json b/tests/__snapshots__/rssexpanded-1/1/pure-0.json index 7a988a1b..7036e34e 100644 --- a/tests/__snapshots__/rssexpanded-1/1/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "78dbaca", "bytesECI": "4c8d510", "text": "11100224171102243102000100", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/1/slow-0.json b/tests/__snapshots__/rssexpanded-1/1/slow-0.json index e45cd9e5..62ac3b03 100644 --- a/tests/__snapshots__/rssexpanded-1/1/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "78dbaca", "bytesECI": "4c8d510", "text": "11100224171102243102000100", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/1/slow-180.json b/tests/__snapshots__/rssexpanded-1/1/slow-180.json index 37223e03..5f340cbe 100644 --- a/tests/__snapshots__/rssexpanded-1/1/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "78dbaca", "bytesECI": "4c8d510", "text": "11100224171102243102000100", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/10-corrected/fast-0.json b/tests/__snapshots__/rssexpanded-1/10-corrected/fast-0.json index a3cd5cf6..414e58dd 100644 --- a/tests/__snapshots__/rssexpanded-1/10-corrected/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/10-corrected/fast-0.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/10-corrected/fast-180.json b/tests/__snapshots__/rssexpanded-1/10-corrected/fast-180.json index 90e22f45..1cdae18e 100644 --- a/tests/__snapshots__/rssexpanded-1/10-corrected/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/10-corrected/fast-180.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/10-corrected/pure-0.json b/tests/__snapshots__/rssexpanded-1/10-corrected/pure-0.json index 8422f0e9..8d9448cf 100644 --- a/tests/__snapshots__/rssexpanded-1/10-corrected/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/10-corrected/pure-0.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/10-corrected/slow-0.json b/tests/__snapshots__/rssexpanded-1/10-corrected/slow-0.json index a3cd5cf6..414e58dd 100644 --- a/tests/__snapshots__/rssexpanded-1/10-corrected/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/10-corrected/slow-0.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/10-corrected/slow-180.json b/tests/__snapshots__/rssexpanded-1/10-corrected/slow-180.json index 90e22f45..1cdae18e 100644 --- a/tests/__snapshots__/rssexpanded-1/10-corrected/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/10-corrected/slow-180.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/10/fast-0.json b/tests/__snapshots__/rssexpanded-1/10/fast-0.json index 4c156b65..4701b4d4 100644 --- a/tests/__snapshots__/rssexpanded-1/10/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/10/fast-180.json b/tests/__snapshots__/rssexpanded-1/10/fast-180.json index 42534bb4..54c5034e 100644 --- a/tests/__snapshots__/rssexpanded-1/10/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/10/pure-0.json b/tests/__snapshots__/rssexpanded-1/10/pure-0.json index c13fbc9e..cdbf9b6e 100644 --- a/tests/__snapshots__/rssexpanded-1/10/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/10/pure-0.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/10/slow-0.json b/tests/__snapshots__/rssexpanded-1/10/slow-0.json index cbfe16e3..42850aaa 100644 --- a/tests/__snapshots__/rssexpanded-1/10/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/10/slow-180.json b/tests/__snapshots__/rssexpanded-1/10/slow-180.json index 1aa77f31..4e890e8e 100644 --- a/tests/__snapshots__/rssexpanded-1/10/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/11/fast-0.json b/tests/__snapshots__/rssexpanded-1/11/fast-0.json index 11803b2e..c46f7b63 100644 --- a/tests/__snapshots__/rssexpanded-1/11/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1d72763", "bytesECI": "2efec1a", "text": "01988987654321061599123131030017501012A42212321123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/11/fast-180.json b/tests/__snapshots__/rssexpanded-1/11/fast-180.json index 428efb35..b560ca5a 100644 --- a/tests/__snapshots__/rssexpanded-1/11/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1d72763", "bytesECI": "2efec1a", "text": "01988987654321061599123131030017501012A42212321123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/11/pure-0.json b/tests/__snapshots__/rssexpanded-1/11/pure-0.json index 71992f7f..e1f9e764 100644 --- a/tests/__snapshots__/rssexpanded-1/11/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/11/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1d72763", "bytesECI": "2efec1a", "text": "01988987654321061599123131030017501012A42212321123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/11/slow-0.json b/tests/__snapshots__/rssexpanded-1/11/slow-0.json index 92d5c1e6..4e7afe67 100644 --- a/tests/__snapshots__/rssexpanded-1/11/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1d72763", "bytesECI": "2efec1a", "text": "01988987654321061599123131030017501012A42212321123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/11/slow-180.json b/tests/__snapshots__/rssexpanded-1/11/slow-180.json index 490ed005..fbcf15bf 100644 --- a/tests/__snapshots__/rssexpanded-1/11/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1d72763", "bytesECI": "2efec1a", "text": "01988987654321061599123131030017501012A42212321123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/12/fast-0.json b/tests/__snapshots__/rssexpanded-1/12/fast-0.json index 00a9d729..eb224593 100644 --- a/tests/__snapshots__/rssexpanded-1/12/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f65f5ad", "bytesECI": "cff160b", "text": "01988987654321063103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/12/fast-180.json b/tests/__snapshots__/rssexpanded-1/12/fast-180.json index 4a922538..a44ef193 100644 --- a/tests/__snapshots__/rssexpanded-1/12/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f65f5ad", "bytesECI": "cff160b", "text": "01988987654321063103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/12/pure-0.json b/tests/__snapshots__/rssexpanded-1/12/pure-0.json index 97831f29..a8719e62 100644 --- a/tests/__snapshots__/rssexpanded-1/12/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "f65f5ad", "bytesECI": "cff160b", "text": "01988987654321063103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/12/slow-0.json b/tests/__snapshots__/rssexpanded-1/12/slow-0.json index 869efa1b..3f7fe395 100644 --- a/tests/__snapshots__/rssexpanded-1/12/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f65f5ad", "bytesECI": "cff160b", "text": "01988987654321063103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/12/slow-180.json b/tests/__snapshots__/rssexpanded-1/12/slow-180.json index 644699a4..72c5ea04 100644 --- a/tests/__snapshots__/rssexpanded-1/12/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f65f5ad", "bytesECI": "cff160b", "text": "01988987654321063103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/13/fast-0.json b/tests/__snapshots__/rssexpanded-1/13/fast-0.json index bf5390ae..dd7ded2a 100644 --- a/tests/__snapshots__/rssexpanded-1/13/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/13/fast-180.json b/tests/__snapshots__/rssexpanded-1/13/fast-180.json index 6847c5ef..b2385654 100644 --- a/tests/__snapshots__/rssexpanded-1/13/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/13/pure-0.json b/tests/__snapshots__/rssexpanded-1/13/pure-0.json index a19960fb..a776008a 100644 --- a/tests/__snapshots__/rssexpanded-1/13/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/13/pure-0.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/13/slow-0.json b/tests/__snapshots__/rssexpanded-1/13/slow-0.json index 059df64f..d9bc58d8 100644 --- a/tests/__snapshots__/rssexpanded-1/13/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/13/slow-180.json b/tests/__snapshots__/rssexpanded-1/13/slow-180.json index 55d29167..2919b4e2 100644 --- a/tests/__snapshots__/rssexpanded-1/13/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/14/fast-0.json b/tests/__snapshots__/rssexpanded-1/14/fast-0.json index fd3e786a..cee6964a 100644 --- a/tests/__snapshots__/rssexpanded-1/14/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/14/fast-180.json b/tests/__snapshots__/rssexpanded-1/14/fast-180.json index cf237b22..4588d28a 100644 --- a/tests/__snapshots__/rssexpanded-1/14/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/14/pure-0.json b/tests/__snapshots__/rssexpanded-1/14/pure-0.json index e62fcbc3..7bd701ac 100644 --- a/tests/__snapshots__/rssexpanded-1/14/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/14/pure-0.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/14/slow-0.json b/tests/__snapshots__/rssexpanded-1/14/slow-0.json index 169e018d..6c02e86d 100644 --- a/tests/__snapshots__/rssexpanded-1/14/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/14/slow-180.json b/tests/__snapshots__/rssexpanded-1/14/slow-180.json index 8bc57b66..9076cba1 100644 --- a/tests/__snapshots__/rssexpanded-1/14/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/15/fast-0.json b/tests/__snapshots__/rssexpanded-1/15/fast-0.json index 5a73d58f..e919525d 100644 --- a/tests/__snapshots__/rssexpanded-1/15/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ac80d99", "bytesECI": "8fa63ab", "text": "0190012345678908310200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/15/fast-180.json b/tests/__snapshots__/rssexpanded-1/15/fast-180.json index 106dda6d..9379452b 100644 --- a/tests/__snapshots__/rssexpanded-1/15/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ac80d99", "bytesECI": "8fa63ab", "text": "0190012345678908310200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/15/pure-0.json b/tests/__snapshots__/rssexpanded-1/15/pure-0.json index e06acd72..06f3a83e 100644 --- a/tests/__snapshots__/rssexpanded-1/15/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/15/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ac80d99", "bytesECI": "8fa63ab", "text": "0190012345678908310200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/15/slow-0.json b/tests/__snapshots__/rssexpanded-1/15/slow-0.json index 716cdecd..626f4239 100644 --- a/tests/__snapshots__/rssexpanded-1/15/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ac80d99", "bytesECI": "8fa63ab", "text": "0190012345678908310200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/15/slow-180.json b/tests/__snapshots__/rssexpanded-1/15/slow-180.json index 4fda7208..abf57e6c 100644 --- a/tests/__snapshots__/rssexpanded-1/15/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ac80d99", "bytesECI": "8fa63ab", "text": "0190012345678908310200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/16/fast-0.json b/tests/__snapshots__/rssexpanded-1/16/fast-0.json index a8156cc0..1de151e8 100644 --- a/tests/__snapshots__/rssexpanded-1/16/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b5f3598", "bytesECI": "7af18cd", "text": "0190012345678908320200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/16/fast-180.json b/tests/__snapshots__/rssexpanded-1/16/fast-180.json index 83666621..b5bd1b55 100644 --- a/tests/__snapshots__/rssexpanded-1/16/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b5f3598", "bytesECI": "7af18cd", "text": "0190012345678908320200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/16/pure-0.json b/tests/__snapshots__/rssexpanded-1/16/pure-0.json index 2bc916fb..9181effa 100644 --- a/tests/__snapshots__/rssexpanded-1/16/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/16/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b5f3598", "bytesECI": "7af18cd", "text": "0190012345678908320200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/16/slow-0.json b/tests/__snapshots__/rssexpanded-1/16/slow-0.json index bb1b9347..35a58ce4 100644 --- a/tests/__snapshots__/rssexpanded-1/16/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b5f3598", "bytesECI": "7af18cd", "text": "0190012345678908320200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/16/slow-180.json b/tests/__snapshots__/rssexpanded-1/16/slow-180.json index 306e5e3e..3a04e0f3 100644 --- a/tests/__snapshots__/rssexpanded-1/16/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b5f3598", "bytesECI": "7af18cd", "text": "0190012345678908320200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/17/fast-0.json b/tests/__snapshots__/rssexpanded-1/17/fast-0.json index 8bc0cad8..afeb5abe 100644 --- a/tests/__snapshots__/rssexpanded-1/17/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ecb6ee5", "bytesECI": "80d5084", "text": "0190012345678908310200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/17/fast-180.json b/tests/__snapshots__/rssexpanded-1/17/fast-180.json index a812851e..e0be7bad 100644 --- a/tests/__snapshots__/rssexpanded-1/17/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ecb6ee5", "bytesECI": "80d5084", "text": "0190012345678908310200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/17/pure-0.json b/tests/__snapshots__/rssexpanded-1/17/pure-0.json index 6d6f589e..7ea73625 100644 --- a/tests/__snapshots__/rssexpanded-1/17/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/17/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ecb6ee5", "bytesECI": "80d5084", "text": "0190012345678908310200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/17/slow-0.json b/tests/__snapshots__/rssexpanded-1/17/slow-0.json index 16de5168..2f28ba8a 100644 --- a/tests/__snapshots__/rssexpanded-1/17/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ecb6ee5", "bytesECI": "80d5084", "text": "0190012345678908310200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/17/slow-180.json b/tests/__snapshots__/rssexpanded-1/17/slow-180.json index 5602fb0d..103d7877 100644 --- a/tests/__snapshots__/rssexpanded-1/17/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ecb6ee5", "bytesECI": "80d5084", "text": "0190012345678908310200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/18/fast-0.json b/tests/__snapshots__/rssexpanded-1/18/fast-0.json index 82880b63..ea19bdd1 100644 --- a/tests/__snapshots__/rssexpanded-1/18/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6afcec0", "bytesECI": "c3fb904", "text": "0190012345678908320200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/18/fast-180.json b/tests/__snapshots__/rssexpanded-1/18/fast-180.json index 30e8ef71..a2a21821 100644 --- a/tests/__snapshots__/rssexpanded-1/18/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6afcec0", "bytesECI": "c3fb904", "text": "0190012345678908320200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/18/pure-0.json b/tests/__snapshots__/rssexpanded-1/18/pure-0.json index 74ba57be..1d693aa3 100644 --- a/tests/__snapshots__/rssexpanded-1/18/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/18/pure-0.json @@ -5,7 +5,7 @@ "bytes": "6afcec0", "bytesECI": "c3fb904", "text": "0190012345678908320200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/18/slow-0.json b/tests/__snapshots__/rssexpanded-1/18/slow-0.json index 251bb5bf..3172011f 100644 --- a/tests/__snapshots__/rssexpanded-1/18/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6afcec0", "bytesECI": "c3fb904", "text": "0190012345678908320200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/18/slow-180.json b/tests/__snapshots__/rssexpanded-1/18/slow-180.json index fffebee3..17ce8bb0 100644 --- a/tests/__snapshots__/rssexpanded-1/18/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6afcec0", "bytesECI": "c3fb904", "text": "0190012345678908320200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/19/fast-0.json b/tests/__snapshots__/rssexpanded-1/19/fast-0.json index 06d2f147..67a358a5 100644 --- a/tests/__snapshots__/rssexpanded-1/19/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "781aba4", "bytesECI": "7952383", "text": "0190012345678908310200175015100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/19/fast-180.json b/tests/__snapshots__/rssexpanded-1/19/fast-180.json index 20e29583..e40ee57e 100644 --- a/tests/__snapshots__/rssexpanded-1/19/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "781aba4", "bytesECI": "7952383", "text": "0190012345678908310200175015100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/19/pure-0.json b/tests/__snapshots__/rssexpanded-1/19/pure-0.json index d1521367..0acd4451 100644 --- a/tests/__snapshots__/rssexpanded-1/19/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/19/pure-0.json @@ -5,7 +5,7 @@ "bytes": "781aba4", "bytesECI": "7952383", "text": "0190012345678908310200175015100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/19/slow-0.json b/tests/__snapshots__/rssexpanded-1/19/slow-0.json index 6318e7f0..e2435112 100644 --- a/tests/__snapshots__/rssexpanded-1/19/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "781aba4", "bytesECI": "7952383", "text": "0190012345678908310200175015100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/19/slow-180.json b/tests/__snapshots__/rssexpanded-1/19/slow-180.json index 8d2e697f..327ce3c2 100644 --- a/tests/__snapshots__/rssexpanded-1/19/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "781aba4", "bytesECI": "7952383", "text": "0190012345678908310200175015100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/2/fast-0.json b/tests/__snapshots__/rssexpanded-1/2/fast-0.json index c1ed888b..fc25da12 100644 --- a/tests/__snapshots__/rssexpanded-1/2/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/2/fast-180.json b/tests/__snapshots__/rssexpanded-1/2/fast-180.json index 3c83d168..36d2a779 100644 --- a/tests/__snapshots__/rssexpanded-1/2/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/2/pure-0.json b/tests/__snapshots__/rssexpanded-1/2/pure-0.json index 5cdfcf23..bf9dfdac 100644 --- a/tests/__snapshots__/rssexpanded-1/2/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/2/pure-0.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/2/slow-0.json b/tests/__snapshots__/rssexpanded-1/2/slow-0.json index 70f0adff..0f829b4a 100644 --- a/tests/__snapshots__/rssexpanded-1/2/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/2/slow-180.json b/tests/__snapshots__/rssexpanded-1/2/slow-180.json index b9d5ef59..2dc8549a 100644 --- a/tests/__snapshots__/rssexpanded-1/2/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/20/fast-0.json b/tests/__snapshots__/rssexpanded-1/20/fast-0.json index d12cbcc1..71875862 100644 --- a/tests/__snapshots__/rssexpanded-1/20/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "20986d1", "bytesECI": "9bd1fef", "text": "0190012345678908320200175015100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/20/fast-180.json b/tests/__snapshots__/rssexpanded-1/20/fast-180.json index 7004ff35..a95889de 100644 --- a/tests/__snapshots__/rssexpanded-1/20/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/20/fast-180.json @@ -5,7 +5,7 @@ "bytes": "20986d1", "bytesECI": "9bd1fef", "text": "0190012345678908320200175015100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/20/pure-0.json b/tests/__snapshots__/rssexpanded-1/20/pure-0.json index 54bab5e9..1552f268 100644 --- a/tests/__snapshots__/rssexpanded-1/20/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/20/pure-0.json @@ -5,7 +5,7 @@ "bytes": "20986d1", "bytesECI": "9bd1fef", "text": "0190012345678908320200175015100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/20/slow-0.json b/tests/__snapshots__/rssexpanded-1/20/slow-0.json index 2cd1b55f..c6a7b6d7 100644 --- a/tests/__snapshots__/rssexpanded-1/20/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "20986d1", "bytesECI": "9bd1fef", "text": "0190012345678908320200175015100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/20/slow-180.json b/tests/__snapshots__/rssexpanded-1/20/slow-180.json index a11728e9..e68c56af 100644 --- a/tests/__snapshots__/rssexpanded-1/20/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "20986d1", "bytesECI": "9bd1fef", "text": "0190012345678908320200175015100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/21/fast-0.json b/tests/__snapshots__/rssexpanded-1/21/fast-0.json index bea1e6ff..a30971aa 100644 --- a/tests/__snapshots__/rssexpanded-1/21/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/21/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5fdb65b", "bytesECI": "5fe9cb6", "text": "0190012345678908310200175017100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/21/fast-180.json b/tests/__snapshots__/rssexpanded-1/21/fast-180.json index 352558d7..6af2a53f 100644 --- a/tests/__snapshots__/rssexpanded-1/21/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5fdb65b", "bytesECI": "5fe9cb6", "text": "0190012345678908310200175017100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/21/pure-0.json b/tests/__snapshots__/rssexpanded-1/21/pure-0.json index edb4c1f6..6e832103 100644 --- a/tests/__snapshots__/rssexpanded-1/21/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/21/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5fdb65b", "bytesECI": "5fe9cb6", "text": "0190012345678908310200175017100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/21/slow-0.json b/tests/__snapshots__/rssexpanded-1/21/slow-0.json index c5ed8bf7..92c873ef 100644 --- a/tests/__snapshots__/rssexpanded-1/21/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5fdb65b", "bytesECI": "5fe9cb6", "text": "0190012345678908310200175017100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/21/slow-180.json b/tests/__snapshots__/rssexpanded-1/21/slow-180.json index 0e797464..177f3fc0 100644 --- a/tests/__snapshots__/rssexpanded-1/21/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5fdb65b", "bytesECI": "5fe9cb6", "text": "0190012345678908310200175017100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/22/fast-0.json b/tests/__snapshots__/rssexpanded-1/22/fast-0.json index d0ca2657..b5ae6445 100644 --- a/tests/__snapshots__/rssexpanded-1/22/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/22/fast-0.json @@ -5,7 +5,7 @@ "bytes": "98cba1e", "bytesECI": "b0725d8", "text": "0190012345678908320200175017100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/22/fast-180.json b/tests/__snapshots__/rssexpanded-1/22/fast-180.json index b5745615..30fca218 100644 --- a/tests/__snapshots__/rssexpanded-1/22/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/22/fast-180.json @@ -5,7 +5,7 @@ "bytes": "98cba1e", "bytesECI": "b0725d8", "text": "0190012345678908320200175017100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/22/pure-0.json b/tests/__snapshots__/rssexpanded-1/22/pure-0.json index 35982a56..95a29cd7 100644 --- a/tests/__snapshots__/rssexpanded-1/22/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/22/pure-0.json @@ -5,7 +5,7 @@ "bytes": "98cba1e", "bytesECI": "b0725d8", "text": "0190012345678908320200175017100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/22/slow-0.json b/tests/__snapshots__/rssexpanded-1/22/slow-0.json index 1ef3df95..4b7fdd9d 100644 --- a/tests/__snapshots__/rssexpanded-1/22/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "98cba1e", "bytesECI": "b0725d8", "text": "0190012345678908320200175017100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/22/slow-180.json b/tests/__snapshots__/rssexpanded-1/22/slow-180.json index 285b732f..2aa1106c 100644 --- a/tests/__snapshots__/rssexpanded-1/22/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "98cba1e", "bytesECI": "b0725d8", "text": "0190012345678908320200175017100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/23/fast-0.json b/tests/__snapshots__/rssexpanded-1/23/fast-0.json index 62ed707e..e1edb707 100644 --- a/tests/__snapshots__/rssexpanded-1/23/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/23/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1fe01cf", "bytesECI": "5139c8f", "text": "105678911010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/23/fast-180.json b/tests/__snapshots__/rssexpanded-1/23/fast-180.json index e698e863..236033df 100644 --- a/tests/__snapshots__/rssexpanded-1/23/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/23/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1fe01cf", "bytesECI": "5139c8f", "text": "105678911010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/23/pure-0.json b/tests/__snapshots__/rssexpanded-1/23/pure-0.json index e4973eb0..fa66b729 100644 --- a/tests/__snapshots__/rssexpanded-1/23/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/23/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1fe01cf", "bytesECI": "5139c8f", "text": "105678911010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/23/slow-0.json b/tests/__snapshots__/rssexpanded-1/23/slow-0.json index 3f9e32e2..fa4874d9 100644 --- a/tests/__snapshots__/rssexpanded-1/23/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/23/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1fe01cf", "bytesECI": "5139c8f", "text": "105678911010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/23/slow-180.json b/tests/__snapshots__/rssexpanded-1/23/slow-180.json index fc3d4696..caadca59 100644 --- a/tests/__snapshots__/rssexpanded-1/23/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/23/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1fe01cf", "bytesECI": "5139c8f", "text": "105678911010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/24/fast-0.json b/tests/__snapshots__/rssexpanded-1/24/fast-0.json index 8b3cce9a..41f3c989 100644 --- a/tests/__snapshots__/rssexpanded-1/24/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/24/fast-180.json b/tests/__snapshots__/rssexpanded-1/24/fast-180.json index bcebba31..38aa585a 100644 --- a/tests/__snapshots__/rssexpanded-1/24/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/24/pure-0.json b/tests/__snapshots__/rssexpanded-1/24/pure-0.json index f9193ee0..2e0907e5 100644 --- a/tests/__snapshots__/rssexpanded-1/24/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/24/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/24/slow-0.json b/tests/__snapshots__/rssexpanded-1/24/slow-0.json index c858a749..3f5b4d04 100644 --- a/tests/__snapshots__/rssexpanded-1/24/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/24/slow-180.json b/tests/__snapshots__/rssexpanded-1/24/slow-180.json index 5364a612..ee4e9577 100644 --- a/tests/__snapshots__/rssexpanded-1/24/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/25/fast-0.json b/tests/__snapshots__/rssexpanded-1/25/fast-0.json index 3bf7b455..0e421c0b 100644 --- a/tests/__snapshots__/rssexpanded-1/25/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/25/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/25/fast-180.json b/tests/__snapshots__/rssexpanded-1/25/fast-180.json index 55f342a8..2edddfbf 100644 --- a/tests/__snapshots__/rssexpanded-1/25/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/25/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/25/pure-0.json b/tests/__snapshots__/rssexpanded-1/25/pure-0.json index 7ab3f219..38e1ac9a 100644 --- a/tests/__snapshots__/rssexpanded-1/25/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/25/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/25/slow-0.json b/tests/__snapshots__/rssexpanded-1/25/slow-0.json index a3c4c974..1d507c1b 100644 --- a/tests/__snapshots__/rssexpanded-1/25/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/25/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/25/slow-180.json b/tests/__snapshots__/rssexpanded-1/25/slow-180.json index 516e2153..6c5ea71f 100644 --- a/tests/__snapshots__/rssexpanded-1/25/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/25/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/26/fast-0.json b/tests/__snapshots__/rssexpanded-1/26/fast-0.json index dae115a3..291aea7e 100644 --- a/tests/__snapshots__/rssexpanded-1/26/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/26/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/26/fast-180.json b/tests/__snapshots__/rssexpanded-1/26/fast-180.json index 82b274a1..008944dc 100644 --- a/tests/__snapshots__/rssexpanded-1/26/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/26/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/26/pure-0.json b/tests/__snapshots__/rssexpanded-1/26/pure-0.json index 69331eb9..4114e79f 100644 --- a/tests/__snapshots__/rssexpanded-1/26/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/26/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/26/slow-0.json b/tests/__snapshots__/rssexpanded-1/26/slow-0.json index 5ae82fb2..953ec890 100644 --- a/tests/__snapshots__/rssexpanded-1/26/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/26/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/26/slow-180.json b/tests/__snapshots__/rssexpanded-1/26/slow-180.json index c5b3e4c6..a4b7292d 100644 --- a/tests/__snapshots__/rssexpanded-1/26/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/26/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/27/fast-0.json b/tests/__snapshots__/rssexpanded-1/27/fast-0.json index 98cc49f0..fb36881f 100644 --- a/tests/__snapshots__/rssexpanded-1/27/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/27/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/27/fast-180.json b/tests/__snapshots__/rssexpanded-1/27/fast-180.json index 269758dc..58351a82 100644 --- a/tests/__snapshots__/rssexpanded-1/27/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/27/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/27/pure-0.json b/tests/__snapshots__/rssexpanded-1/27/pure-0.json index b0b43e0c..c209fd1f 100644 --- a/tests/__snapshots__/rssexpanded-1/27/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/27/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/27/slow-0.json b/tests/__snapshots__/rssexpanded-1/27/slow-0.json index 4acc0535..c022c066 100644 --- a/tests/__snapshots__/rssexpanded-1/27/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/27/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/27/slow-180.json b/tests/__snapshots__/rssexpanded-1/27/slow-180.json index 36456ecb..17ad9a96 100644 --- a/tests/__snapshots__/rssexpanded-1/27/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/27/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/28/fast-0.json b/tests/__snapshots__/rssexpanded-1/28/fast-0.json index e586fa01..f6fb12ce 100644 --- a/tests/__snapshots__/rssexpanded-1/28/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/28/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/28/fast-180.json b/tests/__snapshots__/rssexpanded-1/28/fast-180.json index 5b4ad1e1..e0006f7b 100644 --- a/tests/__snapshots__/rssexpanded-1/28/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/28/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/28/pure-0.json b/tests/__snapshots__/rssexpanded-1/28/pure-0.json index accb0cf7..63b9e893 100644 --- a/tests/__snapshots__/rssexpanded-1/28/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/28/pure-0.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/28/slow-0.json b/tests/__snapshots__/rssexpanded-1/28/slow-0.json index bcc1d2c8..3189ab0e 100644 --- a/tests/__snapshots__/rssexpanded-1/28/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/28/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/28/slow-180.json b/tests/__snapshots__/rssexpanded-1/28/slow-180.json index cb57f73a..320b82ab 100644 --- a/tests/__snapshots__/rssexpanded-1/28/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/28/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/29/fast-0.json b/tests/__snapshots__/rssexpanded-1/29/fast-0.json index e32470e1..ae6f4d48 100644 --- a/tests/__snapshots__/rssexpanded-1/29/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/29/fast-0.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/29/fast-180.json b/tests/__snapshots__/rssexpanded-1/29/fast-180.json index 60c9d716..4e339317 100644 --- a/tests/__snapshots__/rssexpanded-1/29/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/29/fast-180.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/29/pure-0.json b/tests/__snapshots__/rssexpanded-1/29/pure-0.json index 649efe15..17a65b94 100644 --- a/tests/__snapshots__/rssexpanded-1/29/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/29/pure-0.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/29/slow-0.json b/tests/__snapshots__/rssexpanded-1/29/slow-0.json index f19d168c..0208f2a0 100644 --- a/tests/__snapshots__/rssexpanded-1/29/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/29/slow-0.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/29/slow-180.json b/tests/__snapshots__/rssexpanded-1/29/slow-180.json index 75973141..fb0c01cb 100644 --- a/tests/__snapshots__/rssexpanded-1/29/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/29/slow-180.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/3/fast-0.json b/tests/__snapshots__/rssexpanded-1/3/fast-0.json index 27929895..0cbe86f8 100644 --- a/tests/__snapshots__/rssexpanded-1/3/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/3/fast-180.json b/tests/__snapshots__/rssexpanded-1/3/fast-180.json index 1c71defb..6bceaef8 100644 --- a/tests/__snapshots__/rssexpanded-1/3/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/3/pure-0.json b/tests/__snapshots__/rssexpanded-1/3/pure-0.json index f997ad42..7cb69e85 100644 --- a/tests/__snapshots__/rssexpanded-1/3/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/3/pure-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/3/slow-0.json b/tests/__snapshots__/rssexpanded-1/3/slow-0.json index e0a0d313..f4bc5bd1 100644 --- a/tests/__snapshots__/rssexpanded-1/3/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/3/slow-180.json b/tests/__snapshots__/rssexpanded-1/3/slow-180.json index 15224999..b0eb983c 100644 --- a/tests/__snapshots__/rssexpanded-1/3/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/30/fast-0.json b/tests/__snapshots__/rssexpanded-1/30/fast-0.json index 35ea846e..be39c315 100644 --- a/tests/__snapshots__/rssexpanded-1/30/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/30/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/30/fast-180.json b/tests/__snapshots__/rssexpanded-1/30/fast-180.json index 7b234c39..81c73411 100644 --- a/tests/__snapshots__/rssexpanded-1/30/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/30/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/30/pure-0.json b/tests/__snapshots__/rssexpanded-1/30/pure-0.json index 66351002..98426328 100644 --- a/tests/__snapshots__/rssexpanded-1/30/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/30/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/30/slow-0.json b/tests/__snapshots__/rssexpanded-1/30/slow-0.json index 706564f3..f209e7dc 100644 --- a/tests/__snapshots__/rssexpanded-1/30/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/30/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/30/slow-180.json b/tests/__snapshots__/rssexpanded-1/30/slow-180.json index 2e7e8571..ed674d5b 100644 --- a/tests/__snapshots__/rssexpanded-1/30/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/30/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/31/fast-0.json b/tests/__snapshots__/rssexpanded-1/31/fast-0.json index 47286f18..46e04e7d 100644 --- a/tests/__snapshots__/rssexpanded-1/31/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/31/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/31/fast-180.json b/tests/__snapshots__/rssexpanded-1/31/fast-180.json index e2554ad8..b8414caf 100644 --- a/tests/__snapshots__/rssexpanded-1/31/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/31/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/31/pure-0.json b/tests/__snapshots__/rssexpanded-1/31/pure-0.json index 1b78f6ae..fe445651 100644 --- a/tests/__snapshots__/rssexpanded-1/31/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/31/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/31/slow-0.json b/tests/__snapshots__/rssexpanded-1/31/slow-0.json index b1dac3f7..506fc8fd 100644 --- a/tests/__snapshots__/rssexpanded-1/31/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/31/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/31/slow-180.json b/tests/__snapshots__/rssexpanded-1/31/slow-180.json index 9c2c0e0f..0281b9d7 100644 --- a/tests/__snapshots__/rssexpanded-1/31/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/31/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/32/fast-0.json b/tests/__snapshots__/rssexpanded-1/32/fast-0.json index fd61df59..f07d119c 100644 --- a/tests/__snapshots__/rssexpanded-1/32/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/32/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9f6bd4e", "bytesECI": "45ae55b", "text": "1599123131030017501012A422123211234564230123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/32/fast-180.json b/tests/__snapshots__/rssexpanded-1/32/fast-180.json index 17b78ea6..b81da30a 100644 --- a/tests/__snapshots__/rssexpanded-1/32/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/32/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9f6bd4e", "bytesECI": "45ae55b", "text": "1599123131030017501012A422123211234564230123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/32/pure-0.json b/tests/__snapshots__/rssexpanded-1/32/pure-0.json index 5c8b1812..efae45d5 100644 --- a/tests/__snapshots__/rssexpanded-1/32/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/32/pure-0.json @@ -5,7 +5,7 @@ "bytes": "9f6bd4e", "bytesECI": "45ae55b", "text": "1599123131030017501012A422123211234564230123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/32/slow-0.json b/tests/__snapshots__/rssexpanded-1/32/slow-0.json index a49252f5..ff0ba542 100644 --- a/tests/__snapshots__/rssexpanded-1/32/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/32/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9f6bd4e", "bytesECI": "45ae55b", "text": "1599123131030017501012A422123211234564230123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/32/slow-180.json b/tests/__snapshots__/rssexpanded-1/32/slow-180.json index f99d847f..0468dedc 100644 --- a/tests/__snapshots__/rssexpanded-1/32/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/32/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9f6bd4e", "bytesECI": "45ae55b", "text": "1599123131030017501012A422123211234564230123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/4/fast-0.json b/tests/__snapshots__/rssexpanded-1/4/fast-0.json index 02525e1d..d0d8c67f 100644 --- a/tests/__snapshots__/rssexpanded-1/4/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/4/fast-180.json b/tests/__snapshots__/rssexpanded-1/4/fast-180.json index 378fe925..cefa1a52 100644 --- a/tests/__snapshots__/rssexpanded-1/4/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/4/pure-0.json b/tests/__snapshots__/rssexpanded-1/4/pure-0.json index 1867ed27..d34a2dcf 100644 --- a/tests/__snapshots__/rssexpanded-1/4/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/4/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/4/slow-0.json b/tests/__snapshots__/rssexpanded-1/4/slow-0.json index dc45445d..e3e1be15 100644 --- a/tests/__snapshots__/rssexpanded-1/4/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/4/slow-180.json b/tests/__snapshots__/rssexpanded-1/4/slow-180.json index 271d4941..da1ea048 100644 --- a/tests/__snapshots__/rssexpanded-1/4/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/5/fast-0.json b/tests/__snapshots__/rssexpanded-1/5/fast-0.json index 883aae77..4bba3e14 100644 --- a/tests/__snapshots__/rssexpanded-1/5/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0383a04", "bytesECI": "a549965", "text": "01906141410000153202000150", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/5/fast-180.json b/tests/__snapshots__/rssexpanded-1/5/fast-180.json index d7f33c4e..d2b5ea01 100644 --- a/tests/__snapshots__/rssexpanded-1/5/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/5/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0383a04", "bytesECI": "a549965", "text": "01906141410000153202000150", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/5/pure-0.json b/tests/__snapshots__/rssexpanded-1/5/pure-0.json index fab8adc2..6372966c 100644 --- a/tests/__snapshots__/rssexpanded-1/5/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/5/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0383a04", "bytesECI": "a549965", "text": "01906141410000153202000150", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/5/slow-0.json b/tests/__snapshots__/rssexpanded-1/5/slow-0.json index 7ae8f932..ac857b40 100644 --- a/tests/__snapshots__/rssexpanded-1/5/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0383a04", "bytesECI": "a549965", "text": "01906141410000153202000150", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/5/slow-180.json b/tests/__snapshots__/rssexpanded-1/5/slow-180.json index 42448a8d..846cc31a 100644 --- a/tests/__snapshots__/rssexpanded-1/5/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0383a04", "bytesECI": "a549965", "text": "01906141410000153202000150", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/6/fast-0.json b/tests/__snapshots__/rssexpanded-1/6/fast-0.json index 401f6e05..dbaf21eb 100644 --- a/tests/__snapshots__/rssexpanded-1/6/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "440c03a", "bytesECI": "79d836d", "text": "10567019001234567890811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/6/fast-180.json b/tests/__snapshots__/rssexpanded-1/6/fast-180.json index b5005031..cdda961b 100644 --- a/tests/__snapshots__/rssexpanded-1/6/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/6/fast-180.json @@ -5,7 +5,7 @@ "bytes": "440c03a", "bytesECI": "79d836d", "text": "10567019001234567890811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/6/pure-0.json b/tests/__snapshots__/rssexpanded-1/6/pure-0.json index e80b9310..a5388f73 100644 --- a/tests/__snapshots__/rssexpanded-1/6/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/6/pure-0.json @@ -5,7 +5,7 @@ "bytes": "440c03a", "bytesECI": "79d836d", "text": "10567019001234567890811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/6/slow-0.json b/tests/__snapshots__/rssexpanded-1/6/slow-0.json index eaf102db..5227f19a 100644 --- a/tests/__snapshots__/rssexpanded-1/6/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "440c03a", "bytesECI": "79d836d", "text": "10567019001234567890811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/6/slow-180.json b/tests/__snapshots__/rssexpanded-1/6/slow-180.json index 18e87d73..b7737394 100644 --- a/tests/__snapshots__/rssexpanded-1/6/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/6/slow-180.json @@ -5,7 +5,7 @@ "bytes": "440c03a", "bytesECI": "79d836d", "text": "10567019001234567890811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/7/fast-0.json b/tests/__snapshots__/rssexpanded-1/7/fast-0.json index fcdf71b5..6a0aecd1 100644 --- a/tests/__snapshots__/rssexpanded-1/7/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/7/fast-180.json b/tests/__snapshots__/rssexpanded-1/7/fast-180.json index 81017b65..1e0fae0b 100644 --- a/tests/__snapshots__/rssexpanded-1/7/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/7/pure-0.json b/tests/__snapshots__/rssexpanded-1/7/pure-0.json index 512b40e3..7867ef92 100644 --- a/tests/__snapshots__/rssexpanded-1/7/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/7/pure-0.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/7/slow-0.json b/tests/__snapshots__/rssexpanded-1/7/slow-0.json index 229b5e02..a032974f 100644 --- a/tests/__snapshots__/rssexpanded-1/7/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/7/slow-180.json b/tests/__snapshots__/rssexpanded-1/7/slow-180.json index ce95d551..48e9a119 100644 --- a/tests/__snapshots__/rssexpanded-1/7/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/8/fast-0.json b/tests/__snapshots__/rssexpanded-1/8/fast-0.json index f0781fb0..b86faf84 100644 --- a/tests/__snapshots__/rssexpanded-1/8/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "68d7221", "bytesECI": "580a806", "text": "105671101010113010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/8/fast-180.json b/tests/__snapshots__/rssexpanded-1/8/fast-180.json index a121be7c..f100f5f0 100644 --- a/tests/__snapshots__/rssexpanded-1/8/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/8/fast-180.json @@ -5,7 +5,7 @@ "bytes": "68d7221", "bytesECI": "580a806", "text": "105671101010113010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/8/pure-0.json b/tests/__snapshots__/rssexpanded-1/8/pure-0.json index dbf218b0..5354f0b4 100644 --- a/tests/__snapshots__/rssexpanded-1/8/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "68d7221", "bytesECI": "580a806", "text": "105671101010113010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/8/slow-0.json b/tests/__snapshots__/rssexpanded-1/8/slow-0.json index 1c8e5569..b741741a 100644 --- a/tests/__snapshots__/rssexpanded-1/8/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "68d7221", "bytesECI": "580a806", "text": "105671101010113010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/8/slow-180.json b/tests/__snapshots__/rssexpanded-1/8/slow-180.json index 094f62db..92e23496 100644 --- a/tests/__snapshots__/rssexpanded-1/8/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "68d7221", "bytesECI": "580a806", "text": "105671101010113010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/9/fast-0.json b/tests/__snapshots__/rssexpanded-1/9/fast-0.json index ba0031bf..29feeb27 100644 --- a/tests/__snapshots__/rssexpanded-1/9/fast-0.json +++ b/tests/__snapshots__/rssexpanded-1/9/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1e320e6", "bytesECI": "3519747", "text": "105673102123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/9/fast-180.json b/tests/__snapshots__/rssexpanded-1/9/fast-180.json index 446a5f1e..a15f5a4e 100644 --- a/tests/__snapshots__/rssexpanded-1/9/fast-180.json +++ b/tests/__snapshots__/rssexpanded-1/9/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1e320e6", "bytesECI": "3519747", "text": "105673102123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/9/pure-0.json b/tests/__snapshots__/rssexpanded-1/9/pure-0.json index 94936807..87c097a2 100644 --- a/tests/__snapshots__/rssexpanded-1/9/pure-0.json +++ b/tests/__snapshots__/rssexpanded-1/9/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1e320e6", "bytesECI": "3519747", "text": "105673102123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/9/slow-0.json b/tests/__snapshots__/rssexpanded-1/9/slow-0.json index 4f6cb3f9..6a5c0904 100644 --- a/tests/__snapshots__/rssexpanded-1/9/slow-0.json +++ b/tests/__snapshots__/rssexpanded-1/9/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1e320e6", "bytesECI": "3519747", "text": "105673102123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-1/9/slow-180.json b/tests/__snapshots__/rssexpanded-1/9/slow-180.json index 32c99e48..71db526e 100644 --- a/tests/__snapshots__/rssexpanded-1/9/slow-180.json +++ b/tests/__snapshots__/rssexpanded-1/9/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1e320e6", "bytesECI": "3519747", "text": "105673102123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/12/fast-0.json b/tests/__snapshots__/rssexpanded-2/12/fast-0.json index 81a252f8..6de5b8ae 100644 --- a/tests/__snapshots__/rssexpanded-2/12/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f65f5ad", "bytesECI": "cff160b", "text": "01988987654321063103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/12/fast-180.json b/tests/__snapshots__/rssexpanded-2/12/fast-180.json index 93a0ee06..f62332e3 100644 --- a/tests/__snapshots__/rssexpanded-2/12/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f65f5ad", "bytesECI": "cff160b", "text": "01988987654321063103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/12/slow-0.json b/tests/__snapshots__/rssexpanded-2/12/slow-0.json index 81a252f8..6de5b8ae 100644 --- a/tests/__snapshots__/rssexpanded-2/12/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f65f5ad", "bytesECI": "cff160b", "text": "01988987654321063103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/12/slow-180.json b/tests/__snapshots__/rssexpanded-2/12/slow-180.json index 93a0ee06..f62332e3 100644 --- a/tests/__snapshots__/rssexpanded-2/12/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f65f5ad", "bytesECI": "cff160b", "text": "01988987654321063103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/16/fast-0.json b/tests/__snapshots__/rssexpanded-2/16/fast-0.json index 4f30aba9..0620eb0c 100644 --- a/tests/__snapshots__/rssexpanded-2/16/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b5f3598", "bytesECI": "7af18cd", "text": "0190012345678908320200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/16/fast-180.json b/tests/__snapshots__/rssexpanded-2/16/fast-180.json index 0e549021..e5a762e8 100644 --- a/tests/__snapshots__/rssexpanded-2/16/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b5f3598", "bytesECI": "7af18cd", "text": "0190012345678908320200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/16/slow-0.json b/tests/__snapshots__/rssexpanded-2/16/slow-0.json index 4f30aba9..0620eb0c 100644 --- a/tests/__snapshots__/rssexpanded-2/16/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b5f3598", "bytesECI": "7af18cd", "text": "0190012345678908320200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/16/slow-180.json b/tests/__snapshots__/rssexpanded-2/16/slow-180.json index 0e549021..e5a762e8 100644 --- a/tests/__snapshots__/rssexpanded-2/16/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b5f3598", "bytesECI": "7af18cd", "text": "0190012345678908320200175011100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/17/fast-0.json b/tests/__snapshots__/rssexpanded-2/17/fast-0.json index 0df1ea17..1003c4b2 100644 --- a/tests/__snapshots__/rssexpanded-2/17/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ecb6ee5", "bytesECI": "80d5084", "text": "0190012345678908310200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/17/fast-180.json b/tests/__snapshots__/rssexpanded-2/17/fast-180.json index a58a2147..938e9061 100644 --- a/tests/__snapshots__/rssexpanded-2/17/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ecb6ee5", "bytesECI": "80d5084", "text": "0190012345678908310200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/17/slow-0.json b/tests/__snapshots__/rssexpanded-2/17/slow-0.json index 0df1ea17..1003c4b2 100644 --- a/tests/__snapshots__/rssexpanded-2/17/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ecb6ee5", "bytesECI": "80d5084", "text": "0190012345678908310200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/17/slow-180.json b/tests/__snapshots__/rssexpanded-2/17/slow-180.json index a58a2147..938e9061 100644 --- a/tests/__snapshots__/rssexpanded-2/17/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ecb6ee5", "bytesECI": "80d5084", "text": "0190012345678908310200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/18/fast-0.json b/tests/__snapshots__/rssexpanded-2/18/fast-0.json index 1150cf86..7dad12a3 100644 --- a/tests/__snapshots__/rssexpanded-2/18/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6afcec0", "bytesECI": "c3fb904", "text": "0190012345678908320200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/18/fast-180.json b/tests/__snapshots__/rssexpanded-2/18/fast-180.json index c7120655..3e44aa58 100644 --- a/tests/__snapshots__/rssexpanded-2/18/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6afcec0", "bytesECI": "c3fb904", "text": "0190012345678908320200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/18/slow-0.json b/tests/__snapshots__/rssexpanded-2/18/slow-0.json index 6358491f..56a90e93 100644 --- a/tests/__snapshots__/rssexpanded-2/18/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6afcec0", "bytesECI": "c3fb904", "text": "0190012345678908320200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/18/slow-180.json b/tests/__snapshots__/rssexpanded-2/18/slow-180.json index d42d76a0..d9fa6d22 100644 --- a/tests/__snapshots__/rssexpanded-2/18/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6afcec0", "bytesECI": "c3fb904", "text": "0190012345678908320200175013100312", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_01/fast-0.json b/tests/__snapshots__/rssexpanded-2/3_01/fast-0.json index 0655c477..ae3b06eb 100644 --- a/tests/__snapshots__/rssexpanded-2/3_01/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/3_01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_01/fast-180.json b/tests/__snapshots__/rssexpanded-2/3_01/fast-180.json index 5d84b5ec..b8608e01 100644 --- a/tests/__snapshots__/rssexpanded-2/3_01/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/3_01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_01/slow-0.json b/tests/__snapshots__/rssexpanded-2/3_01/slow-0.json index 0655c477..ae3b06eb 100644 --- a/tests/__snapshots__/rssexpanded-2/3_01/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/3_01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_01/slow-180.json b/tests/__snapshots__/rssexpanded-2/3_01/slow-180.json index 5d84b5ec..b8608e01 100644 --- a/tests/__snapshots__/rssexpanded-2/3_01/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/3_01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_02/fast-0.json b/tests/__snapshots__/rssexpanded-2/3_02/fast-0.json index e9273dc2..e364dfd9 100644 --- a/tests/__snapshots__/rssexpanded-2/3_02/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/3_02/fast-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_02/fast-180.json b/tests/__snapshots__/rssexpanded-2/3_02/fast-180.json index 931abb71..017131bc 100644 --- a/tests/__snapshots__/rssexpanded-2/3_02/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/3_02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_02/slow-0.json b/tests/__snapshots__/rssexpanded-2/3_02/slow-0.json index e9273dc2..e364dfd9 100644 --- a/tests/__snapshots__/rssexpanded-2/3_02/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/3_02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_02/slow-180.json b/tests/__snapshots__/rssexpanded-2/3_02/slow-180.json index 931abb71..017131bc 100644 --- a/tests/__snapshots__/rssexpanded-2/3_02/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/3_02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_05/fast-0.json b/tests/__snapshots__/rssexpanded-2/3_05/fast-0.json index 92430c4e..d656bacd 100644 --- a/tests/__snapshots__/rssexpanded-2/3_05/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/3_05/fast-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_05/fast-180.json b/tests/__snapshots__/rssexpanded-2/3_05/fast-180.json index c0298444..5f3912db 100644 --- a/tests/__snapshots__/rssexpanded-2/3_05/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/3_05/fast-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_05/slow-0.json b/tests/__snapshots__/rssexpanded-2/3_05/slow-0.json index 1e78f542..25bd70c2 100644 --- a/tests/__snapshots__/rssexpanded-2/3_05/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/3_05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_05/slow-180.json b/tests/__snapshots__/rssexpanded-2/3_05/slow-180.json index 8e07f494..09c01782 100644 --- a/tests/__snapshots__/rssexpanded-2/3_05/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/3_05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_06/slow-0.json b/tests/__snapshots__/rssexpanded-2/3_06/slow-0.json index db74d7cb..b8205265 100644 --- a/tests/__snapshots__/rssexpanded-2/3_06/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/3_06/slow-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_06/slow-180.json b/tests/__snapshots__/rssexpanded-2/3_06/slow-180.json index 133bcfe2..eb1390a0 100644 --- a/tests/__snapshots__/rssexpanded-2/3_06/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/3_06/slow-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_07/fast-0.json b/tests/__snapshots__/rssexpanded-2/3_07/fast-0.json index cec97254..7563576c 100644 --- a/tests/__snapshots__/rssexpanded-2/3_07/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/3_07/fast-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_07/fast-180.json b/tests/__snapshots__/rssexpanded-2/3_07/fast-180.json index c39aece5..35719da3 100644 --- a/tests/__snapshots__/rssexpanded-2/3_07/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/3_07/fast-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_07/slow-0.json b/tests/__snapshots__/rssexpanded-2/3_07/slow-0.json index cec97254..7563576c 100644 --- a/tests/__snapshots__/rssexpanded-2/3_07/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/3_07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_07/slow-180.json b/tests/__snapshots__/rssexpanded-2/3_07/slow-180.json index c39aece5..35719da3 100644 --- a/tests/__snapshots__/rssexpanded-2/3_07/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/3_07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_09/fast-0.json b/tests/__snapshots__/rssexpanded-2/3_09/fast-0.json index 2a365666..6606c9ed 100644 --- a/tests/__snapshots__/rssexpanded-2/3_09/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/3_09/fast-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_09/fast-180.json b/tests/__snapshots__/rssexpanded-2/3_09/fast-180.json index d354546d..9784a0f0 100644 --- a/tests/__snapshots__/rssexpanded-2/3_09/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/3_09/fast-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_09/slow-0.json b/tests/__snapshots__/rssexpanded-2/3_09/slow-0.json index 99246887..cf8b2321 100644 --- a/tests/__snapshots__/rssexpanded-2/3_09/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/3_09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/3_09/slow-180.json b/tests/__snapshots__/rssexpanded-2/3_09/slow-180.json index 8783e163..7ad913cf 100644 --- a/tests/__snapshots__/rssexpanded-2/3_09/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/3_09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_00/fast-0.json b/tests/__snapshots__/rssexpanded-2/4_00/fast-0.json index 003d13b4..86ce90ed 100644 --- a/tests/__snapshots__/rssexpanded-2/4_00/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/4_00/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_00/fast-180.json b/tests/__snapshots__/rssexpanded-2/4_00/fast-180.json index 71b6a120..e2558fbf 100644 --- a/tests/__snapshots__/rssexpanded-2/4_00/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/4_00/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_00/slow-0.json b/tests/__snapshots__/rssexpanded-2/4_00/slow-0.json index 003d13b4..86ce90ed 100644 --- a/tests/__snapshots__/rssexpanded-2/4_00/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/4_00/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_00/slow-180.json b/tests/__snapshots__/rssexpanded-2/4_00/slow-180.json index 71b6a120..e2558fbf 100644 --- a/tests/__snapshots__/rssexpanded-2/4_00/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/4_00/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_02/slow-0.json b/tests/__snapshots__/rssexpanded-2/4_02/slow-0.json index e35d1a2a..45994402 100644 --- a/tests/__snapshots__/rssexpanded-2/4_02/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/4_02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_02/slow-180.json b/tests/__snapshots__/rssexpanded-2/4_02/slow-180.json index 66ef91e0..dd4b4c45 100644 --- a/tests/__snapshots__/rssexpanded-2/4_02/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/4_02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_03/fast-0.json b/tests/__snapshots__/rssexpanded-2/4_03/fast-0.json index 828ee5b6..a630bc1a 100644 --- a/tests/__snapshots__/rssexpanded-2/4_03/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/4_03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_03/fast-180.json b/tests/__snapshots__/rssexpanded-2/4_03/fast-180.json index a677e35c..f4a1e35d 100644 --- a/tests/__snapshots__/rssexpanded-2/4_03/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/4_03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_03/slow-0.json b/tests/__snapshots__/rssexpanded-2/4_03/slow-0.json index 828ee5b6..a630bc1a 100644 --- a/tests/__snapshots__/rssexpanded-2/4_03/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/4_03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_03/slow-180.json b/tests/__snapshots__/rssexpanded-2/4_03/slow-180.json index a677e35c..f4a1e35d 100644 --- a/tests/__snapshots__/rssexpanded-2/4_03/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/4_03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_04/fast-0.json b/tests/__snapshots__/rssexpanded-2/4_04/fast-0.json index ac3a8ece..02548a98 100644 --- a/tests/__snapshots__/rssexpanded-2/4_04/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/4_04/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_04/fast-180.json b/tests/__snapshots__/rssexpanded-2/4_04/fast-180.json index 3366519f..ad163090 100644 --- a/tests/__snapshots__/rssexpanded-2/4_04/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/4_04/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_04/slow-0.json b/tests/__snapshots__/rssexpanded-2/4_04/slow-0.json index 043b050a..48b43d53 100644 --- a/tests/__snapshots__/rssexpanded-2/4_04/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/4_04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 4, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/4_04/slow-180.json b/tests/__snapshots__/rssexpanded-2/4_04/slow-180.json index fe0ffc3b..b264c9d4 100644 --- a/tests/__snapshots__/rssexpanded-2/4_04/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/4_04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 4, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/5/fast-0.json b/tests/__snapshots__/rssexpanded-2/5/fast-0.json index 76b45159..a67a9765 100644 --- a/tests/__snapshots__/rssexpanded-2/5/fast-0.json +++ b/tests/__snapshots__/rssexpanded-2/5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0383a04", "bytesECI": "a549965", "text": "01906141410000153202000150", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/5/fast-180.json b/tests/__snapshots__/rssexpanded-2/5/fast-180.json index fb738cee..813b3372 100644 --- a/tests/__snapshots__/rssexpanded-2/5/fast-180.json +++ b/tests/__snapshots__/rssexpanded-2/5/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0383a04", "bytesECI": "a549965", "text": "01906141410000153202000150", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/5/slow-0.json b/tests/__snapshots__/rssexpanded-2/5/slow-0.json index 76b45159..a67a9765 100644 --- a/tests/__snapshots__/rssexpanded-2/5/slow-0.json +++ b/tests/__snapshots__/rssexpanded-2/5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0383a04", "bytesECI": "a549965", "text": "01906141410000153202000150", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-2/5/slow-180.json b/tests/__snapshots__/rssexpanded-2/5/slow-180.json index fb738cee..813b3372 100644 --- a/tests/__snapshots__/rssexpanded-2/5/slow-180.json +++ b/tests/__snapshots__/rssexpanded-2/5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0383a04", "bytesECI": "a549965", "text": "01906141410000153202000150", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/1/fast-0.json b/tests/__snapshots__/rssexpanded-3/1/fast-0.json index 8e0184da..cd947d37 100644 --- a/tests/__snapshots__/rssexpanded-3/1/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/1/fast-180.json b/tests/__snapshots__/rssexpanded-3/1/fast-180.json index 5538998c..509d18d1 100644 --- a/tests/__snapshots__/rssexpanded-3/1/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/1/pure-0.json b/tests/__snapshots__/rssexpanded-3/1/pure-0.json index e75d0888..8537068c 100644 --- a/tests/__snapshots__/rssexpanded-3/1/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/1/slow-0.json b/tests/__snapshots__/rssexpanded-3/1/slow-0.json index baa1d1dc..01ed9c00 100644 --- a/tests/__snapshots__/rssexpanded-3/1/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/1/slow-180.json b/tests/__snapshots__/rssexpanded-3/1/slow-180.json index b5f1bef3..43a34fc2 100644 --- a/tests/__snapshots__/rssexpanded-3/1/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/10/fast-0.json b/tests/__snapshots__/rssexpanded-3/10/fast-0.json index 4c2727a5..d2fe7a3e 100644 --- a/tests/__snapshots__/rssexpanded-3/10/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/10/fast-180.json b/tests/__snapshots__/rssexpanded-3/10/fast-180.json index 778544c7..371c97ea 100644 --- a/tests/__snapshots__/rssexpanded-3/10/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/10/pure-0.json b/tests/__snapshots__/rssexpanded-3/10/pure-0.json index 3503f20f..e7b2198d 100644 --- a/tests/__snapshots__/rssexpanded-3/10/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/10/pure-0.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/10/slow-0.json b/tests/__snapshots__/rssexpanded-3/10/slow-0.json index da619ddc..3ea29c13 100644 --- a/tests/__snapshots__/rssexpanded-3/10/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/10/slow-180.json b/tests/__snapshots__/rssexpanded-3/10/slow-180.json index 7b525da0..01e4d221 100644 --- a/tests/__snapshots__/rssexpanded-3/10/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/100/fast-0.json b/tests/__snapshots__/rssexpanded-3/100/fast-0.json index 32d0cf2e..574869af 100644 --- a/tests/__snapshots__/rssexpanded-3/100/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/100/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/100/fast-180.json b/tests/__snapshots__/rssexpanded-3/100/fast-180.json index 10a8950a..ff34b97b 100644 --- a/tests/__snapshots__/rssexpanded-3/100/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/100/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/100/pure-0.json b/tests/__snapshots__/rssexpanded-3/100/pure-0.json index a60396e9..7eee1f3d 100644 --- a/tests/__snapshots__/rssexpanded-3/100/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/100/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/100/slow-0.json b/tests/__snapshots__/rssexpanded-3/100/slow-0.json index eecd4790..d118480c 100644 --- a/tests/__snapshots__/rssexpanded-3/100/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/100/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/100/slow-180.json b/tests/__snapshots__/rssexpanded-3/100/slow-180.json index f31b67e5..913d4143 100644 --- a/tests/__snapshots__/rssexpanded-3/100/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/100/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/101/fast-0.json b/tests/__snapshots__/rssexpanded-3/101/fast-0.json index 9326333f..54ca109f 100644 --- a/tests/__snapshots__/rssexpanded-3/101/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/101/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/101/fast-180.json b/tests/__snapshots__/rssexpanded-3/101/fast-180.json index 10571808..d51e04ac 100644 --- a/tests/__snapshots__/rssexpanded-3/101/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/101/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/101/pure-0.json b/tests/__snapshots__/rssexpanded-3/101/pure-0.json index 31e44451..b4655d23 100644 --- a/tests/__snapshots__/rssexpanded-3/101/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/101/pure-0.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/101/slow-0.json b/tests/__snapshots__/rssexpanded-3/101/slow-0.json index 43610455..9023374c 100644 --- a/tests/__snapshots__/rssexpanded-3/101/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/101/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/101/slow-180.json b/tests/__snapshots__/rssexpanded-3/101/slow-180.json index 64c7cf13..dd9227e1 100644 --- a/tests/__snapshots__/rssexpanded-3/101/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/101/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/102/fast-0.json b/tests/__snapshots__/rssexpanded-3/102/fast-0.json index 69d50151..c08aead8 100644 --- a/tests/__snapshots__/rssexpanded-3/102/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/102/fast-0.json @@ -5,7 +5,7 @@ "bytes": "93b692a", "bytesECI": "b1d7eb9", "text": "10123456A1", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/102/fast-180.json b/tests/__snapshots__/rssexpanded-3/102/fast-180.json index ea8843ff..c6b56a7c 100644 --- a/tests/__snapshots__/rssexpanded-3/102/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/102/fast-180.json @@ -5,7 +5,7 @@ "bytes": "93b692a", "bytesECI": "b1d7eb9", "text": "10123456A1", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/102/pure-0.json b/tests/__snapshots__/rssexpanded-3/102/pure-0.json index e1393e2a..7ef3eba4 100644 --- a/tests/__snapshots__/rssexpanded-3/102/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/102/pure-0.json @@ -5,7 +5,7 @@ "bytes": "93b692a", "bytesECI": "b1d7eb9", "text": "10123456A1", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/102/slow-0.json b/tests/__snapshots__/rssexpanded-3/102/slow-0.json index e55d502c..b51a93db 100644 --- a/tests/__snapshots__/rssexpanded-3/102/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/102/slow-0.json @@ -5,7 +5,7 @@ "bytes": "93b692a", "bytesECI": "b1d7eb9", "text": "10123456A1", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/102/slow-180.json b/tests/__snapshots__/rssexpanded-3/102/slow-180.json index 947fda99..f84c3b81 100644 --- a/tests/__snapshots__/rssexpanded-3/102/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/102/slow-180.json @@ -5,7 +5,7 @@ "bytes": "93b692a", "bytesECI": "b1d7eb9", "text": "10123456A1", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/103/fast-0.json b/tests/__snapshots__/rssexpanded-3/103/fast-0.json index 02ad1ec5..e8ecf17e 100644 --- a/tests/__snapshots__/rssexpanded-3/103/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/103/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1c8e721", "bytesECI": "cff58c6", "text": "10123456A123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/103/fast-180.json b/tests/__snapshots__/rssexpanded-3/103/fast-180.json index 412f7de6..5d49fb60 100644 --- a/tests/__snapshots__/rssexpanded-3/103/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/103/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1c8e721", "bytesECI": "cff58c6", "text": "10123456A123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/103/pure-0.json b/tests/__snapshots__/rssexpanded-3/103/pure-0.json index 0c90d099..66487991 100644 --- a/tests/__snapshots__/rssexpanded-3/103/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/103/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1c8e721", "bytesECI": "cff58c6", "text": "10123456A123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/103/slow-0.json b/tests/__snapshots__/rssexpanded-3/103/slow-0.json index 7f3e7b56..194de63e 100644 --- a/tests/__snapshots__/rssexpanded-3/103/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/103/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1c8e721", "bytesECI": "cff58c6", "text": "10123456A123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/103/slow-180.json b/tests/__snapshots__/rssexpanded-3/103/slow-180.json index a01c5737..fe7483ee 100644 --- a/tests/__snapshots__/rssexpanded-3/103/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/103/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1c8e721", "bytesECI": "cff58c6", "text": "10123456A123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/104/fast-0.json b/tests/__snapshots__/rssexpanded-3/104/fast-0.json index 912ddf68..6b321f4f 100644 --- a/tests/__snapshots__/rssexpanded-3/104/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/104/fast-0.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/104/fast-180.json b/tests/__snapshots__/rssexpanded-3/104/fast-180.json index 99b41eb7..784e00e3 100644 --- a/tests/__snapshots__/rssexpanded-3/104/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/104/fast-180.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/104/pure-0.json b/tests/__snapshots__/rssexpanded-3/104/pure-0.json index 0e971a2e..384b4193 100644 --- a/tests/__snapshots__/rssexpanded-3/104/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/104/pure-0.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/104/slow-0.json b/tests/__snapshots__/rssexpanded-3/104/slow-0.json index 67a3bb28..53b44dd1 100644 --- a/tests/__snapshots__/rssexpanded-3/104/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/104/slow-0.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/104/slow-180.json b/tests/__snapshots__/rssexpanded-3/104/slow-180.json index 93207e16..63da05c4 100644 --- a/tests/__snapshots__/rssexpanded-3/104/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/104/slow-180.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/105/fast-0.json b/tests/__snapshots__/rssexpanded-3/105/fast-0.json index dd20a002..a8a30b28 100644 --- a/tests/__snapshots__/rssexpanded-3/105/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/105/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/105/fast-180.json b/tests/__snapshots__/rssexpanded-3/105/fast-180.json index a944fa13..6ef97fec 100644 --- a/tests/__snapshots__/rssexpanded-3/105/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/105/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/105/pure-0.json b/tests/__snapshots__/rssexpanded-3/105/pure-0.json index acda0564..72ef70c7 100644 --- a/tests/__snapshots__/rssexpanded-3/105/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/105/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/105/slow-0.json b/tests/__snapshots__/rssexpanded-3/105/slow-0.json index 832547e7..01c2523c 100644 --- a/tests/__snapshots__/rssexpanded-3/105/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/105/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/105/slow-180.json b/tests/__snapshots__/rssexpanded-3/105/slow-180.json index dcc1418e..714de239 100644 --- a/tests/__snapshots__/rssexpanded-3/105/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/105/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/106/fast-0.json b/tests/__snapshots__/rssexpanded-3/106/fast-0.json index 0745ba0b..756bb897 100644 --- a/tests/__snapshots__/rssexpanded-3/106/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/106/fast-0.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/106/fast-180.json b/tests/__snapshots__/rssexpanded-3/106/fast-180.json index e9448083..310c3276 100644 --- a/tests/__snapshots__/rssexpanded-3/106/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/106/fast-180.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/106/pure-0.json b/tests/__snapshots__/rssexpanded-3/106/pure-0.json index fc09bb0a..316a5dd2 100644 --- a/tests/__snapshots__/rssexpanded-3/106/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/106/pure-0.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/106/slow-0.json b/tests/__snapshots__/rssexpanded-3/106/slow-0.json index bbefb294..90f07d42 100644 --- a/tests/__snapshots__/rssexpanded-3/106/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/106/slow-0.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/106/slow-180.json b/tests/__snapshots__/rssexpanded-3/106/slow-180.json index b1b26635..5eb7cace 100644 --- a/tests/__snapshots__/rssexpanded-3/106/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/106/slow-180.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/107/fast-0.json b/tests/__snapshots__/rssexpanded-3/107/fast-0.json index c06ee00b..89c39e2e 100644 --- a/tests/__snapshots__/rssexpanded-3/107/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/107/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/107/fast-180.json b/tests/__snapshots__/rssexpanded-3/107/fast-180.json index c8735dd7..0e5ea67c 100644 --- a/tests/__snapshots__/rssexpanded-3/107/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/107/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/107/pure-0.json b/tests/__snapshots__/rssexpanded-3/107/pure-0.json index a3786c06..ab7e7914 100644 --- a/tests/__snapshots__/rssexpanded-3/107/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/107/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/107/slow-0.json b/tests/__snapshots__/rssexpanded-3/107/slow-0.json index 937971a3..fa6735cc 100644 --- a/tests/__snapshots__/rssexpanded-3/107/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/107/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/107/slow-180.json b/tests/__snapshots__/rssexpanded-3/107/slow-180.json index 96b6880d..ddad40e5 100644 --- a/tests/__snapshots__/rssexpanded-3/107/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/107/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/108-corrected/fast-0.json b/tests/__snapshots__/rssexpanded-3/108-corrected/fast-0.json index 38872a8f..04e9fe62 100644 --- a/tests/__snapshots__/rssexpanded-3/108-corrected/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/108-corrected/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/108-corrected/fast-180.json b/tests/__snapshots__/rssexpanded-3/108-corrected/fast-180.json index 3c834a26..7f6ad67d 100644 --- a/tests/__snapshots__/rssexpanded-3/108-corrected/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/108-corrected/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/108-corrected/pure-0.json b/tests/__snapshots__/rssexpanded-3/108-corrected/pure-0.json index a0f5e90d..32ab61a4 100644 --- a/tests/__snapshots__/rssexpanded-3/108-corrected/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/108-corrected/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/108-corrected/slow-0.json b/tests/__snapshots__/rssexpanded-3/108-corrected/slow-0.json index 38872a8f..04e9fe62 100644 --- a/tests/__snapshots__/rssexpanded-3/108-corrected/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/108-corrected/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/108-corrected/slow-180.json b/tests/__snapshots__/rssexpanded-3/108-corrected/slow-180.json index 3c834a26..7f6ad67d 100644 --- a/tests/__snapshots__/rssexpanded-3/108-corrected/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/108-corrected/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/108/fast-0.json b/tests/__snapshots__/rssexpanded-3/108/fast-0.json index d7bed6ca..0af7d334 100644 --- a/tests/__snapshots__/rssexpanded-3/108/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/108/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/108/fast-180.json b/tests/__snapshots__/rssexpanded-3/108/fast-180.json index 65829f12..928b1b23 100644 --- a/tests/__snapshots__/rssexpanded-3/108/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/108/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/108/pure-0.json b/tests/__snapshots__/rssexpanded-3/108/pure-0.json index ff908599..26fa7dcd 100644 --- a/tests/__snapshots__/rssexpanded-3/108/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/108/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/108/slow-0.json b/tests/__snapshots__/rssexpanded-3/108/slow-0.json index 8bbe857d..f0556ec1 100644 --- a/tests/__snapshots__/rssexpanded-3/108/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/108/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/108/slow-180.json b/tests/__snapshots__/rssexpanded-3/108/slow-180.json index cd58b7a5..96741f85 100644 --- a/tests/__snapshots__/rssexpanded-3/108/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/108/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/109/fast-0.json b/tests/__snapshots__/rssexpanded-3/109/fast-0.json index d7fa25ac..9d1ef2ed 100644 --- a/tests/__snapshots__/rssexpanded-3/109/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/109/fast-0.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/109/fast-180.json b/tests/__snapshots__/rssexpanded-3/109/fast-180.json index eae066c6..a4cc4b9e 100644 --- a/tests/__snapshots__/rssexpanded-3/109/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/109/fast-180.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/109/pure-0.json b/tests/__snapshots__/rssexpanded-3/109/pure-0.json index e8844bd6..8063ca21 100644 --- a/tests/__snapshots__/rssexpanded-3/109/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/109/pure-0.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/109/slow-0.json b/tests/__snapshots__/rssexpanded-3/109/slow-0.json index 93c8480e..4331e55f 100644 --- a/tests/__snapshots__/rssexpanded-3/109/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/109/slow-0.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/109/slow-180.json b/tests/__snapshots__/rssexpanded-3/109/slow-180.json index bac22c1a..c4d6f316 100644 --- a/tests/__snapshots__/rssexpanded-3/109/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/109/slow-180.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/11/fast-0.json b/tests/__snapshots__/rssexpanded-3/11/fast-0.json index 156636a2..e6a8f5b3 100644 --- a/tests/__snapshots__/rssexpanded-3/11/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/11/fast-180.json b/tests/__snapshots__/rssexpanded-3/11/fast-180.json index b319c445..6b117668 100644 --- a/tests/__snapshots__/rssexpanded-3/11/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/11/pure-0.json b/tests/__snapshots__/rssexpanded-3/11/pure-0.json index ab0340cf..f36232bc 100644 --- a/tests/__snapshots__/rssexpanded-3/11/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/11/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/11/slow-0.json b/tests/__snapshots__/rssexpanded-3/11/slow-0.json index 6e9934d4..1627d92e 100644 --- a/tests/__snapshots__/rssexpanded-3/11/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/11/slow-180.json b/tests/__snapshots__/rssexpanded-3/11/slow-180.json index f86e7fa5..7c2c62cb 100644 --- a/tests/__snapshots__/rssexpanded-3/11/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/110/fast-0.json b/tests/__snapshots__/rssexpanded-3/110/fast-0.json index 71f40700..45997607 100644 --- a/tests/__snapshots__/rssexpanded-3/110/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/110/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/110/fast-180.json b/tests/__snapshots__/rssexpanded-3/110/fast-180.json index 878231de..5fdb5f57 100644 --- a/tests/__snapshots__/rssexpanded-3/110/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/110/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/110/pure-0.json b/tests/__snapshots__/rssexpanded-3/110/pure-0.json index 89f59e2b..72696a6a 100644 --- a/tests/__snapshots__/rssexpanded-3/110/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/110/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/110/slow-0.json b/tests/__snapshots__/rssexpanded-3/110/slow-0.json index c71d1085..5e9e2dd4 100644 --- a/tests/__snapshots__/rssexpanded-3/110/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/110/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/110/slow-180.json b/tests/__snapshots__/rssexpanded-3/110/slow-180.json index 38282cc5..95bd498a 100644 --- a/tests/__snapshots__/rssexpanded-3/110/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/110/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/111/fast-0.json b/tests/__snapshots__/rssexpanded-3/111/fast-0.json index c92e32ec..364006e9 100644 --- a/tests/__snapshots__/rssexpanded-3/111/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/111/fast-0.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/111/fast-180.json b/tests/__snapshots__/rssexpanded-3/111/fast-180.json index fce7d251..4a63a867 100644 --- a/tests/__snapshots__/rssexpanded-3/111/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/111/fast-180.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/111/pure-0.json b/tests/__snapshots__/rssexpanded-3/111/pure-0.json index 3d70a30b..2a3ea403 100644 --- a/tests/__snapshots__/rssexpanded-3/111/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/111/pure-0.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/111/slow-0.json b/tests/__snapshots__/rssexpanded-3/111/slow-0.json index e345e531..8808b3aa 100644 --- a/tests/__snapshots__/rssexpanded-3/111/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/111/slow-0.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/111/slow-180.json b/tests/__snapshots__/rssexpanded-3/111/slow-180.json index 5f6a5476..630a2fce 100644 --- a/tests/__snapshots__/rssexpanded-3/111/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/111/slow-180.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/112/fast-0.json b/tests/__snapshots__/rssexpanded-3/112/fast-0.json index 14b6d30b..d24d8b91 100644 --- a/tests/__snapshots__/rssexpanded-3/112/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/112/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/112/fast-180.json b/tests/__snapshots__/rssexpanded-3/112/fast-180.json index f35485ab..6e5f16c4 100644 --- a/tests/__snapshots__/rssexpanded-3/112/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/112/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/112/pure-0.json b/tests/__snapshots__/rssexpanded-3/112/pure-0.json index 90ce08ef..bbc1005a 100644 --- a/tests/__snapshots__/rssexpanded-3/112/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/112/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/112/slow-0.json b/tests/__snapshots__/rssexpanded-3/112/slow-0.json index 4e1f84f4..910eda05 100644 --- a/tests/__snapshots__/rssexpanded-3/112/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/112/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/112/slow-180.json b/tests/__snapshots__/rssexpanded-3/112/slow-180.json index 9f3270f4..38fec959 100644 --- a/tests/__snapshots__/rssexpanded-3/112/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/112/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/113/fast-0.json b/tests/__snapshots__/rssexpanded-3/113/fast-0.json index de4d71d4..2e4b3457 100644 --- a/tests/__snapshots__/rssexpanded-3/113/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/113/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/113/fast-180.json b/tests/__snapshots__/rssexpanded-3/113/fast-180.json index cf0725b4..6d3f8f2d 100644 --- a/tests/__snapshots__/rssexpanded-3/113/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/113/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/113/pure-0.json b/tests/__snapshots__/rssexpanded-3/113/pure-0.json index 656616fd..e0799024 100644 --- a/tests/__snapshots__/rssexpanded-3/113/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/113/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/113/slow-0.json b/tests/__snapshots__/rssexpanded-3/113/slow-0.json index 931a4c95..10e51cf9 100644 --- a/tests/__snapshots__/rssexpanded-3/113/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/113/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/113/slow-180.json b/tests/__snapshots__/rssexpanded-3/113/slow-180.json index 02f9e53c..176398eb 100644 --- a/tests/__snapshots__/rssexpanded-3/113/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/113/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/114/fast-0.json b/tests/__snapshots__/rssexpanded-3/114/fast-0.json index 9992b7b1..fc68daf1 100644 --- a/tests/__snapshots__/rssexpanded-3/114/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/114/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/114/fast-180.json b/tests/__snapshots__/rssexpanded-3/114/fast-180.json index 5daa5a1a..0c39b700 100644 --- a/tests/__snapshots__/rssexpanded-3/114/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/114/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/114/pure-0.json b/tests/__snapshots__/rssexpanded-3/114/pure-0.json index 65d5a8d0..a154443d 100644 --- a/tests/__snapshots__/rssexpanded-3/114/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/114/pure-0.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/114/slow-0.json b/tests/__snapshots__/rssexpanded-3/114/slow-0.json index 02bcc7ca..6a45d6a6 100644 --- a/tests/__snapshots__/rssexpanded-3/114/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/114/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/114/slow-180.json b/tests/__snapshots__/rssexpanded-3/114/slow-180.json index 070c4e90..6915be12 100644 --- a/tests/__snapshots__/rssexpanded-3/114/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/114/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/115/fast-0.json b/tests/__snapshots__/rssexpanded-3/115/fast-0.json index 47f34dff..f6e24037 100644 --- a/tests/__snapshots__/rssexpanded-3/115/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/115/fast-0.json @@ -5,7 +5,7 @@ "bytes": "16dc368", "bytesECI": "f4805e1", "text": "101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/115/fast-180.json b/tests/__snapshots__/rssexpanded-3/115/fast-180.json index a077dcb8..02cde810 100644 --- a/tests/__snapshots__/rssexpanded-3/115/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/115/fast-180.json @@ -5,7 +5,7 @@ "bytes": "16dc368", "bytesECI": "f4805e1", "text": "101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/115/pure-0.json b/tests/__snapshots__/rssexpanded-3/115/pure-0.json index 43b01919..659baa70 100644 --- a/tests/__snapshots__/rssexpanded-3/115/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/115/pure-0.json @@ -5,7 +5,7 @@ "bytes": "16dc368", "bytesECI": "f4805e1", "text": "101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/115/slow-0.json b/tests/__snapshots__/rssexpanded-3/115/slow-0.json index 0a38dd65..d5706689 100644 --- a/tests/__snapshots__/rssexpanded-3/115/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/115/slow-0.json @@ -5,7 +5,7 @@ "bytes": "16dc368", "bytesECI": "f4805e1", "text": "101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/115/slow-180.json b/tests/__snapshots__/rssexpanded-3/115/slow-180.json index 95475c9c..6d09143b 100644 --- a/tests/__snapshots__/rssexpanded-3/115/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/115/slow-180.json @@ -5,7 +5,7 @@ "bytes": "16dc368", "bytesECI": "f4805e1", "text": "101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/116/fast-0.json b/tests/__snapshots__/rssexpanded-3/116/fast-0.json index dc90ec98..fb391d2c 100644 --- a/tests/__snapshots__/rssexpanded-3/116/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/116/fast-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/116/fast-180.json b/tests/__snapshots__/rssexpanded-3/116/fast-180.json index b0e3ca4c..679b29a6 100644 --- a/tests/__snapshots__/rssexpanded-3/116/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/116/fast-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/116/pure-0.json b/tests/__snapshots__/rssexpanded-3/116/pure-0.json index 84d8987c..8636befd 100644 --- a/tests/__snapshots__/rssexpanded-3/116/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/116/pure-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/116/slow-0.json b/tests/__snapshots__/rssexpanded-3/116/slow-0.json index b96a5ecd..ad828a0e 100644 --- a/tests/__snapshots__/rssexpanded-3/116/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/116/slow-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/116/slow-180.json b/tests/__snapshots__/rssexpanded-3/116/slow-180.json index 96ce27f7..d9353323 100644 --- a/tests/__snapshots__/rssexpanded-3/116/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/116/slow-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/117/fast-0.json b/tests/__snapshots__/rssexpanded-3/117/fast-0.json index 3bf7b455..0e421c0b 100644 --- a/tests/__snapshots__/rssexpanded-3/117/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/117/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/117/fast-180.json b/tests/__snapshots__/rssexpanded-3/117/fast-180.json index 55f342a8..2edddfbf 100644 --- a/tests/__snapshots__/rssexpanded-3/117/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/117/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/117/pure-0.json b/tests/__snapshots__/rssexpanded-3/117/pure-0.json index 7ab3f219..38e1ac9a 100644 --- a/tests/__snapshots__/rssexpanded-3/117/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/117/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/117/slow-0.json b/tests/__snapshots__/rssexpanded-3/117/slow-0.json index a3c4c974..1d507c1b 100644 --- a/tests/__snapshots__/rssexpanded-3/117/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/117/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/117/slow-180.json b/tests/__snapshots__/rssexpanded-3/117/slow-180.json index 516e2153..6c5ea71f 100644 --- a/tests/__snapshots__/rssexpanded-3/117/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/117/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/12/fast-0.json b/tests/__snapshots__/rssexpanded-3/12/fast-0.json index d68db793..eee53d01 100644 --- a/tests/__snapshots__/rssexpanded-3/12/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/12/fast-180.json b/tests/__snapshots__/rssexpanded-3/12/fast-180.json index 569faccf..3f28f0d8 100644 --- a/tests/__snapshots__/rssexpanded-3/12/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/12/pure-0.json b/tests/__snapshots__/rssexpanded-3/12/pure-0.json index 8939a33c..3cc8cda4 100644 --- a/tests/__snapshots__/rssexpanded-3/12/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/12/slow-0.json b/tests/__snapshots__/rssexpanded-3/12/slow-0.json index a0908757..6bf6d06a 100644 --- a/tests/__snapshots__/rssexpanded-3/12/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/12/slow-180.json b/tests/__snapshots__/rssexpanded-3/12/slow-180.json index 90741973..b4223e63 100644 --- a/tests/__snapshots__/rssexpanded-3/12/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/13/fast-0.json b/tests/__snapshots__/rssexpanded-3/13/fast-0.json index 43697cee..2ab02118 100644 --- a/tests/__snapshots__/rssexpanded-3/13/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a33ea4d", "bytesECI": "85d6c6e", "text": "01900123456789083922795888888888888888888888888888888888888888888888888888", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/13/fast-180.json b/tests/__snapshots__/rssexpanded-3/13/fast-180.json index 8f1f850e..3ab60841 100644 --- a/tests/__snapshots__/rssexpanded-3/13/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a33ea4d", "bytesECI": "85d6c6e", "text": "01900123456789083922795888888888888888888888888888888888888888888888888888", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/13/pure-0.json b/tests/__snapshots__/rssexpanded-3/13/pure-0.json index 7e758c38..8641f934 100644 --- a/tests/__snapshots__/rssexpanded-3/13/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/13/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a33ea4d", "bytesECI": "85d6c6e", "text": "01900123456789083922795888888888888888888888888888888888888888888888888888", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/13/slow-0.json b/tests/__snapshots__/rssexpanded-3/13/slow-0.json index 5152a867..99ca1d06 100644 --- a/tests/__snapshots__/rssexpanded-3/13/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a33ea4d", "bytesECI": "85d6c6e", "text": "01900123456789083922795888888888888888888888888888888888888888888888888888", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/13/slow-180.json b/tests/__snapshots__/rssexpanded-3/13/slow-180.json index c6fc379b..23e52c08 100644 --- a/tests/__snapshots__/rssexpanded-3/13/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a33ea4d", "bytesECI": "85d6c6e", "text": "01900123456789083922795888888888888888888888888888888888888888888888888888", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/14/fast-0.json b/tests/__snapshots__/rssexpanded-3/14/fast-0.json index 75ce1a9b..aab3bd24 100644 --- a/tests/__snapshots__/rssexpanded-3/14/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/14/fast-180.json b/tests/__snapshots__/rssexpanded-3/14/fast-180.json index 1dcd43c1..5db29822 100644 --- a/tests/__snapshots__/rssexpanded-3/14/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/14/pure-0.json b/tests/__snapshots__/rssexpanded-3/14/pure-0.json index 103442ae..ae8543cd 100644 --- a/tests/__snapshots__/rssexpanded-3/14/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/14/pure-0.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/14/slow-0.json b/tests/__snapshots__/rssexpanded-3/14/slow-0.json index 63a10e2c..ca101500 100644 --- a/tests/__snapshots__/rssexpanded-3/14/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/14/slow-180.json b/tests/__snapshots__/rssexpanded-3/14/slow-180.json index 7a5bf82f..f0849856 100644 --- a/tests/__snapshots__/rssexpanded-3/14/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/15/fast-0.json b/tests/__snapshots__/rssexpanded-3/15/fast-0.json index 20f18e28..4c6ca375 100644 --- a/tests/__snapshots__/rssexpanded-3/15/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/15/fast-180.json b/tests/__snapshots__/rssexpanded-3/15/fast-180.json index f7cccc15..2ccee1f1 100644 --- a/tests/__snapshots__/rssexpanded-3/15/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/15/pure-0.json b/tests/__snapshots__/rssexpanded-3/15/pure-0.json index 1001f219..4c0e6eab 100644 --- a/tests/__snapshots__/rssexpanded-3/15/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/15/pure-0.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/15/slow-0.json b/tests/__snapshots__/rssexpanded-3/15/slow-0.json index dd00bf14..d92ccc9f 100644 --- a/tests/__snapshots__/rssexpanded-3/15/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/15/slow-180.json b/tests/__snapshots__/rssexpanded-3/15/slow-180.json index 35143de9..e0685182 100644 --- a/tests/__snapshots__/rssexpanded-3/15/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/16/fast-0.json b/tests/__snapshots__/rssexpanded-3/16/fast-0.json index c5a36a95..ee6bcc65 100644 --- a/tests/__snapshots__/rssexpanded-3/16/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1e8f809", "bytesECI": "1b74f40", "text": "011234567890123110UNIVERSITY-OF-DEUSTO", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/16/fast-180.json b/tests/__snapshots__/rssexpanded-3/16/fast-180.json index bc4a61f6..1108d99c 100644 --- a/tests/__snapshots__/rssexpanded-3/16/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1e8f809", "bytesECI": "1b74f40", "text": "011234567890123110UNIVERSITY-OF-DEUSTO", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/16/pure-0.json b/tests/__snapshots__/rssexpanded-3/16/pure-0.json index 8803b529..909c2b0c 100644 --- a/tests/__snapshots__/rssexpanded-3/16/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/16/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1e8f809", "bytesECI": "1b74f40", "text": "011234567890123110UNIVERSITY-OF-DEUSTO", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/16/slow-0.json b/tests/__snapshots__/rssexpanded-3/16/slow-0.json index 7ddde4bd..4e2f1482 100644 --- a/tests/__snapshots__/rssexpanded-3/16/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1e8f809", "bytesECI": "1b74f40", "text": "011234567890123110UNIVERSITY-OF-DEUSTO", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/16/slow-180.json b/tests/__snapshots__/rssexpanded-3/16/slow-180.json index 81914fd5..752ba46c 100644 --- a/tests/__snapshots__/rssexpanded-3/16/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1e8f809", "bytesECI": "1b74f40", "text": "011234567890123110UNIVERSITY-OF-DEUSTO", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/17/fast-0.json b/tests/__snapshots__/rssexpanded-3/17/fast-0.json index b2132079..422b6cea 100644 --- a/tests/__snapshots__/rssexpanded-3/17/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d3e34e0", "bytesECI": "99e7317", "text": "011234567890123110PIRAMIDE-PROJECT", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/17/fast-180.json b/tests/__snapshots__/rssexpanded-3/17/fast-180.json index 728d1c8f..3e0a063e 100644 --- a/tests/__snapshots__/rssexpanded-3/17/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d3e34e0", "bytesECI": "99e7317", "text": "011234567890123110PIRAMIDE-PROJECT", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/17/pure-0.json b/tests/__snapshots__/rssexpanded-3/17/pure-0.json index 8b8f3b72..3b8f595b 100644 --- a/tests/__snapshots__/rssexpanded-3/17/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/17/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d3e34e0", "bytesECI": "99e7317", "text": "011234567890123110PIRAMIDE-PROJECT", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/17/slow-0.json b/tests/__snapshots__/rssexpanded-3/17/slow-0.json index a4c5a933..ba61115e 100644 --- a/tests/__snapshots__/rssexpanded-3/17/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d3e34e0", "bytesECI": "99e7317", "text": "011234567890123110PIRAMIDE-PROJECT", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/17/slow-180.json b/tests/__snapshots__/rssexpanded-3/17/slow-180.json index 24f8940f..597fb598 100644 --- a/tests/__snapshots__/rssexpanded-3/17/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d3e34e0", "bytesECI": "99e7317", "text": "011234567890123110PIRAMIDE-PROJECT", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/18/fast-0.json b/tests/__snapshots__/rssexpanded-3/18/fast-0.json index 226a72b6..771803eb 100644 --- a/tests/__snapshots__/rssexpanded-3/18/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/18/fast-180.json b/tests/__snapshots__/rssexpanded-3/18/fast-180.json index 321cf32f..83a03f5a 100644 --- a/tests/__snapshots__/rssexpanded-3/18/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/18/pure-0.json b/tests/__snapshots__/rssexpanded-3/18/pure-0.json index 6c42549f..1c3a951d 100644 --- a/tests/__snapshots__/rssexpanded-3/18/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/18/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/18/slow-0.json b/tests/__snapshots__/rssexpanded-3/18/slow-0.json index 3a6afa16..a4e8cf75 100644 --- a/tests/__snapshots__/rssexpanded-3/18/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/18/slow-180.json b/tests/__snapshots__/rssexpanded-3/18/slow-180.json index a5b21487..9f29cbd3 100644 --- a/tests/__snapshots__/rssexpanded-3/18/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/19/fast-0.json b/tests/__snapshots__/rssexpanded-3/19/fast-0.json index dae115a3..291aea7e 100644 --- a/tests/__snapshots__/rssexpanded-3/19/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/19/fast-180.json b/tests/__snapshots__/rssexpanded-3/19/fast-180.json index 82b274a1..008944dc 100644 --- a/tests/__snapshots__/rssexpanded-3/19/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/19/pure-0.json b/tests/__snapshots__/rssexpanded-3/19/pure-0.json index 69331eb9..4114e79f 100644 --- a/tests/__snapshots__/rssexpanded-3/19/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/19/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/19/slow-0.json b/tests/__snapshots__/rssexpanded-3/19/slow-0.json index 5ae82fb2..953ec890 100644 --- a/tests/__snapshots__/rssexpanded-3/19/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/19/slow-180.json b/tests/__snapshots__/rssexpanded-3/19/slow-180.json index c5b3e4c6..a4b7292d 100644 --- a/tests/__snapshots__/rssexpanded-3/19/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/2/fast-0.json b/tests/__snapshots__/rssexpanded-3/2/fast-0.json index 0b493560..dc92f5fc 100644 --- a/tests/__snapshots__/rssexpanded-3/2/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/2/fast-180.json b/tests/__snapshots__/rssexpanded-3/2/fast-180.json index 2fb17f53..c696b93a 100644 --- a/tests/__snapshots__/rssexpanded-3/2/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/2/pure-0.json b/tests/__snapshots__/rssexpanded-3/2/pure-0.json index d5a98859..69c2d69d 100644 --- a/tests/__snapshots__/rssexpanded-3/2/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/2/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/2/slow-0.json b/tests/__snapshots__/rssexpanded-3/2/slow-0.json index 904bc60e..22dd74bc 100644 --- a/tests/__snapshots__/rssexpanded-3/2/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/2/slow-180.json b/tests/__snapshots__/rssexpanded-3/2/slow-180.json index d6335ffb..0f84b9b5 100644 --- a/tests/__snapshots__/rssexpanded-3/2/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/20/fast-0.json b/tests/__snapshots__/rssexpanded-3/20/fast-0.json index aba097cb..952f2649 100644 --- a/tests/__snapshots__/rssexpanded-3/20/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/20/fast-180.json b/tests/__snapshots__/rssexpanded-3/20/fast-180.json index dccabcca..91cad43c 100644 --- a/tests/__snapshots__/rssexpanded-3/20/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/20/fast-180.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/20/pure-0.json b/tests/__snapshots__/rssexpanded-3/20/pure-0.json index 5c632705..6da83723 100644 --- a/tests/__snapshots__/rssexpanded-3/20/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/20/pure-0.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/20/slow-0.json b/tests/__snapshots__/rssexpanded-3/20/slow-0.json index 368047ef..5b1506d0 100644 --- a/tests/__snapshots__/rssexpanded-3/20/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/20/slow-180.json b/tests/__snapshots__/rssexpanded-3/20/slow-180.json index 196192b6..4aee18e6 100644 --- a/tests/__snapshots__/rssexpanded-3/20/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/21/fast-0.json b/tests/__snapshots__/rssexpanded-3/21/fast-0.json index 8b3cce9a..41f3c989 100644 --- a/tests/__snapshots__/rssexpanded-3/21/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/21/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/21/fast-180.json b/tests/__snapshots__/rssexpanded-3/21/fast-180.json index bcebba31..38aa585a 100644 --- a/tests/__snapshots__/rssexpanded-3/21/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/21/pure-0.json b/tests/__snapshots__/rssexpanded-3/21/pure-0.json index f9193ee0..2e0907e5 100644 --- a/tests/__snapshots__/rssexpanded-3/21/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/21/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/21/slow-0.json b/tests/__snapshots__/rssexpanded-3/21/slow-0.json index c858a749..3f5b4d04 100644 --- a/tests/__snapshots__/rssexpanded-3/21/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/21/slow-180.json b/tests/__snapshots__/rssexpanded-3/21/slow-180.json index 5364a612..ee4e9577 100644 --- a/tests/__snapshots__/rssexpanded-3/21/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/22/fast-0.json b/tests/__snapshots__/rssexpanded-3/22/fast-0.json index 79fbcd52..137c5967 100644 --- a/tests/__snapshots__/rssexpanded-3/22/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/22/fast-0.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/22/fast-180.json b/tests/__snapshots__/rssexpanded-3/22/fast-180.json index 71fd30a0..8392a09c 100644 --- a/tests/__snapshots__/rssexpanded-3/22/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/22/fast-180.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/22/pure-0.json b/tests/__snapshots__/rssexpanded-3/22/pure-0.json index c0426b4b..631bdb4f 100644 --- a/tests/__snapshots__/rssexpanded-3/22/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/22/pure-0.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/22/slow-0.json b/tests/__snapshots__/rssexpanded-3/22/slow-0.json index 86404681..a3d7688c 100644 --- a/tests/__snapshots__/rssexpanded-3/22/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/22/slow-180.json b/tests/__snapshots__/rssexpanded-3/22/slow-180.json index c59102a1..4f2cf057 100644 --- a/tests/__snapshots__/rssexpanded-3/22/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/23/fast-0.json b/tests/__snapshots__/rssexpanded-3/23/fast-0.json index 98cc49f0..fb36881f 100644 --- a/tests/__snapshots__/rssexpanded-3/23/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/23/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/23/fast-180.json b/tests/__snapshots__/rssexpanded-3/23/fast-180.json index 269758dc..58351a82 100644 --- a/tests/__snapshots__/rssexpanded-3/23/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/23/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/23/pure-0.json b/tests/__snapshots__/rssexpanded-3/23/pure-0.json index b0b43e0c..c209fd1f 100644 --- a/tests/__snapshots__/rssexpanded-3/23/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/23/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/23/slow-0.json b/tests/__snapshots__/rssexpanded-3/23/slow-0.json index 4acc0535..c022c066 100644 --- a/tests/__snapshots__/rssexpanded-3/23/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/23/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/23/slow-180.json b/tests/__snapshots__/rssexpanded-3/23/slow-180.json index 36456ecb..17ad9a96 100644 --- a/tests/__snapshots__/rssexpanded-3/23/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/23/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/24/fast-0.json b/tests/__snapshots__/rssexpanded-3/24/fast-0.json index 47286f18..46e04e7d 100644 --- a/tests/__snapshots__/rssexpanded-3/24/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/24/fast-180.json b/tests/__snapshots__/rssexpanded-3/24/fast-180.json index e2554ad8..b8414caf 100644 --- a/tests/__snapshots__/rssexpanded-3/24/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/24/pure-0.json b/tests/__snapshots__/rssexpanded-3/24/pure-0.json index 1b78f6ae..fe445651 100644 --- a/tests/__snapshots__/rssexpanded-3/24/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/24/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/24/slow-0.json b/tests/__snapshots__/rssexpanded-3/24/slow-0.json index b1dac3f7..506fc8fd 100644 --- a/tests/__snapshots__/rssexpanded-3/24/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/24/slow-180.json b/tests/__snapshots__/rssexpanded-3/24/slow-180.json index 9c2c0e0f..0281b9d7 100644 --- a/tests/__snapshots__/rssexpanded-3/24/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/25/fast-0.json b/tests/__snapshots__/rssexpanded-3/25/fast-0.json index e586fa01..f6fb12ce 100644 --- a/tests/__snapshots__/rssexpanded-3/25/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/25/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/25/fast-180.json b/tests/__snapshots__/rssexpanded-3/25/fast-180.json index 5b4ad1e1..e0006f7b 100644 --- a/tests/__snapshots__/rssexpanded-3/25/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/25/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/25/pure-0.json b/tests/__snapshots__/rssexpanded-3/25/pure-0.json index accb0cf7..63b9e893 100644 --- a/tests/__snapshots__/rssexpanded-3/25/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/25/pure-0.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/25/slow-0.json b/tests/__snapshots__/rssexpanded-3/25/slow-0.json index bcc1d2c8..3189ab0e 100644 --- a/tests/__snapshots__/rssexpanded-3/25/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/25/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/25/slow-180.json b/tests/__snapshots__/rssexpanded-3/25/slow-180.json index cb57f73a..320b82ab 100644 --- a/tests/__snapshots__/rssexpanded-3/25/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/25/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/26/fast-0.json b/tests/__snapshots__/rssexpanded-3/26/fast-0.json index e32470e1..ae6f4d48 100644 --- a/tests/__snapshots__/rssexpanded-3/26/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/26/fast-0.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/26/fast-180.json b/tests/__snapshots__/rssexpanded-3/26/fast-180.json index 60c9d716..4e339317 100644 --- a/tests/__snapshots__/rssexpanded-3/26/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/26/fast-180.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/26/pure-0.json b/tests/__snapshots__/rssexpanded-3/26/pure-0.json index 649efe15..17a65b94 100644 --- a/tests/__snapshots__/rssexpanded-3/26/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/26/pure-0.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/26/slow-0.json b/tests/__snapshots__/rssexpanded-3/26/slow-0.json index f19d168c..0208f2a0 100644 --- a/tests/__snapshots__/rssexpanded-3/26/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/26/slow-0.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/26/slow-180.json b/tests/__snapshots__/rssexpanded-3/26/slow-180.json index 75973141..fb0c01cb 100644 --- a/tests/__snapshots__/rssexpanded-3/26/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/26/slow-180.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/27/fast-0.json b/tests/__snapshots__/rssexpanded-3/27/fast-0.json index 35ea846e..be39c315 100644 --- a/tests/__snapshots__/rssexpanded-3/27/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/27/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/27/fast-180.json b/tests/__snapshots__/rssexpanded-3/27/fast-180.json index 7b234c39..81c73411 100644 --- a/tests/__snapshots__/rssexpanded-3/27/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/27/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/27/pure-0.json b/tests/__snapshots__/rssexpanded-3/27/pure-0.json index 66351002..98426328 100644 --- a/tests/__snapshots__/rssexpanded-3/27/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/27/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/27/slow-0.json b/tests/__snapshots__/rssexpanded-3/27/slow-0.json index 706564f3..f209e7dc 100644 --- a/tests/__snapshots__/rssexpanded-3/27/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/27/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/27/slow-180.json b/tests/__snapshots__/rssexpanded-3/27/slow-180.json index 2e7e8571..ed674d5b 100644 --- a/tests/__snapshots__/rssexpanded-3/27/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/27/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/28/fast-0.json b/tests/__snapshots__/rssexpanded-3/28/fast-0.json index ba8482b4..ea2194dc 100644 --- a/tests/__snapshots__/rssexpanded-3/28/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/28/fast-0.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/28/fast-180.json b/tests/__snapshots__/rssexpanded-3/28/fast-180.json index 0b34585d..e74e5116 100644 --- a/tests/__snapshots__/rssexpanded-3/28/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/28/fast-180.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/28/pure-0.json b/tests/__snapshots__/rssexpanded-3/28/pure-0.json index 8caee81e..362ea9ff 100644 --- a/tests/__snapshots__/rssexpanded-3/28/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/28/pure-0.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/28/slow-0.json b/tests/__snapshots__/rssexpanded-3/28/slow-0.json index 7e5d2879..b352e802 100644 --- a/tests/__snapshots__/rssexpanded-3/28/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/28/slow-0.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/28/slow-180.json b/tests/__snapshots__/rssexpanded-3/28/slow-180.json index fdfefdf7..3ad0654d 100644 --- a/tests/__snapshots__/rssexpanded-3/28/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/28/slow-180.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/29/fast-0.json b/tests/__snapshots__/rssexpanded-3/29/fast-0.json index d8967266..3e62d108 100644 --- a/tests/__snapshots__/rssexpanded-3/29/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/29/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/29/fast-180.json b/tests/__snapshots__/rssexpanded-3/29/fast-180.json index 6bf5647d..32bb6920 100644 --- a/tests/__snapshots__/rssexpanded-3/29/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/29/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/29/pure-0.json b/tests/__snapshots__/rssexpanded-3/29/pure-0.json index f963a5c9..8930ef0a 100644 --- a/tests/__snapshots__/rssexpanded-3/29/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/29/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/29/slow-0.json b/tests/__snapshots__/rssexpanded-3/29/slow-0.json index 76ee29d1..690188ac 100644 --- a/tests/__snapshots__/rssexpanded-3/29/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/29/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/29/slow-180.json b/tests/__snapshots__/rssexpanded-3/29/slow-180.json index 0b5b7b2c..0b15c4b6 100644 --- a/tests/__snapshots__/rssexpanded-3/29/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/29/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/3/fast-0.json b/tests/__snapshots__/rssexpanded-3/3/fast-0.json index 11d8ed7e..3772164c 100644 --- a/tests/__snapshots__/rssexpanded-3/3/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/3/fast-180.json b/tests/__snapshots__/rssexpanded-3/3/fast-180.json index 1e865339..6b3517d5 100644 --- a/tests/__snapshots__/rssexpanded-3/3/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/3/pure-0.json b/tests/__snapshots__/rssexpanded-3/3/pure-0.json index 63bd117f..96a7b9e8 100644 --- a/tests/__snapshots__/rssexpanded-3/3/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/3/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/3/slow-0.json b/tests/__snapshots__/rssexpanded-3/3/slow-0.json index 8d4e798d..4fa8bfdc 100644 --- a/tests/__snapshots__/rssexpanded-3/3/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/3/slow-180.json b/tests/__snapshots__/rssexpanded-3/3/slow-180.json index 41dee6f2..4f8aac29 100644 --- a/tests/__snapshots__/rssexpanded-3/3/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/30/fast-0.json b/tests/__snapshots__/rssexpanded-3/30/fast-0.json index 39a55a1d..758f6d4e 100644 --- a/tests/__snapshots__/rssexpanded-3/30/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/30/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/30/fast-180.json b/tests/__snapshots__/rssexpanded-3/30/fast-180.json index fad2e378..0dbff2db 100644 --- a/tests/__snapshots__/rssexpanded-3/30/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/30/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/30/pure-0.json b/tests/__snapshots__/rssexpanded-3/30/pure-0.json index aecf7d42..23b51d6d 100644 --- a/tests/__snapshots__/rssexpanded-3/30/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/30/pure-0.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/30/slow-0.json b/tests/__snapshots__/rssexpanded-3/30/slow-0.json index 65c02f12..067203af 100644 --- a/tests/__snapshots__/rssexpanded-3/30/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/30/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/30/slow-180.json b/tests/__snapshots__/rssexpanded-3/30/slow-180.json index d673efeb..298b260c 100644 --- a/tests/__snapshots__/rssexpanded-3/30/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/30/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/31/fast-0.json b/tests/__snapshots__/rssexpanded-3/31/fast-0.json index 911f2173..9cb5d90e 100644 --- a/tests/__snapshots__/rssexpanded-3/31/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/31/fast-0.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/31/fast-180.json b/tests/__snapshots__/rssexpanded-3/31/fast-180.json index d2073edd..d5003968 100644 --- a/tests/__snapshots__/rssexpanded-3/31/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/31/fast-180.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/31/pure-0.json b/tests/__snapshots__/rssexpanded-3/31/pure-0.json index 7fd3f7b4..9f47b577 100644 --- a/tests/__snapshots__/rssexpanded-3/31/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/31/pure-0.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/31/slow-0.json b/tests/__snapshots__/rssexpanded-3/31/slow-0.json index 2f8da29f..8b1b7117 100644 --- a/tests/__snapshots__/rssexpanded-3/31/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/31/slow-0.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/31/slow-180.json b/tests/__snapshots__/rssexpanded-3/31/slow-180.json index 1c680286..c113b31a 100644 --- a/tests/__snapshots__/rssexpanded-3/31/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/31/slow-180.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/32/fast-0.json b/tests/__snapshots__/rssexpanded-3/32/fast-0.json index 515eb316..fecdef09 100644 --- a/tests/__snapshots__/rssexpanded-3/32/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/32/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/32/fast-180.json b/tests/__snapshots__/rssexpanded-3/32/fast-180.json index 45b7743c..50d68c14 100644 --- a/tests/__snapshots__/rssexpanded-3/32/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/32/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/32/pure-0.json b/tests/__snapshots__/rssexpanded-3/32/pure-0.json index e3b0ede4..6087057e 100644 --- a/tests/__snapshots__/rssexpanded-3/32/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/32/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/32/slow-0.json b/tests/__snapshots__/rssexpanded-3/32/slow-0.json index d660cbc8..f3cba602 100644 --- a/tests/__snapshots__/rssexpanded-3/32/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/32/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/32/slow-180.json b/tests/__snapshots__/rssexpanded-3/32/slow-180.json index cd02c768..b36f7dd1 100644 --- a/tests/__snapshots__/rssexpanded-3/32/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/32/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/33/fast-0.json b/tests/__snapshots__/rssexpanded-3/33/fast-0.json index 4aed9058..96f1d958 100644 --- a/tests/__snapshots__/rssexpanded-3/33/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/33/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/33/fast-180.json b/tests/__snapshots__/rssexpanded-3/33/fast-180.json index d79236d0..2446f790 100644 --- a/tests/__snapshots__/rssexpanded-3/33/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/33/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/33/pure-0.json b/tests/__snapshots__/rssexpanded-3/33/pure-0.json index 66cbddc2..9fef8c5b 100644 --- a/tests/__snapshots__/rssexpanded-3/33/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/33/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/33/slow-0.json b/tests/__snapshots__/rssexpanded-3/33/slow-0.json index 5bace5bc..ec889a91 100644 --- a/tests/__snapshots__/rssexpanded-3/33/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/33/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/33/slow-180.json b/tests/__snapshots__/rssexpanded-3/33/slow-180.json index debadbcc..90bbbe59 100644 --- a/tests/__snapshots__/rssexpanded-3/33/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/33/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/34/fast-0.json b/tests/__snapshots__/rssexpanded-3/34/fast-0.json index be3ac4ff..7ea897f7 100644 --- a/tests/__snapshots__/rssexpanded-3/34/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/34/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/34/fast-180.json b/tests/__snapshots__/rssexpanded-3/34/fast-180.json index 21b442c8..51e06f10 100644 --- a/tests/__snapshots__/rssexpanded-3/34/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/34/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/34/pure-0.json b/tests/__snapshots__/rssexpanded-3/34/pure-0.json index d6bd6dbb..fbdb5d00 100644 --- a/tests/__snapshots__/rssexpanded-3/34/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/34/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/34/slow-0.json b/tests/__snapshots__/rssexpanded-3/34/slow-0.json index 973aacd9..5d3a1660 100644 --- a/tests/__snapshots__/rssexpanded-3/34/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/34/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/34/slow-180.json b/tests/__snapshots__/rssexpanded-3/34/slow-180.json index 1364981a..97ec33de 100644 --- a/tests/__snapshots__/rssexpanded-3/34/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/34/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/35/fast-0.json b/tests/__snapshots__/rssexpanded-3/35/fast-0.json index 8bf007b1..7a7617ac 100644 --- a/tests/__snapshots__/rssexpanded-3/35/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/35/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/35/fast-180.json b/tests/__snapshots__/rssexpanded-3/35/fast-180.json index 7bebe70f..eddb6621 100644 --- a/tests/__snapshots__/rssexpanded-3/35/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/35/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/35/pure-0.json b/tests/__snapshots__/rssexpanded-3/35/pure-0.json index dae75923..54b4fc0b 100644 --- a/tests/__snapshots__/rssexpanded-3/35/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/35/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/35/slow-0.json b/tests/__snapshots__/rssexpanded-3/35/slow-0.json index ab2c94e0..72ff247b 100644 --- a/tests/__snapshots__/rssexpanded-3/35/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/35/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/35/slow-180.json b/tests/__snapshots__/rssexpanded-3/35/slow-180.json index 8b02f891..51e18f29 100644 --- a/tests/__snapshots__/rssexpanded-3/35/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/35/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/36/fast-0.json b/tests/__snapshots__/rssexpanded-3/36/fast-0.json index c1994d06..345db9d1 100644 --- a/tests/__snapshots__/rssexpanded-3/36/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/36/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/36/fast-180.json b/tests/__snapshots__/rssexpanded-3/36/fast-180.json index fdc9658d..67c5f3ec 100644 --- a/tests/__snapshots__/rssexpanded-3/36/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/36/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/36/pure-0.json b/tests/__snapshots__/rssexpanded-3/36/pure-0.json index 837ad5e5..44d6c066 100644 --- a/tests/__snapshots__/rssexpanded-3/36/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/36/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/36/slow-0.json b/tests/__snapshots__/rssexpanded-3/36/slow-0.json index fa4067dc..a5f758e8 100644 --- a/tests/__snapshots__/rssexpanded-3/36/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/36/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/36/slow-180.json b/tests/__snapshots__/rssexpanded-3/36/slow-180.json index 2c26b60b..ab98eded 100644 --- a/tests/__snapshots__/rssexpanded-3/36/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/36/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/37/fast-0.json b/tests/__snapshots__/rssexpanded-3/37/fast-0.json index 0ff5170c..f761b696 100644 --- a/tests/__snapshots__/rssexpanded-3/37/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/37/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/37/fast-180.json b/tests/__snapshots__/rssexpanded-3/37/fast-180.json index 0a112353..0035121e 100644 --- a/tests/__snapshots__/rssexpanded-3/37/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/37/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/37/pure-0.json b/tests/__snapshots__/rssexpanded-3/37/pure-0.json index 0b582815..83f508e6 100644 --- a/tests/__snapshots__/rssexpanded-3/37/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/37/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/37/slow-0.json b/tests/__snapshots__/rssexpanded-3/37/slow-0.json index da6dff0c..6c48d5b4 100644 --- a/tests/__snapshots__/rssexpanded-3/37/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/37/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/37/slow-180.json b/tests/__snapshots__/rssexpanded-3/37/slow-180.json index ab71a7fa..81ed5e1e 100644 --- a/tests/__snapshots__/rssexpanded-3/37/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/37/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/38/fast-0.json b/tests/__snapshots__/rssexpanded-3/38/fast-0.json index 306d5f0a..ab75533a 100644 --- a/tests/__snapshots__/rssexpanded-3/38/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/38/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/38/fast-180.json b/tests/__snapshots__/rssexpanded-3/38/fast-180.json index 84c7c796..09cd29b1 100644 --- a/tests/__snapshots__/rssexpanded-3/38/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/38/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/38/pure-0.json b/tests/__snapshots__/rssexpanded-3/38/pure-0.json index 0a7f756f..e6eda2ba 100644 --- a/tests/__snapshots__/rssexpanded-3/38/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/38/pure-0.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/38/slow-0.json b/tests/__snapshots__/rssexpanded-3/38/slow-0.json index 6623d9e2..b81c1ffa 100644 --- a/tests/__snapshots__/rssexpanded-3/38/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/38/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/38/slow-180.json b/tests/__snapshots__/rssexpanded-3/38/slow-180.json index c7595031..7d972382 100644 --- a/tests/__snapshots__/rssexpanded-3/38/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/38/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/39/fast-0.json b/tests/__snapshots__/rssexpanded-3/39/fast-0.json index eddedceb..90dc31e2 100644 --- a/tests/__snapshots__/rssexpanded-3/39/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/39/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/39/fast-180.json b/tests/__snapshots__/rssexpanded-3/39/fast-180.json index 193ac44b..52dbe989 100644 --- a/tests/__snapshots__/rssexpanded-3/39/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/39/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/39/pure-0.json b/tests/__snapshots__/rssexpanded-3/39/pure-0.json index 2d252c6d..b036f11e 100644 --- a/tests/__snapshots__/rssexpanded-3/39/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/39/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/39/slow-0.json b/tests/__snapshots__/rssexpanded-3/39/slow-0.json index d93abfe8..d662366f 100644 --- a/tests/__snapshots__/rssexpanded-3/39/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/39/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/39/slow-180.json b/tests/__snapshots__/rssexpanded-3/39/slow-180.json index 0e108417..0bbae57d 100644 --- a/tests/__snapshots__/rssexpanded-3/39/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/39/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/4/fast-0.json b/tests/__snapshots__/rssexpanded-3/4/fast-0.json index e5aee407..8fc90afc 100644 --- a/tests/__snapshots__/rssexpanded-3/4/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/4/fast-180.json b/tests/__snapshots__/rssexpanded-3/4/fast-180.json index 999ae61d..5e687e2b 100644 --- a/tests/__snapshots__/rssexpanded-3/4/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/4/pure-0.json b/tests/__snapshots__/rssexpanded-3/4/pure-0.json index 805a165d..7b10b70c 100644 --- a/tests/__snapshots__/rssexpanded-3/4/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/4/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/4/slow-0.json b/tests/__snapshots__/rssexpanded-3/4/slow-0.json index 6bbf2208..cc29d5d9 100644 --- a/tests/__snapshots__/rssexpanded-3/4/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/4/slow-180.json b/tests/__snapshots__/rssexpanded-3/4/slow-180.json index ac6bd561..a29ff666 100644 --- a/tests/__snapshots__/rssexpanded-3/4/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/40/fast-0.json b/tests/__snapshots__/rssexpanded-3/40/fast-0.json index 3eca4ce4..ca33f9e2 100644 --- a/tests/__snapshots__/rssexpanded-3/40/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/40/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/40/fast-180.json b/tests/__snapshots__/rssexpanded-3/40/fast-180.json index 70792c5c..3f328d3b 100644 --- a/tests/__snapshots__/rssexpanded-3/40/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/40/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/40/pure-0.json b/tests/__snapshots__/rssexpanded-3/40/pure-0.json index a26e2a24..30acf1f2 100644 --- a/tests/__snapshots__/rssexpanded-3/40/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/40/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/40/slow-0.json b/tests/__snapshots__/rssexpanded-3/40/slow-0.json index ead7441f..acbe9266 100644 --- a/tests/__snapshots__/rssexpanded-3/40/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/40/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/40/slow-180.json b/tests/__snapshots__/rssexpanded-3/40/slow-180.json index 3214b84a..fea25174 100644 --- a/tests/__snapshots__/rssexpanded-3/40/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/40/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/41/fast-0.json b/tests/__snapshots__/rssexpanded-3/41/fast-0.json index 636f328e..8e3944a2 100644 --- a/tests/__snapshots__/rssexpanded-3/41/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/41/fast-0.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/41/fast-180.json b/tests/__snapshots__/rssexpanded-3/41/fast-180.json index d825102e..2e473561 100644 --- a/tests/__snapshots__/rssexpanded-3/41/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/41/fast-180.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/41/pure-0.json b/tests/__snapshots__/rssexpanded-3/41/pure-0.json index fe00a40b..f6b84325 100644 --- a/tests/__snapshots__/rssexpanded-3/41/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/41/pure-0.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/41/slow-0.json b/tests/__snapshots__/rssexpanded-3/41/slow-0.json index 27349ce8..7f2a23ea 100644 --- a/tests/__snapshots__/rssexpanded-3/41/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/41/slow-0.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/41/slow-180.json b/tests/__snapshots__/rssexpanded-3/41/slow-180.json index 26e232c0..bc2df684 100644 --- a/tests/__snapshots__/rssexpanded-3/41/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/41/slow-180.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/42/fast-0.json b/tests/__snapshots__/rssexpanded-3/42/fast-0.json index 57791a8b..9c497435 100644 --- a/tests/__snapshots__/rssexpanded-3/42/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/42/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/42/fast-180.json b/tests/__snapshots__/rssexpanded-3/42/fast-180.json index 38edc817..78ec711b 100644 --- a/tests/__snapshots__/rssexpanded-3/42/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/42/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/42/pure-0.json b/tests/__snapshots__/rssexpanded-3/42/pure-0.json index c2f812e6..c8b404ca 100644 --- a/tests/__snapshots__/rssexpanded-3/42/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/42/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/42/slow-0.json b/tests/__snapshots__/rssexpanded-3/42/slow-0.json index e13ca31d..28190e17 100644 --- a/tests/__snapshots__/rssexpanded-3/42/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/42/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/42/slow-180.json b/tests/__snapshots__/rssexpanded-3/42/slow-180.json index e84ff1a8..33db96a3 100644 --- a/tests/__snapshots__/rssexpanded-3/42/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/42/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/43/fast-0.json b/tests/__snapshots__/rssexpanded-3/43/fast-0.json index a2ea478d..38893bf8 100644 --- a/tests/__snapshots__/rssexpanded-3/43/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/43/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/43/fast-180.json b/tests/__snapshots__/rssexpanded-3/43/fast-180.json index b9ec15c6..5dd5d7d0 100644 --- a/tests/__snapshots__/rssexpanded-3/43/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/43/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/43/pure-0.json b/tests/__snapshots__/rssexpanded-3/43/pure-0.json index 14f746af..d2a02326 100644 --- a/tests/__snapshots__/rssexpanded-3/43/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/43/pure-0.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/43/slow-0.json b/tests/__snapshots__/rssexpanded-3/43/slow-0.json index ca5d4aa3..867e9023 100644 --- a/tests/__snapshots__/rssexpanded-3/43/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/43/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/43/slow-180.json b/tests/__snapshots__/rssexpanded-3/43/slow-180.json index 6c3a6cd0..d2c88d91 100644 --- a/tests/__snapshots__/rssexpanded-3/43/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/43/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/44/fast-0.json b/tests/__snapshots__/rssexpanded-3/44/fast-0.json index 3205f78d..2ea17178 100644 --- a/tests/__snapshots__/rssexpanded-3/44/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/44/fast-0.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/44/fast-180.json b/tests/__snapshots__/rssexpanded-3/44/fast-180.json index e3f90370..fd5b34ae 100644 --- a/tests/__snapshots__/rssexpanded-3/44/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/44/fast-180.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/44/pure-0.json b/tests/__snapshots__/rssexpanded-3/44/pure-0.json index 1ca55f00..2488b463 100644 --- a/tests/__snapshots__/rssexpanded-3/44/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/44/pure-0.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/44/slow-0.json b/tests/__snapshots__/rssexpanded-3/44/slow-0.json index 486b6288..f073e970 100644 --- a/tests/__snapshots__/rssexpanded-3/44/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/44/slow-0.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/44/slow-180.json b/tests/__snapshots__/rssexpanded-3/44/slow-180.json index 0ff2661d..4a71aad2 100644 --- a/tests/__snapshots__/rssexpanded-3/44/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/44/slow-180.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/45/fast-0.json b/tests/__snapshots__/rssexpanded-3/45/fast-0.json index a4bdec83..83030a9c 100644 --- a/tests/__snapshots__/rssexpanded-3/45/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/45/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/45/fast-180.json b/tests/__snapshots__/rssexpanded-3/45/fast-180.json index 9730a644..a1860f49 100644 --- a/tests/__snapshots__/rssexpanded-3/45/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/45/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/45/pure-0.json b/tests/__snapshots__/rssexpanded-3/45/pure-0.json index 287b0c30..e302e256 100644 --- a/tests/__snapshots__/rssexpanded-3/45/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/45/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/45/slow-0.json b/tests/__snapshots__/rssexpanded-3/45/slow-0.json index db79a833..5d0ec141 100644 --- a/tests/__snapshots__/rssexpanded-3/45/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/45/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/45/slow-180.json b/tests/__snapshots__/rssexpanded-3/45/slow-180.json index 4a9820fd..5db42d0e 100644 --- a/tests/__snapshots__/rssexpanded-3/45/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/45/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/46/fast-0.json b/tests/__snapshots__/rssexpanded-3/46/fast-0.json index d25ec69a..dc43fb9c 100644 --- a/tests/__snapshots__/rssexpanded-3/46/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/46/fast-0.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/46/fast-180.json b/tests/__snapshots__/rssexpanded-3/46/fast-180.json index b916b4f5..177eee19 100644 --- a/tests/__snapshots__/rssexpanded-3/46/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/46/fast-180.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/46/pure-0.json b/tests/__snapshots__/rssexpanded-3/46/pure-0.json index 17a4a10d..f72af858 100644 --- a/tests/__snapshots__/rssexpanded-3/46/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/46/pure-0.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/46/slow-0.json b/tests/__snapshots__/rssexpanded-3/46/slow-0.json index b915aa0f..eddafd73 100644 --- a/tests/__snapshots__/rssexpanded-3/46/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/46/slow-0.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/46/slow-180.json b/tests/__snapshots__/rssexpanded-3/46/slow-180.json index 0a5060f1..aa0f7621 100644 --- a/tests/__snapshots__/rssexpanded-3/46/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/46/slow-180.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/47/fast-0.json b/tests/__snapshots__/rssexpanded-3/47/fast-0.json index b6f5f397..e494f476 100644 --- a/tests/__snapshots__/rssexpanded-3/47/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/47/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/47/fast-180.json b/tests/__snapshots__/rssexpanded-3/47/fast-180.json index 34db9e2a..3242bb66 100644 --- a/tests/__snapshots__/rssexpanded-3/47/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/47/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/47/pure-0.json b/tests/__snapshots__/rssexpanded-3/47/pure-0.json index 16535c5c..e09eb7b3 100644 --- a/tests/__snapshots__/rssexpanded-3/47/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/47/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/47/slow-0.json b/tests/__snapshots__/rssexpanded-3/47/slow-0.json index f5f26943..9f11d963 100644 --- a/tests/__snapshots__/rssexpanded-3/47/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/47/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/47/slow-180.json b/tests/__snapshots__/rssexpanded-3/47/slow-180.json index f27cd599..b1a73788 100644 --- a/tests/__snapshots__/rssexpanded-3/47/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/47/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/48/fast-0.json b/tests/__snapshots__/rssexpanded-3/48/fast-0.json index d20df121..65889f0b 100644 --- a/tests/__snapshots__/rssexpanded-3/48/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/48/fast-0.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/48/fast-180.json b/tests/__snapshots__/rssexpanded-3/48/fast-180.json index d7dde36d..fc01e8b5 100644 --- a/tests/__snapshots__/rssexpanded-3/48/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/48/fast-180.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/48/pure-0.json b/tests/__snapshots__/rssexpanded-3/48/pure-0.json index df905978..cfcd0ddf 100644 --- a/tests/__snapshots__/rssexpanded-3/48/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/48/pure-0.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/48/slow-0.json b/tests/__snapshots__/rssexpanded-3/48/slow-0.json index 4b6113a6..f4b07ba4 100644 --- a/tests/__snapshots__/rssexpanded-3/48/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/48/slow-0.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/48/slow-180.json b/tests/__snapshots__/rssexpanded-3/48/slow-180.json index 779d5a17..2668b784 100644 --- a/tests/__snapshots__/rssexpanded-3/48/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/48/slow-180.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/49/fast-0.json b/tests/__snapshots__/rssexpanded-3/49/fast-0.json index d69b5a26..e8b1ed09 100644 --- a/tests/__snapshots__/rssexpanded-3/49/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/49/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/49/fast-180.json b/tests/__snapshots__/rssexpanded-3/49/fast-180.json index ee448f85..3fd5382b 100644 --- a/tests/__snapshots__/rssexpanded-3/49/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/49/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/49/pure-0.json b/tests/__snapshots__/rssexpanded-3/49/pure-0.json index 4771e7a8..545bcfe1 100644 --- a/tests/__snapshots__/rssexpanded-3/49/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/49/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/49/slow-0.json b/tests/__snapshots__/rssexpanded-3/49/slow-0.json index d6615fa7..165798d9 100644 --- a/tests/__snapshots__/rssexpanded-3/49/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/49/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/49/slow-180.json b/tests/__snapshots__/rssexpanded-3/49/slow-180.json index a71eafe4..309afe16 100644 --- a/tests/__snapshots__/rssexpanded-3/49/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/49/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/5/fast-0.json b/tests/__snapshots__/rssexpanded-3/5/fast-0.json index 234f1364..bed75530 100644 --- a/tests/__snapshots__/rssexpanded-3/5/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/5/fast-180.json b/tests/__snapshots__/rssexpanded-3/5/fast-180.json index c3ccd76c..20777879 100644 --- a/tests/__snapshots__/rssexpanded-3/5/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/5/fast-180.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/5/pure-0.json b/tests/__snapshots__/rssexpanded-3/5/pure-0.json index 0af65fff..bca021cb 100644 --- a/tests/__snapshots__/rssexpanded-3/5/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/5/pure-0.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/5/slow-0.json b/tests/__snapshots__/rssexpanded-3/5/slow-0.json index 1b867a2a..5427e5ff 100644 --- a/tests/__snapshots__/rssexpanded-3/5/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/5/slow-180.json b/tests/__snapshots__/rssexpanded-3/5/slow-180.json index 4f91b5b7..f5aaec2e 100644 --- a/tests/__snapshots__/rssexpanded-3/5/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/50/fast-0.json b/tests/__snapshots__/rssexpanded-3/50/fast-0.json index 62e68b1f..9521084f 100644 --- a/tests/__snapshots__/rssexpanded-3/50/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/50/fast-0.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/50/fast-180.json b/tests/__snapshots__/rssexpanded-3/50/fast-180.json index 139e13e6..84e891f4 100644 --- a/tests/__snapshots__/rssexpanded-3/50/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/50/fast-180.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/50/pure-0.json b/tests/__snapshots__/rssexpanded-3/50/pure-0.json index b5c1f867..7367c895 100644 --- a/tests/__snapshots__/rssexpanded-3/50/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/50/pure-0.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/50/slow-0.json b/tests/__snapshots__/rssexpanded-3/50/slow-0.json index 56036d0f..3a4016d2 100644 --- a/tests/__snapshots__/rssexpanded-3/50/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/50/slow-0.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/50/slow-180.json b/tests/__snapshots__/rssexpanded-3/50/slow-180.json index 391b60cd..7cc46013 100644 --- a/tests/__snapshots__/rssexpanded-3/50/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/50/slow-180.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/51/fast-0.json b/tests/__snapshots__/rssexpanded-3/51/fast-0.json index 34e9312f..8d9b6f49 100644 --- a/tests/__snapshots__/rssexpanded-3/51/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/51/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/51/fast-180.json b/tests/__snapshots__/rssexpanded-3/51/fast-180.json index 77f30c07..e80bd370 100644 --- a/tests/__snapshots__/rssexpanded-3/51/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/51/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/51/pure-0.json b/tests/__snapshots__/rssexpanded-3/51/pure-0.json index fe2c98f1..3198f164 100644 --- a/tests/__snapshots__/rssexpanded-3/51/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/51/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/51/slow-0.json b/tests/__snapshots__/rssexpanded-3/51/slow-0.json index ff13bfa4..8e1508dd 100644 --- a/tests/__snapshots__/rssexpanded-3/51/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/51/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/51/slow-180.json b/tests/__snapshots__/rssexpanded-3/51/slow-180.json index adb054b5..9b8dfc3f 100644 --- a/tests/__snapshots__/rssexpanded-3/51/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/51/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/52/fast-0.json b/tests/__snapshots__/rssexpanded-3/52/fast-0.json index 6102f569..ac096009 100644 --- a/tests/__snapshots__/rssexpanded-3/52/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/52/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/52/fast-180.json b/tests/__snapshots__/rssexpanded-3/52/fast-180.json index cba48592..376d7c74 100644 --- a/tests/__snapshots__/rssexpanded-3/52/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/52/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/52/pure-0.json b/tests/__snapshots__/rssexpanded-3/52/pure-0.json index ce4da3d8..b156141e 100644 --- a/tests/__snapshots__/rssexpanded-3/52/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/52/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/52/slow-0.json b/tests/__snapshots__/rssexpanded-3/52/slow-0.json index 63e93a7c..2bbc2fe1 100644 --- a/tests/__snapshots__/rssexpanded-3/52/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/52/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/52/slow-180.json b/tests/__snapshots__/rssexpanded-3/52/slow-180.json index 5550f28c..838fa2bf 100644 --- a/tests/__snapshots__/rssexpanded-3/52/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/52/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/53/fast-0.json b/tests/__snapshots__/rssexpanded-3/53/fast-0.json index a68a2da4..6b4aa665 100644 --- a/tests/__snapshots__/rssexpanded-3/53/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/53/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/53/fast-180.json b/tests/__snapshots__/rssexpanded-3/53/fast-180.json index 508219c1..e44c7136 100644 --- a/tests/__snapshots__/rssexpanded-3/53/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/53/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/53/pure-0.json b/tests/__snapshots__/rssexpanded-3/53/pure-0.json index 7c2b0f62..8ae1c076 100644 --- a/tests/__snapshots__/rssexpanded-3/53/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/53/pure-0.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/53/slow-0.json b/tests/__snapshots__/rssexpanded-3/53/slow-0.json index 149c4f7c..c2805913 100644 --- a/tests/__snapshots__/rssexpanded-3/53/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/53/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/53/slow-180.json b/tests/__snapshots__/rssexpanded-3/53/slow-180.json index 33dbe4ce..49bcbb2b 100644 --- a/tests/__snapshots__/rssexpanded-3/53/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/53/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/54/fast-0.json b/tests/__snapshots__/rssexpanded-3/54/fast-0.json index 8c8879ba..1d8127c3 100644 --- a/tests/__snapshots__/rssexpanded-3/54/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/54/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/54/fast-180.json b/tests/__snapshots__/rssexpanded-3/54/fast-180.json index 851e253d..49289dd5 100644 --- a/tests/__snapshots__/rssexpanded-3/54/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/54/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/54/pure-0.json b/tests/__snapshots__/rssexpanded-3/54/pure-0.json index 53ca9030..c06f6740 100644 --- a/tests/__snapshots__/rssexpanded-3/54/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/54/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/54/slow-0.json b/tests/__snapshots__/rssexpanded-3/54/slow-0.json index 1cc0086b..b2bb4ec1 100644 --- a/tests/__snapshots__/rssexpanded-3/54/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/54/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/54/slow-180.json b/tests/__snapshots__/rssexpanded-3/54/slow-180.json index 54a6e617..0381c896 100644 --- a/tests/__snapshots__/rssexpanded-3/54/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/54/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/55/fast-0.json b/tests/__snapshots__/rssexpanded-3/55/fast-0.json index 72acccc8..e0ad2dda 100644 --- a/tests/__snapshots__/rssexpanded-3/55/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/55/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/55/fast-180.json b/tests/__snapshots__/rssexpanded-3/55/fast-180.json index eaba9480..a427caf8 100644 --- a/tests/__snapshots__/rssexpanded-3/55/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/55/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/55/pure-0.json b/tests/__snapshots__/rssexpanded-3/55/pure-0.json index 35753e82..745f85e1 100644 --- a/tests/__snapshots__/rssexpanded-3/55/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/55/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/55/slow-0.json b/tests/__snapshots__/rssexpanded-3/55/slow-0.json index b7b4fbe9..fbaa24c9 100644 --- a/tests/__snapshots__/rssexpanded-3/55/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/55/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/55/slow-180.json b/tests/__snapshots__/rssexpanded-3/55/slow-180.json index 33c83a5c..014b0ac1 100644 --- a/tests/__snapshots__/rssexpanded-3/55/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/55/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/56/fast-0.json b/tests/__snapshots__/rssexpanded-3/56/fast-0.json index 2e1b8cbb..55772aec 100644 --- a/tests/__snapshots__/rssexpanded-3/56/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/56/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/56/fast-180.json b/tests/__snapshots__/rssexpanded-3/56/fast-180.json index a80c97d4..f4be6a3a 100644 --- a/tests/__snapshots__/rssexpanded-3/56/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/56/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/56/pure-0.json b/tests/__snapshots__/rssexpanded-3/56/pure-0.json index d94abbc4..59f667ea 100644 --- a/tests/__snapshots__/rssexpanded-3/56/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/56/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/56/slow-0.json b/tests/__snapshots__/rssexpanded-3/56/slow-0.json index 882b8673..d98b8252 100644 --- a/tests/__snapshots__/rssexpanded-3/56/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/56/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/56/slow-180.json b/tests/__snapshots__/rssexpanded-3/56/slow-180.json index dd6faadb..2ff58f35 100644 --- a/tests/__snapshots__/rssexpanded-3/56/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/56/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/57/fast-0.json b/tests/__snapshots__/rssexpanded-3/57/fast-0.json index 9dedcd8b..32c64163 100644 --- a/tests/__snapshots__/rssexpanded-3/57/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/57/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/57/fast-180.json b/tests/__snapshots__/rssexpanded-3/57/fast-180.json index 081da9ef..96177146 100644 --- a/tests/__snapshots__/rssexpanded-3/57/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/57/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/57/pure-0.json b/tests/__snapshots__/rssexpanded-3/57/pure-0.json index c24d4317..0dfe33f1 100644 --- a/tests/__snapshots__/rssexpanded-3/57/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/57/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/57/slow-0.json b/tests/__snapshots__/rssexpanded-3/57/slow-0.json index 3100cd27..8114eb5e 100644 --- a/tests/__snapshots__/rssexpanded-3/57/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/57/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/57/slow-180.json b/tests/__snapshots__/rssexpanded-3/57/slow-180.json index 3881d3f1..601bf266 100644 --- a/tests/__snapshots__/rssexpanded-3/57/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/57/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/58/fast-0.json b/tests/__snapshots__/rssexpanded-3/58/fast-0.json index c1a61d45..58a023b6 100644 --- a/tests/__snapshots__/rssexpanded-3/58/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/58/fast-0.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/58/fast-180.json b/tests/__snapshots__/rssexpanded-3/58/fast-180.json index 2b1d8480..ec4be8f7 100644 --- a/tests/__snapshots__/rssexpanded-3/58/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/58/fast-180.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/58/pure-0.json b/tests/__snapshots__/rssexpanded-3/58/pure-0.json index 9d0b0913..872778f6 100644 --- a/tests/__snapshots__/rssexpanded-3/58/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/58/pure-0.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/58/slow-0.json b/tests/__snapshots__/rssexpanded-3/58/slow-0.json index 0d40eeb9..6e70ec5e 100644 --- a/tests/__snapshots__/rssexpanded-3/58/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/58/slow-0.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/58/slow-180.json b/tests/__snapshots__/rssexpanded-3/58/slow-180.json index 094c40ba..3a6c20c8 100644 --- a/tests/__snapshots__/rssexpanded-3/58/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/58/slow-180.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/59/fast-0.json b/tests/__snapshots__/rssexpanded-3/59/fast-0.json index 1d58fb36..d9788009 100644 --- a/tests/__snapshots__/rssexpanded-3/59/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/59/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/59/fast-180.json b/tests/__snapshots__/rssexpanded-3/59/fast-180.json index b55b5eb7..41a2b91e 100644 --- a/tests/__snapshots__/rssexpanded-3/59/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/59/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/59/pure-0.json b/tests/__snapshots__/rssexpanded-3/59/pure-0.json index bd7380f4..448a887b 100644 --- a/tests/__snapshots__/rssexpanded-3/59/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/59/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/59/slow-0.json b/tests/__snapshots__/rssexpanded-3/59/slow-0.json index 323349e1..1b4ad8a9 100644 --- a/tests/__snapshots__/rssexpanded-3/59/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/59/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/59/slow-180.json b/tests/__snapshots__/rssexpanded-3/59/slow-180.json index 4132e2b5..eb0b7a6f 100644 --- a/tests/__snapshots__/rssexpanded-3/59/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/59/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/6/fast-0.json b/tests/__snapshots__/rssexpanded-3/6/fast-0.json index ad95cfbb..7b6a7966 100644 --- a/tests/__snapshots__/rssexpanded-3/6/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/6/fast-180.json b/tests/__snapshots__/rssexpanded-3/6/fast-180.json index fcbe8e0f..c2e6564a 100644 --- a/tests/__snapshots__/rssexpanded-3/6/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/6/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/6/pure-0.json b/tests/__snapshots__/rssexpanded-3/6/pure-0.json index e648475b..0c0d73fb 100644 --- a/tests/__snapshots__/rssexpanded-3/6/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/6/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/6/slow-0.json b/tests/__snapshots__/rssexpanded-3/6/slow-0.json index d7a54326..56c3693c 100644 --- a/tests/__snapshots__/rssexpanded-3/6/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/6/slow-180.json b/tests/__snapshots__/rssexpanded-3/6/slow-180.json index b6696ac6..9fa401e5 100644 --- a/tests/__snapshots__/rssexpanded-3/6/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/6/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/60/fast-0.json b/tests/__snapshots__/rssexpanded-3/60/fast-0.json index 3f8f901b..e2e801d1 100644 --- a/tests/__snapshots__/rssexpanded-3/60/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/60/fast-0.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/60/fast-180.json b/tests/__snapshots__/rssexpanded-3/60/fast-180.json index 1846e1e5..42f5a2f0 100644 --- a/tests/__snapshots__/rssexpanded-3/60/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/60/fast-180.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/60/pure-0.json b/tests/__snapshots__/rssexpanded-3/60/pure-0.json index acc378d6..6f67943a 100644 --- a/tests/__snapshots__/rssexpanded-3/60/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/60/pure-0.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/60/slow-0.json b/tests/__snapshots__/rssexpanded-3/60/slow-0.json index 79faa360..21a7495d 100644 --- a/tests/__snapshots__/rssexpanded-3/60/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/60/slow-0.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/60/slow-180.json b/tests/__snapshots__/rssexpanded-3/60/slow-180.json index 27c78384..9ed6a861 100644 --- a/tests/__snapshots__/rssexpanded-3/60/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/60/slow-180.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/61/fast-0.json b/tests/__snapshots__/rssexpanded-3/61/fast-0.json index 4e2a97d2..09ab2668 100644 --- a/tests/__snapshots__/rssexpanded-3/61/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/61/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/61/fast-180.json b/tests/__snapshots__/rssexpanded-3/61/fast-180.json index e88662b0..c1d49114 100644 --- a/tests/__snapshots__/rssexpanded-3/61/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/61/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/61/pure-0.json b/tests/__snapshots__/rssexpanded-3/61/pure-0.json index 6b17c48d..b0231193 100644 --- a/tests/__snapshots__/rssexpanded-3/61/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/61/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/61/slow-0.json b/tests/__snapshots__/rssexpanded-3/61/slow-0.json index cf66d8b9..a5439f92 100644 --- a/tests/__snapshots__/rssexpanded-3/61/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/61/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/61/slow-180.json b/tests/__snapshots__/rssexpanded-3/61/slow-180.json index 558bac05..ac03c495 100644 --- a/tests/__snapshots__/rssexpanded-3/61/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/61/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/62/fast-0.json b/tests/__snapshots__/rssexpanded-3/62/fast-0.json index fce6071d..8de49367 100644 --- a/tests/__snapshots__/rssexpanded-3/62/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/62/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/62/fast-180.json b/tests/__snapshots__/rssexpanded-3/62/fast-180.json index 5a198f31..50dd9f2b 100644 --- a/tests/__snapshots__/rssexpanded-3/62/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/62/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/62/pure-0.json b/tests/__snapshots__/rssexpanded-3/62/pure-0.json index e7a1c2f8..95b8310c 100644 --- a/tests/__snapshots__/rssexpanded-3/62/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/62/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/62/slow-0.json b/tests/__snapshots__/rssexpanded-3/62/slow-0.json index b519e6bd..01e9b814 100644 --- a/tests/__snapshots__/rssexpanded-3/62/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/62/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/62/slow-180.json b/tests/__snapshots__/rssexpanded-3/62/slow-180.json index 791673cf..79d2a387 100644 --- a/tests/__snapshots__/rssexpanded-3/62/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/62/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/63/fast-0.json b/tests/__snapshots__/rssexpanded-3/63/fast-0.json index 19fcd624..06030215 100644 --- a/tests/__snapshots__/rssexpanded-3/63/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/63/fast-0.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/63/fast-180.json b/tests/__snapshots__/rssexpanded-3/63/fast-180.json index de2325fb..4b2e03fe 100644 --- a/tests/__snapshots__/rssexpanded-3/63/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/63/fast-180.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/63/pure-0.json b/tests/__snapshots__/rssexpanded-3/63/pure-0.json index bcc817cc..a01136a5 100644 --- a/tests/__snapshots__/rssexpanded-3/63/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/63/pure-0.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/63/slow-0.json b/tests/__snapshots__/rssexpanded-3/63/slow-0.json index 31a8b951..5e69215d 100644 --- a/tests/__snapshots__/rssexpanded-3/63/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/63/slow-0.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/63/slow-180.json b/tests/__snapshots__/rssexpanded-3/63/slow-180.json index 23c8feae..ea217c65 100644 --- a/tests/__snapshots__/rssexpanded-3/63/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/63/slow-180.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/64/fast-0.json b/tests/__snapshots__/rssexpanded-3/64/fast-0.json index c702a4b6..5203ee61 100644 --- a/tests/__snapshots__/rssexpanded-3/64/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/64/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/64/fast-180.json b/tests/__snapshots__/rssexpanded-3/64/fast-180.json index 5e1c884c..82618c4c 100644 --- a/tests/__snapshots__/rssexpanded-3/64/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/64/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/64/pure-0.json b/tests/__snapshots__/rssexpanded-3/64/pure-0.json index f0fe037f..68797e82 100644 --- a/tests/__snapshots__/rssexpanded-3/64/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/64/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/64/slow-0.json b/tests/__snapshots__/rssexpanded-3/64/slow-0.json index 3c5c9705..cfd55a35 100644 --- a/tests/__snapshots__/rssexpanded-3/64/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/64/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/64/slow-180.json b/tests/__snapshots__/rssexpanded-3/64/slow-180.json index a6436cf6..533d642c 100644 --- a/tests/__snapshots__/rssexpanded-3/64/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/64/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/65/fast-0.json b/tests/__snapshots__/rssexpanded-3/65/fast-0.json index bf5390ae..dd7ded2a 100644 --- a/tests/__snapshots__/rssexpanded-3/65/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/65/fast-0.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/65/fast-180.json b/tests/__snapshots__/rssexpanded-3/65/fast-180.json index 6847c5ef..b2385654 100644 --- a/tests/__snapshots__/rssexpanded-3/65/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/65/fast-180.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/65/pure-0.json b/tests/__snapshots__/rssexpanded-3/65/pure-0.json index a19960fb..a776008a 100644 --- a/tests/__snapshots__/rssexpanded-3/65/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/65/pure-0.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/65/slow-0.json b/tests/__snapshots__/rssexpanded-3/65/slow-0.json index 059df64f..d9bc58d8 100644 --- a/tests/__snapshots__/rssexpanded-3/65/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/65/slow-0.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/65/slow-180.json b/tests/__snapshots__/rssexpanded-3/65/slow-180.json index 55d29167..2919b4e2 100644 --- a/tests/__snapshots__/rssexpanded-3/65/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/65/slow-180.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/66/fast-0.json b/tests/__snapshots__/rssexpanded-3/66/fast-0.json index d66a216e..85340f01 100644 --- a/tests/__snapshots__/rssexpanded-3/66/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/66/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a33ea4d", "bytesECI": "85d6c6e", "text": "01900123456789083922795888888888888888888888888888888888888888888888888888", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/66/fast-180.json b/tests/__snapshots__/rssexpanded-3/66/fast-180.json index e617f97a..c77bc668 100644 --- a/tests/__snapshots__/rssexpanded-3/66/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/66/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a33ea4d", "bytesECI": "85d6c6e", "text": "01900123456789083922795888888888888888888888888888888888888888888888888888", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/66/pure-0.json b/tests/__snapshots__/rssexpanded-3/66/pure-0.json index 2ded4a0f..85ef3966 100644 --- a/tests/__snapshots__/rssexpanded-3/66/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/66/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a33ea4d", "bytesECI": "85d6c6e", "text": "01900123456789083922795888888888888888888888888888888888888888888888888888", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/66/slow-0.json b/tests/__snapshots__/rssexpanded-3/66/slow-0.json index d90127c8..27376e3e 100644 --- a/tests/__snapshots__/rssexpanded-3/66/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/66/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a33ea4d", "bytesECI": "85d6c6e", "text": "01900123456789083922795888888888888888888888888888888888888888888888888888", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/66/slow-180.json b/tests/__snapshots__/rssexpanded-3/66/slow-180.json index 41926d53..5b107f99 100644 --- a/tests/__snapshots__/rssexpanded-3/66/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/66/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a33ea4d", "bytesECI": "85d6c6e", "text": "01900123456789083922795888888888888888888888888888888888888888888888888888", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/67/fast-0.json b/tests/__snapshots__/rssexpanded-3/67/fast-0.json index fd3e786a..cee6964a 100644 --- a/tests/__snapshots__/rssexpanded-3/67/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/67/fast-0.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/67/fast-180.json b/tests/__snapshots__/rssexpanded-3/67/fast-180.json index cf237b22..4588d28a 100644 --- a/tests/__snapshots__/rssexpanded-3/67/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/67/fast-180.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/67/pure-0.json b/tests/__snapshots__/rssexpanded-3/67/pure-0.json index e62fcbc3..7bd701ac 100644 --- a/tests/__snapshots__/rssexpanded-3/67/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/67/pure-0.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/67/slow-0.json b/tests/__snapshots__/rssexpanded-3/67/slow-0.json index 169e018d..6c02e86d 100644 --- a/tests/__snapshots__/rssexpanded-3/67/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/67/slow-0.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/67/slow-180.json b/tests/__snapshots__/rssexpanded-3/67/slow-180.json index 8bc57b66..9076cba1 100644 --- a/tests/__snapshots__/rssexpanded-3/67/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/67/slow-180.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/68/fast-0.json b/tests/__snapshots__/rssexpanded-3/68/fast-0.json index 338a84b8..e64e66c7 100644 --- a/tests/__snapshots__/rssexpanded-3/68/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/68/fast-0.json @@ -5,7 +5,7 @@ "bytes": "968aa77", "bytesECI": "16cc570", "text": "01900123456789083932040EUR", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/68/fast-180.json b/tests/__snapshots__/rssexpanded-3/68/fast-180.json index e0cd5dcc..b0b3d7ba 100644 --- a/tests/__snapshots__/rssexpanded-3/68/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/68/fast-180.json @@ -5,7 +5,7 @@ "bytes": "968aa77", "bytesECI": "16cc570", "text": "01900123456789083932040EUR", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/68/pure-0.json b/tests/__snapshots__/rssexpanded-3/68/pure-0.json index 7bfbb7ec..c709589c 100644 --- a/tests/__snapshots__/rssexpanded-3/68/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/68/pure-0.json @@ -5,7 +5,7 @@ "bytes": "968aa77", "bytesECI": "16cc570", "text": "01900123456789083932040EUR", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/68/slow-0.json b/tests/__snapshots__/rssexpanded-3/68/slow-0.json index 5175db36..cbef52ea 100644 --- a/tests/__snapshots__/rssexpanded-3/68/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/68/slow-0.json @@ -5,7 +5,7 @@ "bytes": "968aa77", "bytesECI": "16cc570", "text": "01900123456789083932040EUR", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/68/slow-180.json b/tests/__snapshots__/rssexpanded-3/68/slow-180.json index 645183fb..148a224c 100644 --- a/tests/__snapshots__/rssexpanded-3/68/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/68/slow-180.json @@ -5,7 +5,7 @@ "bytes": "968aa77", "bytesECI": "16cc570", "text": "01900123456789083932040EUR", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/69/fast-0.json b/tests/__snapshots__/rssexpanded-3/69/fast-0.json index 17668ef0..b9259e03 100644 --- a/tests/__snapshots__/rssexpanded-3/69/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/69/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f07fd07", "bytesECI": "0047330", "text": "0190012345678908393204055GBP", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/69/fast-180.json b/tests/__snapshots__/rssexpanded-3/69/fast-180.json index 489fac49..58fcafa7 100644 --- a/tests/__snapshots__/rssexpanded-3/69/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/69/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f07fd07", "bytesECI": "0047330", "text": "0190012345678908393204055GBP", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/69/pure-0.json b/tests/__snapshots__/rssexpanded-3/69/pure-0.json index c610d219..f7126ecd 100644 --- a/tests/__snapshots__/rssexpanded-3/69/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/69/pure-0.json @@ -5,7 +5,7 @@ "bytes": "f07fd07", "bytesECI": "0047330", "text": "0190012345678908393204055GBP", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/69/slow-0.json b/tests/__snapshots__/rssexpanded-3/69/slow-0.json index 46acd8a1..e16ae764 100644 --- a/tests/__snapshots__/rssexpanded-3/69/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/69/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f07fd07", "bytesECI": "0047330", "text": "0190012345678908393204055GBP", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/69/slow-180.json b/tests/__snapshots__/rssexpanded-3/69/slow-180.json index 0d2a9454..d7ef46a4 100644 --- a/tests/__snapshots__/rssexpanded-3/69/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/69/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f07fd07", "bytesECI": "0047330", "text": "0190012345678908393204055GBP", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/7/fast-0.json b/tests/__snapshots__/rssexpanded-3/7/fast-0.json index 29827924..2fc56888 100644 --- a/tests/__snapshots__/rssexpanded-3/7/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/7/fast-180.json b/tests/__snapshots__/rssexpanded-3/7/fast-180.json index 06c49c3d..0c8af967 100644 --- a/tests/__snapshots__/rssexpanded-3/7/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/7/pure-0.json b/tests/__snapshots__/rssexpanded-3/7/pure-0.json index b7246abf..18673b9a 100644 --- a/tests/__snapshots__/rssexpanded-3/7/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/7/pure-0.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/7/slow-0.json b/tests/__snapshots__/rssexpanded-3/7/slow-0.json index a0f0c6a3..d83ae767 100644 --- a/tests/__snapshots__/rssexpanded-3/7/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/7/slow-180.json b/tests/__snapshots__/rssexpanded-3/7/slow-180.json index 3fb456b2..2a0e5eb6 100644 --- a/tests/__snapshots__/rssexpanded-3/7/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/70/fast-0.json b/tests/__snapshots__/rssexpanded-3/70/fast-0.json index 65aa1984..19447ffc 100644 --- a/tests/__snapshots__/rssexpanded-3/70/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/70/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d037bab", "bytesECI": "03978bc", "text": "0190012345678908393204066USD778899", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/70/fast-180.json b/tests/__snapshots__/rssexpanded-3/70/fast-180.json index 88189012..5219b8b7 100644 --- a/tests/__snapshots__/rssexpanded-3/70/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/70/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d037bab", "bytesECI": "03978bc", "text": "0190012345678908393204066USD778899", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/70/pure-0.json b/tests/__snapshots__/rssexpanded-3/70/pure-0.json index 2bebc9fc..4d6c305b 100644 --- a/tests/__snapshots__/rssexpanded-3/70/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/70/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d037bab", "bytesECI": "03978bc", "text": "0190012345678908393204066USD778899", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/70/slow-0.json b/tests/__snapshots__/rssexpanded-3/70/slow-0.json index ea51d12e..a5672522 100644 --- a/tests/__snapshots__/rssexpanded-3/70/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/70/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d037bab", "bytesECI": "03978bc", "text": "0190012345678908393204066USD778899", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/70/slow-180.json b/tests/__snapshots__/rssexpanded-3/70/slow-180.json index b71a0950..3c5dc454 100644 --- a/tests/__snapshots__/rssexpanded-3/70/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/70/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d037bab", "bytesECI": "03978bc", "text": "0190012345678908393204066USD778899", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/71/fast-0.json b/tests/__snapshots__/rssexpanded-3/71/fast-0.json index aea19100..198a1bdb 100644 --- a/tests/__snapshots__/rssexpanded-3/71/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/71/fast-0.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/71/fast-180.json b/tests/__snapshots__/rssexpanded-3/71/fast-180.json index c88bee87..851f4630 100644 --- a/tests/__snapshots__/rssexpanded-3/71/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/71/fast-180.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/71/pure-0.json b/tests/__snapshots__/rssexpanded-3/71/pure-0.json index 6f171a68..23b0d294 100644 --- a/tests/__snapshots__/rssexpanded-3/71/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/71/pure-0.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/71/slow-0.json b/tests/__snapshots__/rssexpanded-3/71/slow-0.json index 1a483cb1..a0c36684 100644 --- a/tests/__snapshots__/rssexpanded-3/71/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/71/slow-0.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/71/slow-180.json b/tests/__snapshots__/rssexpanded-3/71/slow-180.json index e81e3d75..fd431df0 100644 --- a/tests/__snapshots__/rssexpanded-3/71/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/71/slow-180.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/72/fast-0.json b/tests/__snapshots__/rssexpanded-3/72/fast-0.json index b4715d70..dc5f4fed 100644 --- a/tests/__snapshots__/rssexpanded-3/72/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/72/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1e8f809", "bytesECI": "1b74f40", "text": "011234567890123110UNIVERSITY-OF-DEUSTO", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/72/fast-180.json b/tests/__snapshots__/rssexpanded-3/72/fast-180.json index 44314451..5cd3f381 100644 --- a/tests/__snapshots__/rssexpanded-3/72/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/72/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1e8f809", "bytesECI": "1b74f40", "text": "011234567890123110UNIVERSITY-OF-DEUSTO", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/72/pure-0.json b/tests/__snapshots__/rssexpanded-3/72/pure-0.json index 608b792c..28dc01e9 100644 --- a/tests/__snapshots__/rssexpanded-3/72/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/72/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1e8f809", "bytesECI": "1b74f40", "text": "011234567890123110UNIVERSITY-OF-DEUSTO", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/72/slow-0.json b/tests/__snapshots__/rssexpanded-3/72/slow-0.json index c7989518..c0507697 100644 --- a/tests/__snapshots__/rssexpanded-3/72/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/72/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1e8f809", "bytesECI": "1b74f40", "text": "011234567890123110UNIVERSITY-OF-DEUSTO", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/72/slow-180.json b/tests/__snapshots__/rssexpanded-3/72/slow-180.json index 1edef7a5..d4f6d258 100644 --- a/tests/__snapshots__/rssexpanded-3/72/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/72/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1e8f809", "bytesECI": "1b74f40", "text": "011234567890123110UNIVERSITY-OF-DEUSTO", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/73/fast-0.json b/tests/__snapshots__/rssexpanded-3/73/fast-0.json index e5e3c6ee..9fe68a1a 100644 --- a/tests/__snapshots__/rssexpanded-3/73/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/73/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d3e34e0", "bytesECI": "99e7317", "text": "011234567890123110PIRAMIDE-PROJECT", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/73/fast-180.json b/tests/__snapshots__/rssexpanded-3/73/fast-180.json index 7f44320f..0fdb3203 100644 --- a/tests/__snapshots__/rssexpanded-3/73/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/73/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d3e34e0", "bytesECI": "99e7317", "text": "011234567890123110PIRAMIDE-PROJECT", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/73/pure-0.json b/tests/__snapshots__/rssexpanded-3/73/pure-0.json index f9068bb6..73ef5fa0 100644 --- a/tests/__snapshots__/rssexpanded-3/73/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/73/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d3e34e0", "bytesECI": "99e7317", "text": "011234567890123110PIRAMIDE-PROJECT", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/73/slow-0.json b/tests/__snapshots__/rssexpanded-3/73/slow-0.json index 77fb18f4..0ab3a308 100644 --- a/tests/__snapshots__/rssexpanded-3/73/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/73/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d3e34e0", "bytesECI": "99e7317", "text": "011234567890123110PIRAMIDE-PROJECT", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/73/slow-180.json b/tests/__snapshots__/rssexpanded-3/73/slow-180.json index ddd8e8ea..4e5e4980 100644 --- a/tests/__snapshots__/rssexpanded-3/73/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/73/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d3e34e0", "bytesECI": "99e7317", "text": "011234567890123110PIRAMIDE-PROJECT", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/74/fast-0.json b/tests/__snapshots__/rssexpanded-3/74/fast-0.json index 2b1efc22..02f128e5 100644 --- a/tests/__snapshots__/rssexpanded-3/74/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/74/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/74/fast-180.json b/tests/__snapshots__/rssexpanded-3/74/fast-180.json index a2445454..1f05dd87 100644 --- a/tests/__snapshots__/rssexpanded-3/74/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/74/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/74/pure-0.json b/tests/__snapshots__/rssexpanded-3/74/pure-0.json index caf53ca7..2f90bb3e 100644 --- a/tests/__snapshots__/rssexpanded-3/74/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/74/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/74/slow-0.json b/tests/__snapshots__/rssexpanded-3/74/slow-0.json index 13d36752..cd7e029e 100644 --- a/tests/__snapshots__/rssexpanded-3/74/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/74/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/74/slow-180.json b/tests/__snapshots__/rssexpanded-3/74/slow-180.json index ddab9a4f..923e0f1e 100644 --- a/tests/__snapshots__/rssexpanded-3/74/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/74/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/75/fast-0.json b/tests/__snapshots__/rssexpanded-3/75/fast-0.json index 4c156b65..4701b4d4 100644 --- a/tests/__snapshots__/rssexpanded-3/75/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/75/fast-0.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/75/fast-180.json b/tests/__snapshots__/rssexpanded-3/75/fast-180.json index 42534bb4..54c5034e 100644 --- a/tests/__snapshots__/rssexpanded-3/75/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/75/fast-180.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/75/pure-0.json b/tests/__snapshots__/rssexpanded-3/75/pure-0.json index c13fbc9e..cdbf9b6e 100644 --- a/tests/__snapshots__/rssexpanded-3/75/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/75/pure-0.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/75/slow-0.json b/tests/__snapshots__/rssexpanded-3/75/slow-0.json index cbfe16e3..42850aaa 100644 --- a/tests/__snapshots__/rssexpanded-3/75/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/75/slow-0.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/75/slow-180.json b/tests/__snapshots__/rssexpanded-3/75/slow-180.json index 1aa77f31..4e890e8e 100644 --- a/tests/__snapshots__/rssexpanded-3/75/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/75/slow-180.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/76/fast-0.json b/tests/__snapshots__/rssexpanded-3/76/fast-0.json index fd61df59..f07d119c 100644 --- a/tests/__snapshots__/rssexpanded-3/76/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/76/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9f6bd4e", "bytesECI": "45ae55b", "text": "1599123131030017501012A422123211234564230123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/76/fast-180.json b/tests/__snapshots__/rssexpanded-3/76/fast-180.json index 17b78ea6..b81da30a 100644 --- a/tests/__snapshots__/rssexpanded-3/76/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/76/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9f6bd4e", "bytesECI": "45ae55b", "text": "1599123131030017501012A422123211234564230123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/76/pure-0.json b/tests/__snapshots__/rssexpanded-3/76/pure-0.json index 5c8b1812..efae45d5 100644 --- a/tests/__snapshots__/rssexpanded-3/76/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/76/pure-0.json @@ -5,7 +5,7 @@ "bytes": "9f6bd4e", "bytesECI": "45ae55b", "text": "1599123131030017501012A422123211234564230123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/76/slow-0.json b/tests/__snapshots__/rssexpanded-3/76/slow-0.json index a49252f5..ff0ba542 100644 --- a/tests/__snapshots__/rssexpanded-3/76/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/76/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9f6bd4e", "bytesECI": "45ae55b", "text": "1599123131030017501012A422123211234564230123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/76/slow-180.json b/tests/__snapshots__/rssexpanded-3/76/slow-180.json index f99d847f..0468dedc 100644 --- a/tests/__snapshots__/rssexpanded-3/76/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/76/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9f6bd4e", "bytesECI": "45ae55b", "text": "1599123131030017501012A422123211234564230123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/77/fast-0.json b/tests/__snapshots__/rssexpanded-3/77/fast-0.json index dcf906d9..98b0e8f1 100644 --- a/tests/__snapshots__/rssexpanded-3/77/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/77/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/77/fast-180.json b/tests/__snapshots__/rssexpanded-3/77/fast-180.json index 1417f885..2e5dbab6 100644 --- a/tests/__snapshots__/rssexpanded-3/77/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/77/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/77/pure-0.json b/tests/__snapshots__/rssexpanded-3/77/pure-0.json index 9d0638cd..ef050eb5 100644 --- a/tests/__snapshots__/rssexpanded-3/77/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/77/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/77/slow-0.json b/tests/__snapshots__/rssexpanded-3/77/slow-0.json index fb5483aa..90f9fc24 100644 --- a/tests/__snapshots__/rssexpanded-3/77/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/77/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/77/slow-180.json b/tests/__snapshots__/rssexpanded-3/77/slow-180.json index ec276ba8..eeb7a8b4 100644 --- a/tests/__snapshots__/rssexpanded-3/77/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/77/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/78/fast-0.json b/tests/__snapshots__/rssexpanded-3/78/fast-0.json index ec70bfa2..e122c308 100644 --- a/tests/__snapshots__/rssexpanded-3/78/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/78/fast-0.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/78/fast-180.json b/tests/__snapshots__/rssexpanded-3/78/fast-180.json index aa812282..46f011f5 100644 --- a/tests/__snapshots__/rssexpanded-3/78/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/78/fast-180.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/78/pure-0.json b/tests/__snapshots__/rssexpanded-3/78/pure-0.json index d82e4adc..66aa8aca 100644 --- a/tests/__snapshots__/rssexpanded-3/78/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/78/pure-0.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/78/slow-0.json b/tests/__snapshots__/rssexpanded-3/78/slow-0.json index 0d31cc38..4f6b9a92 100644 --- a/tests/__snapshots__/rssexpanded-3/78/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/78/slow-0.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/78/slow-180.json b/tests/__snapshots__/rssexpanded-3/78/slow-180.json index 3627d4f1..0aa8a1d5 100644 --- a/tests/__snapshots__/rssexpanded-3/78/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/78/slow-180.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/79/fast-0.json b/tests/__snapshots__/rssexpanded-3/79/fast-0.json index 0f8f0847..efbf523b 100644 --- a/tests/__snapshots__/rssexpanded-3/79/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/79/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/79/fast-180.json b/tests/__snapshots__/rssexpanded-3/79/fast-180.json index 8b73d787..08963486 100644 --- a/tests/__snapshots__/rssexpanded-3/79/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/79/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/79/pure-0.json b/tests/__snapshots__/rssexpanded-3/79/pure-0.json index 9dbe8bd3..b8f9e4a8 100644 --- a/tests/__snapshots__/rssexpanded-3/79/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/79/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/79/slow-0.json b/tests/__snapshots__/rssexpanded-3/79/slow-0.json index 5aaf1260..b7bbb600 100644 --- a/tests/__snapshots__/rssexpanded-3/79/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/79/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/79/slow-180.json b/tests/__snapshots__/rssexpanded-3/79/slow-180.json index eb3adfdf..23303dca 100644 --- a/tests/__snapshots__/rssexpanded-3/79/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/79/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/8/fast-0.json b/tests/__snapshots__/rssexpanded-3/8/fast-0.json index 826a03ff..befd373b 100644 --- a/tests/__snapshots__/rssexpanded-3/8/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/8/fast-180.json b/tests/__snapshots__/rssexpanded-3/8/fast-180.json index b91dec01..bd27ca20 100644 --- a/tests/__snapshots__/rssexpanded-3/8/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/8/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/8/pure-0.json b/tests/__snapshots__/rssexpanded-3/8/pure-0.json index 8ee67ca6..18083b14 100644 --- a/tests/__snapshots__/rssexpanded-3/8/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/8/slow-0.json b/tests/__snapshots__/rssexpanded-3/8/slow-0.json index e2207c48..e5690a94 100644 --- a/tests/__snapshots__/rssexpanded-3/8/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/8/slow-180.json b/tests/__snapshots__/rssexpanded-3/8/slow-180.json index 9d36e026..9cb6dc56 100644 --- a/tests/__snapshots__/rssexpanded-3/8/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/80/fast-0.json b/tests/__snapshots__/rssexpanded-3/80/fast-0.json index fcdf71b5..6a0aecd1 100644 --- a/tests/__snapshots__/rssexpanded-3/80/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/80/fast-0.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/80/fast-180.json b/tests/__snapshots__/rssexpanded-3/80/fast-180.json index 81017b65..1e0fae0b 100644 --- a/tests/__snapshots__/rssexpanded-3/80/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/80/fast-180.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/80/pure-0.json b/tests/__snapshots__/rssexpanded-3/80/pure-0.json index 512b40e3..7867ef92 100644 --- a/tests/__snapshots__/rssexpanded-3/80/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/80/pure-0.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/80/slow-0.json b/tests/__snapshots__/rssexpanded-3/80/slow-0.json index 229b5e02..a032974f 100644 --- a/tests/__snapshots__/rssexpanded-3/80/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/80/slow-0.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/80/slow-180.json b/tests/__snapshots__/rssexpanded-3/80/slow-180.json index ce95d551..48e9a119 100644 --- a/tests/__snapshots__/rssexpanded-3/80/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/80/slow-180.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/81/fast-0.json b/tests/__snapshots__/rssexpanded-3/81/fast-0.json index cbffc9b6..8ad2e7d5 100644 --- a/tests/__snapshots__/rssexpanded-3/81/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/81/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/81/fast-180.json b/tests/__snapshots__/rssexpanded-3/81/fast-180.json index eee231e6..b4c10087 100644 --- a/tests/__snapshots__/rssexpanded-3/81/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/81/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/81/pure-0.json b/tests/__snapshots__/rssexpanded-3/81/pure-0.json index 0d7fde54..03f297d3 100644 --- a/tests/__snapshots__/rssexpanded-3/81/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/81/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/81/slow-0.json b/tests/__snapshots__/rssexpanded-3/81/slow-0.json index a8773a2b..65d8631e 100644 --- a/tests/__snapshots__/rssexpanded-3/81/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/81/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/81/slow-180.json b/tests/__snapshots__/rssexpanded-3/81/slow-180.json index b286362e..94e825e3 100644 --- a/tests/__snapshots__/rssexpanded-3/81/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/81/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/82/fast-0.json b/tests/__snapshots__/rssexpanded-3/82/fast-0.json index 8dd75488..ccab5e97 100644 --- a/tests/__snapshots__/rssexpanded-3/82/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/82/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/82/fast-180.json b/tests/__snapshots__/rssexpanded-3/82/fast-180.json index 127d3e2c..246c2f25 100644 --- a/tests/__snapshots__/rssexpanded-3/82/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/82/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/82/pure-0.json b/tests/__snapshots__/rssexpanded-3/82/pure-0.json index 517c322e..de26d5d3 100644 --- a/tests/__snapshots__/rssexpanded-3/82/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/82/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/82/slow-0.json b/tests/__snapshots__/rssexpanded-3/82/slow-0.json index 87fc8460..5b9b674f 100644 --- a/tests/__snapshots__/rssexpanded-3/82/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/82/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/82/slow-180.json b/tests/__snapshots__/rssexpanded-3/82/slow-180.json index 956aedd4..010da6d7 100644 --- a/tests/__snapshots__/rssexpanded-3/82/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/82/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/83/fast-0.json b/tests/__snapshots__/rssexpanded-3/83/fast-0.json index 43e66788..c254b4e0 100644 --- a/tests/__snapshots__/rssexpanded-3/83/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/83/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/83/fast-180.json b/tests/__snapshots__/rssexpanded-3/83/fast-180.json index 99a08ca7..42f41c9c 100644 --- a/tests/__snapshots__/rssexpanded-3/83/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/83/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/83/pure-0.json b/tests/__snapshots__/rssexpanded-3/83/pure-0.json index 76c2aeeb..1d22ddde 100644 --- a/tests/__snapshots__/rssexpanded-3/83/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/83/pure-0.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/83/slow-0.json b/tests/__snapshots__/rssexpanded-3/83/slow-0.json index 5d9b0520..ac8a2f32 100644 --- a/tests/__snapshots__/rssexpanded-3/83/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/83/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/83/slow-180.json b/tests/__snapshots__/rssexpanded-3/83/slow-180.json index 94266fda..436b80a0 100644 --- a/tests/__snapshots__/rssexpanded-3/83/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/83/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/84/fast-0.json b/tests/__snapshots__/rssexpanded-3/84/fast-0.json index 5a47706e..634f3574 100644 --- a/tests/__snapshots__/rssexpanded-3/84/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/84/fast-0.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/84/fast-180.json b/tests/__snapshots__/rssexpanded-3/84/fast-180.json index 2e44d591..816b66af 100644 --- a/tests/__snapshots__/rssexpanded-3/84/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/84/fast-180.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/84/pure-0.json b/tests/__snapshots__/rssexpanded-3/84/pure-0.json index 16e96303..30499b00 100644 --- a/tests/__snapshots__/rssexpanded-3/84/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/84/pure-0.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/84/slow-0.json b/tests/__snapshots__/rssexpanded-3/84/slow-0.json index 96cff59a..8e1e7ca7 100644 --- a/tests/__snapshots__/rssexpanded-3/84/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/84/slow-0.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/84/slow-180.json b/tests/__snapshots__/rssexpanded-3/84/slow-180.json index c685947e..5c9fa08f 100644 --- a/tests/__snapshots__/rssexpanded-3/84/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/84/slow-180.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/85/fast-0.json b/tests/__snapshots__/rssexpanded-3/85/fast-0.json index 52f7b3ad..3d94fea3 100644 --- a/tests/__snapshots__/rssexpanded-3/85/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/85/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/85/fast-180.json b/tests/__snapshots__/rssexpanded-3/85/fast-180.json index 911a00a8..d5cd717d 100644 --- a/tests/__snapshots__/rssexpanded-3/85/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/85/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/85/pure-0.json b/tests/__snapshots__/rssexpanded-3/85/pure-0.json index 82598e3c..ec77825f 100644 --- a/tests/__snapshots__/rssexpanded-3/85/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/85/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/85/slow-0.json b/tests/__snapshots__/rssexpanded-3/85/slow-0.json index e3615c55..650ef6bd 100644 --- a/tests/__snapshots__/rssexpanded-3/85/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/85/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/85/slow-180.json b/tests/__snapshots__/rssexpanded-3/85/slow-180.json index 6118b9df..6a0dd963 100644 --- a/tests/__snapshots__/rssexpanded-3/85/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/85/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/86/fast-0.json b/tests/__snapshots__/rssexpanded-3/86/fast-0.json index 2160ccb8..41900773 100644 --- a/tests/__snapshots__/rssexpanded-3/86/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/86/fast-0.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/86/fast-180.json b/tests/__snapshots__/rssexpanded-3/86/fast-180.json index dee91313..ea98f754 100644 --- a/tests/__snapshots__/rssexpanded-3/86/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/86/fast-180.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/86/pure-0.json b/tests/__snapshots__/rssexpanded-3/86/pure-0.json index a11218d6..4f0778e7 100644 --- a/tests/__snapshots__/rssexpanded-3/86/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/86/pure-0.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/86/slow-0.json b/tests/__snapshots__/rssexpanded-3/86/slow-0.json index 20d765d9..afccee82 100644 --- a/tests/__snapshots__/rssexpanded-3/86/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/86/slow-0.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/86/slow-180.json b/tests/__snapshots__/rssexpanded-3/86/slow-180.json index eaba0ebe..4e180bc7 100644 --- a/tests/__snapshots__/rssexpanded-3/86/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/86/slow-180.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/87/fast-0.json b/tests/__snapshots__/rssexpanded-3/87/fast-0.json index 04a01637..352e1d77 100644 --- a/tests/__snapshots__/rssexpanded-3/87/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/87/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/87/fast-180.json b/tests/__snapshots__/rssexpanded-3/87/fast-180.json index bcec3e09..c1f32c46 100644 --- a/tests/__snapshots__/rssexpanded-3/87/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/87/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/87/pure-0.json b/tests/__snapshots__/rssexpanded-3/87/pure-0.json index 0f43ef0a..a735d60f 100644 --- a/tests/__snapshots__/rssexpanded-3/87/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/87/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/87/slow-0.json b/tests/__snapshots__/rssexpanded-3/87/slow-0.json index 331c5e12..4b10e018 100644 --- a/tests/__snapshots__/rssexpanded-3/87/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/87/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/87/slow-180.json b/tests/__snapshots__/rssexpanded-3/87/slow-180.json index f77085f9..8d5e5ee0 100644 --- a/tests/__snapshots__/rssexpanded-3/87/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/87/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/88/fast-0.json b/tests/__snapshots__/rssexpanded-3/88/fast-0.json index b78954b8..5a82cddb 100644 --- a/tests/__snapshots__/rssexpanded-3/88/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/88/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/88/fast-180.json b/tests/__snapshots__/rssexpanded-3/88/fast-180.json index 807630f5..cef9c443 100644 --- a/tests/__snapshots__/rssexpanded-3/88/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/88/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/88/pure-0.json b/tests/__snapshots__/rssexpanded-3/88/pure-0.json index d4b4782c..931da8ac 100644 --- a/tests/__snapshots__/rssexpanded-3/88/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/88/pure-0.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/88/slow-0.json b/tests/__snapshots__/rssexpanded-3/88/slow-0.json index 27d06582..c9562f1f 100644 --- a/tests/__snapshots__/rssexpanded-3/88/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/88/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/88/slow-180.json b/tests/__snapshots__/rssexpanded-3/88/slow-180.json index 1e1e0748..8d2ab62d 100644 --- a/tests/__snapshots__/rssexpanded-3/88/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/88/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/89/fast-0.json b/tests/__snapshots__/rssexpanded-3/89/fast-0.json index 062a5ed4..8a6e92b9 100644 --- a/tests/__snapshots__/rssexpanded-3/89/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/89/fast-0.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/89/fast-180.json b/tests/__snapshots__/rssexpanded-3/89/fast-180.json index 41565d26..71c17653 100644 --- a/tests/__snapshots__/rssexpanded-3/89/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/89/fast-180.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/89/pure-0.json b/tests/__snapshots__/rssexpanded-3/89/pure-0.json index f00f41f5..323e2bc2 100644 --- a/tests/__snapshots__/rssexpanded-3/89/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/89/pure-0.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/89/slow-0.json b/tests/__snapshots__/rssexpanded-3/89/slow-0.json index 117f5e83..bdf0d32d 100644 --- a/tests/__snapshots__/rssexpanded-3/89/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/89/slow-0.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/89/slow-180.json b/tests/__snapshots__/rssexpanded-3/89/slow-180.json index 4b2740c1..4c9305c1 100644 --- a/tests/__snapshots__/rssexpanded-3/89/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/89/slow-180.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/9/fast-0.json b/tests/__snapshots__/rssexpanded-3/9/fast-0.json index 0b8ca0e8..b6ec908a 100644 --- a/tests/__snapshots__/rssexpanded-3/9/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/9/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/9/fast-180.json b/tests/__snapshots__/rssexpanded-3/9/fast-180.json index ff2a84e5..e95153ee 100644 --- a/tests/__snapshots__/rssexpanded-3/9/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/9/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/9/pure-0.json b/tests/__snapshots__/rssexpanded-3/9/pure-0.json index e0e43e1f..2e96bb5c 100644 --- a/tests/__snapshots__/rssexpanded-3/9/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/9/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/9/slow-0.json b/tests/__snapshots__/rssexpanded-3/9/slow-0.json index af3559d8..7a6e86f9 100644 --- a/tests/__snapshots__/rssexpanded-3/9/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/9/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/9/slow-180.json b/tests/__snapshots__/rssexpanded-3/9/slow-180.json index 15ee7889..0a2f85a3 100644 --- a/tests/__snapshots__/rssexpanded-3/9/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/9/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/90/fast-0.json b/tests/__snapshots__/rssexpanded-3/90/fast-0.json index 0bc14efb..ebda3746 100644 --- a/tests/__snapshots__/rssexpanded-3/90/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/90/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/90/fast-180.json b/tests/__snapshots__/rssexpanded-3/90/fast-180.json index 3181afd2..58d5f6d3 100644 --- a/tests/__snapshots__/rssexpanded-3/90/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/90/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/90/pure-0.json b/tests/__snapshots__/rssexpanded-3/90/pure-0.json index fe4e2bc1..e56bccea 100644 --- a/tests/__snapshots__/rssexpanded-3/90/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/90/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/90/slow-0.json b/tests/__snapshots__/rssexpanded-3/90/slow-0.json index 31513b1c..3e508d39 100644 --- a/tests/__snapshots__/rssexpanded-3/90/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/90/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/90/slow-180.json b/tests/__snapshots__/rssexpanded-3/90/slow-180.json index 33176bb8..7d8e63aa 100644 --- a/tests/__snapshots__/rssexpanded-3/90/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/90/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/91/fast-0.json b/tests/__snapshots__/rssexpanded-3/91/fast-0.json index 5d81409a..2b4a1c07 100644 --- a/tests/__snapshots__/rssexpanded-3/91/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/91/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/91/fast-180.json b/tests/__snapshots__/rssexpanded-3/91/fast-180.json index 303645cb..76e8d6e6 100644 --- a/tests/__snapshots__/rssexpanded-3/91/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/91/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/91/pure-0.json b/tests/__snapshots__/rssexpanded-3/91/pure-0.json index 9efb86f4..86d2d1d6 100644 --- a/tests/__snapshots__/rssexpanded-3/91/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/91/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/91/slow-0.json b/tests/__snapshots__/rssexpanded-3/91/slow-0.json index 86d402a5..c5d829b1 100644 --- a/tests/__snapshots__/rssexpanded-3/91/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/91/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/91/slow-180.json b/tests/__snapshots__/rssexpanded-3/91/slow-180.json index b21e7a86..a0914b1a 100644 --- a/tests/__snapshots__/rssexpanded-3/91/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/91/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/92/fast-0.json b/tests/__snapshots__/rssexpanded-3/92/fast-0.json index d089af77..10569d1a 100644 --- a/tests/__snapshots__/rssexpanded-3/92/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/92/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/92/fast-180.json b/tests/__snapshots__/rssexpanded-3/92/fast-180.json index 46f34626..4109fad9 100644 --- a/tests/__snapshots__/rssexpanded-3/92/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/92/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/92/pure-0.json b/tests/__snapshots__/rssexpanded-3/92/pure-0.json index 7d8da016..45a64782 100644 --- a/tests/__snapshots__/rssexpanded-3/92/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/92/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/92/slow-0.json b/tests/__snapshots__/rssexpanded-3/92/slow-0.json index c45d6e27..ba5fc254 100644 --- a/tests/__snapshots__/rssexpanded-3/92/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/92/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/92/slow-180.json b/tests/__snapshots__/rssexpanded-3/92/slow-180.json index ab45e5b3..15cb4580 100644 --- a/tests/__snapshots__/rssexpanded-3/92/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/92/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/93/fast-0.json b/tests/__snapshots__/rssexpanded-3/93/fast-0.json index c419fe3d..5f0fe434 100644 --- a/tests/__snapshots__/rssexpanded-3/93/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/93/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/93/fast-180.json b/tests/__snapshots__/rssexpanded-3/93/fast-180.json index c1e290e6..a6f6dac7 100644 --- a/tests/__snapshots__/rssexpanded-3/93/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/93/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/93/pure-0.json b/tests/__snapshots__/rssexpanded-3/93/pure-0.json index 93fdf048..95129fd2 100644 --- a/tests/__snapshots__/rssexpanded-3/93/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/93/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/93/slow-0.json b/tests/__snapshots__/rssexpanded-3/93/slow-0.json index cab25ae1..84610289 100644 --- a/tests/__snapshots__/rssexpanded-3/93/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/93/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/93/slow-180.json b/tests/__snapshots__/rssexpanded-3/93/slow-180.json index a77eb1ae..c19b476b 100644 --- a/tests/__snapshots__/rssexpanded-3/93/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/93/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/94/fast-0.json b/tests/__snapshots__/rssexpanded-3/94/fast-0.json index 50ef1d5e..4bfc19c2 100644 --- a/tests/__snapshots__/rssexpanded-3/94/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/94/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/94/fast-180.json b/tests/__snapshots__/rssexpanded-3/94/fast-180.json index 5372d7d5..54e6406c 100644 --- a/tests/__snapshots__/rssexpanded-3/94/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/94/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/94/pure-0.json b/tests/__snapshots__/rssexpanded-3/94/pure-0.json index cddeff96..0ec2ca8c 100644 --- a/tests/__snapshots__/rssexpanded-3/94/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/94/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/94/slow-0.json b/tests/__snapshots__/rssexpanded-3/94/slow-0.json index 8e846b6f..09a73358 100644 --- a/tests/__snapshots__/rssexpanded-3/94/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/94/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/94/slow-180.json b/tests/__snapshots__/rssexpanded-3/94/slow-180.json index 8357c7d6..795260af 100644 --- a/tests/__snapshots__/rssexpanded-3/94/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/94/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/95/fast-0.json b/tests/__snapshots__/rssexpanded-3/95/fast-0.json index d37b159d..d3ebfd63 100644 --- a/tests/__snapshots__/rssexpanded-3/95/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/95/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/95/fast-180.json b/tests/__snapshots__/rssexpanded-3/95/fast-180.json index 9e8f0345..3bcd8ad7 100644 --- a/tests/__snapshots__/rssexpanded-3/95/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/95/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/95/pure-0.json b/tests/__snapshots__/rssexpanded-3/95/pure-0.json index 83e01cc4..f5ccfa67 100644 --- a/tests/__snapshots__/rssexpanded-3/95/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/95/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/95/slow-0.json b/tests/__snapshots__/rssexpanded-3/95/slow-0.json index 0d53fdec..30107d3f 100644 --- a/tests/__snapshots__/rssexpanded-3/95/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/95/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/95/slow-180.json b/tests/__snapshots__/rssexpanded-3/95/slow-180.json index 7b19898e..5d173e99 100644 --- a/tests/__snapshots__/rssexpanded-3/95/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/95/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/96/fast-0.json b/tests/__snapshots__/rssexpanded-3/96/fast-0.json index 63cf480c..26882563 100644 --- a/tests/__snapshots__/rssexpanded-3/96/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/96/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/96/fast-180.json b/tests/__snapshots__/rssexpanded-3/96/fast-180.json index 52ef227c..a6bcafed 100644 --- a/tests/__snapshots__/rssexpanded-3/96/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/96/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/96/pure-0.json b/tests/__snapshots__/rssexpanded-3/96/pure-0.json index 5b54d4cd..e0c6f197 100644 --- a/tests/__snapshots__/rssexpanded-3/96/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/96/pure-0.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/96/slow-0.json b/tests/__snapshots__/rssexpanded-3/96/slow-0.json index 6ee38e95..1cc0f52c 100644 --- a/tests/__snapshots__/rssexpanded-3/96/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/96/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/96/slow-180.json b/tests/__snapshots__/rssexpanded-3/96/slow-180.json index de0551b7..3f3776a8 100644 --- a/tests/__snapshots__/rssexpanded-3/96/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/96/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/97/fast-0.json b/tests/__snapshots__/rssexpanded-3/97/fast-0.json index 45d54d0a..561d5dec 100644 --- a/tests/__snapshots__/rssexpanded-3/97/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/97/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/97/fast-180.json b/tests/__snapshots__/rssexpanded-3/97/fast-180.json index 0d3229d2..b9aef5e6 100644 --- a/tests/__snapshots__/rssexpanded-3/97/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/97/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/97/pure-0.json b/tests/__snapshots__/rssexpanded-3/97/pure-0.json index 18f709da..ff5df26d 100644 --- a/tests/__snapshots__/rssexpanded-3/97/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/97/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/97/slow-0.json b/tests/__snapshots__/rssexpanded-3/97/slow-0.json index e42b8ec7..34d24c87 100644 --- a/tests/__snapshots__/rssexpanded-3/97/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/97/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/97/slow-180.json b/tests/__snapshots__/rssexpanded-3/97/slow-180.json index f44a7908..b81b9995 100644 --- a/tests/__snapshots__/rssexpanded-3/97/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/97/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/98/fast-0.json b/tests/__snapshots__/rssexpanded-3/98/fast-0.json index 8a103f02..ae605a0c 100644 --- a/tests/__snapshots__/rssexpanded-3/98/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/98/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/98/fast-180.json b/tests/__snapshots__/rssexpanded-3/98/fast-180.json index c34b3dbf..01d052f5 100644 --- a/tests/__snapshots__/rssexpanded-3/98/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/98/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/98/pure-0.json b/tests/__snapshots__/rssexpanded-3/98/pure-0.json index 98bd9ab1..8d425b37 100644 --- a/tests/__snapshots__/rssexpanded-3/98/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/98/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/98/slow-0.json b/tests/__snapshots__/rssexpanded-3/98/slow-0.json index b66f57da..62c52ceb 100644 --- a/tests/__snapshots__/rssexpanded-3/98/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/98/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/98/slow-180.json b/tests/__snapshots__/rssexpanded-3/98/slow-180.json index 104040e2..5f6b3d78 100644 --- a/tests/__snapshots__/rssexpanded-3/98/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/98/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/99/fast-0.json b/tests/__snapshots__/rssexpanded-3/99/fast-0.json index fc4a509c..816f654a 100644 --- a/tests/__snapshots__/rssexpanded-3/99/fast-0.json +++ b/tests/__snapshots__/rssexpanded-3/99/fast-0.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/99/fast-180.json b/tests/__snapshots__/rssexpanded-3/99/fast-180.json index 6c90f710..df5e9e0a 100644 --- a/tests/__snapshots__/rssexpanded-3/99/fast-180.json +++ b/tests/__snapshots__/rssexpanded-3/99/fast-180.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/99/pure-0.json b/tests/__snapshots__/rssexpanded-3/99/pure-0.json index a5e131ad..69499dd1 100644 --- a/tests/__snapshots__/rssexpanded-3/99/pure-0.json +++ b/tests/__snapshots__/rssexpanded-3/99/pure-0.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/99/slow-0.json b/tests/__snapshots__/rssexpanded-3/99/slow-0.json index 97775381..8794a870 100644 --- a/tests/__snapshots__/rssexpanded-3/99/slow-0.json +++ b/tests/__snapshots__/rssexpanded-3/99/slow-0.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpanded-3/99/slow-180.json b/tests/__snapshots__/rssexpanded-3/99/slow-180.json index eef4aaee..2246bfc5 100644 --- a/tests/__snapshots__/rssexpanded-3/99/slow-180.json +++ b/tests/__snapshots__/rssexpanded-3/99/slow-180.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/1/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/1/fast-0.json index 3edee9fa..ca812189 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/1/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/1/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/1/fast-180.json index 3edee9fa..ca812189 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/1/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/1/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/1/pure-0.json index 04bd2c77..7841fcc4 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/1/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/1/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/1/slow-0.json index 666c5fed..680930d4 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/1/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/1/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/1/slow-180.json index 666c5fed..680930d4 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/1/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e922bd0", "bytesECI": "2d12239", "text": "0190012345678908310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/10/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/10/fast-0.json index 6b44d4f4..7ae84439 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/10/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/10/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/10/fast-180.json index 43598892..9147f168 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/10/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/10/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/10/pure-0.json index 6b44d4f4..7ae84439 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/10/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/10/pure-0.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/10/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/10/slow-0.json index 234de25d..338e9a48 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/10/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/10/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/10/slow-180.json index 08cf585f..b4060955 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/10/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "16a2c0b", "bytesECI": "d0733ac", "text": "01900123456789083203010000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/11/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/11/fast-0.json index ece4ca0c..be55321b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/11/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/11/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/11/fast-180.json index ece4ca0c..be55321b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/11/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/11/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/11/pure-0.json index ce11c241..d5f268c2 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/11/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/11/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/11/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/11/slow-0.json index 32949cda..1a0c12c6 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/11/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/11/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/11/slow-180.json index 32949cda..1a0c12c6 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/11/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8541717", "bytesECI": "f1d81d5", "text": "01900123456789083203032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/12/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/12/fast-0.json index 15f48d30..a8ddc08e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/12/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/12/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/12/fast-180.json index 15f48d30..a8ddc08e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/12/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/12/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/12/pure-0.json index 4063fd1d..78c5bf67 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/12/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/12/pure-0.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/12/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/12/slow-0.json index 53f4ce91..3b4d02cb 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/12/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/12/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/12/slow-180.json index 53f4ce91..3b4d02cb 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/12/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "81f741e", "bytesECI": "3fb577c", "text": "01900123456789083922795", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/13/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/13/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/13/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/13/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/13/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/13/slow-0.json index f8c3b6a4..141757f0 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/13/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a33ea4d", "bytesECI": "85d6c6e", "text": "01900123456789083922795888888888888888888888888888888888888888888888888888", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/13/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/13/slow-180.json index f6a19f5f..5ec7c123 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/13/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a33ea4d", "bytesECI": "85d6c6e", "text": "01900123456789083922795888888888888888888888888888888888888888888888888888", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/14/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/14/fast-0.json index 5915f66d..21a40831 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/14/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/14/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/14/fast-180.json index 5915f66d..21a40831 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/14/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/14/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/14/pure-0.json index 11152f26..49375dba 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/14/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/14/pure-0.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/14/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/14/slow-0.json index 2443d012..42e32117 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/14/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/14/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/14/slow-180.json index 2443d012..42e32117 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/14/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "441044a", "bytesECI": "ad230a2", "text": "019001234567890839320401234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/15/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/15/fast-0.json index 9d33d771..3846700a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/15/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "968aa77", "bytesECI": "16cc570", "text": "01900123456789083932040EUR", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/15/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/15/fast-180.json index 9d33d771..3846700a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/15/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "968aa77", "bytesECI": "16cc570", "text": "01900123456789083932040EUR", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/15/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/15/pure-0.json index 0b510b5f..f185fd50 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/15/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/15/pure-0.json @@ -5,7 +5,7 @@ "bytes": "968aa77", "bytesECI": "16cc570", "text": "01900123456789083932040EUR", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/15/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/15/slow-0.json index 44ba5945..7138d958 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/15/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "968aa77", "bytesECI": "16cc570", "text": "01900123456789083932040EUR", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/15/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/15/slow-180.json index 44ba5945..7138d958 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/15/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "968aa77", "bytesECI": "16cc570", "text": "01900123456789083932040EUR", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/16/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/16/fast-0.json index 1979b090..6fc57b9e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/16/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "f07fd07", "bytesECI": "0047330", "text": "0190012345678908393204055GBP", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/16/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/16/fast-180.json index 50337489..d653a6b9 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/16/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "f07fd07", "bytesECI": "0047330", "text": "0190012345678908393204055GBP", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/16/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/16/pure-0.json index 1979b090..6fc57b9e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/16/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/16/pure-0.json @@ -5,7 +5,7 @@ "bytes": "f07fd07", "bytesECI": "0047330", "text": "0190012345678908393204055GBP", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/16/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/16/slow-0.json index 9a798286..8f0f930c 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/16/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "f07fd07", "bytesECI": "0047330", "text": "0190012345678908393204055GBP", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/16/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/16/slow-180.json index 59241c6e..3f4dfbfd 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/16/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "f07fd07", "bytesECI": "0047330", "text": "0190012345678908393204055GBP", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/17/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/17/pure-0.json index d8bbab5a..b8a4a82a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/17/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/17/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d037bab", "bytesECI": "03978bc", "text": "0190012345678908393204066USD778899", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/17/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/17/slow-0.json index 8b19f8ac..62b2c790 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/17/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d037bab", "bytesECI": "03978bc", "text": "0190012345678908393204066USD778899", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/17/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/17/slow-180.json index cd575630..7eef4d79 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/17/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d037bab", "bytesECI": "03978bc", "text": "0190012345678908393204066USD778899", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/18/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/18/fast-0.json index 4718f723..eed54cd5 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/18/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/18/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/18/fast-180.json index b0292d7c..eb147d65 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/18/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/18/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/18/pure-0.json index 4718f723..eed54cd5 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/18/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/18/pure-0.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/18/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/18/slow-0.json index d4a21f8f..41fb494f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/18/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/18/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/18/slow-180.json index 49d5617c..8a8dd405 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/18/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "429f363", "bytesECI": "6b833d8", "text": "010001234567890510ABC123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/19/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/19/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/19/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/19/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/19/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/19/slow-0.json index 836878a3..5a9e1cfe 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/19/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1e8f809", "bytesECI": "1b74f40", "text": "011234567890123110UNIVERSITY-OF-DEUSTO", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/19/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/19/slow-180.json index 187dac10..beb5f914 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/19/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1e8f809", "bytesECI": "1b74f40", "text": "011234567890123110UNIVERSITY-OF-DEUSTO", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/2/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/2/fast-0.json index 447e5c80..a2dd5fd2 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/2/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/2/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/2/fast-180.json index 447e5c80..a2dd5fd2 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/2/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/2/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/2/pure-0.json index c8a58618..2646f53e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/2/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/2/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/2/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/2/slow-0.json index 7403e9c7..b6f37876 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/2/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/2/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/2/slow-180.json index 7403e9c7..b6f37876 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/2/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e118768", "bytesECI": "3a23d71", "text": "0191234567980129310301223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/20/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/20/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/20/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/20/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/20/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/20/slow-0.json index 49d9f228..7bbf49b2 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/20/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d3e34e0", "bytesECI": "99e7317", "text": "011234567890123110PIRAMIDE-PROJECT", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/20/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/20/slow-180.json index 52b062a8..c1574cd1 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/20/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d3e34e0", "bytesECI": "99e7317", "text": "011234567890123110PIRAMIDE-PROJECT", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/21/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/21/pure-0.json index a184fdbd..a0f7e0ca 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/21/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/21/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/21/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/21/slow-0.json index 12dd804f..f8b1f466 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/21/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/21/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/21/slow-180.json index 2c837c0b..df9a2f24 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/21/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a73ca05", "bytesECI": "ba1a8ab", "text": "011234567890123110TREELOGIC", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/22/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/22/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/22/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/22/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/22/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/22/slow-0.json index 20b8efd4..7e95953c 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/22/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/22/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/22/slow-180.json index dabfb3e4..43febf11 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/22/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "64922f6", "bytesECI": "d38de85", "text": "01988987654321061599123131030017501012A42212321123456423012345678901", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/23/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/23/pure-0.json index 6cc22858..d2a80d26 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/23/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/23/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e3b0c44", "bytesECI": "e3b0c44", "text": "", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 0, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/23/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/23/slow-0.json index 9fc96411..78c722c9 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/23/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/23/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9f6bd4e", "bytesECI": "45ae55b", "text": "1599123131030017501012A422123211234564230123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/23/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/23/slow-180.json index c377782d..8e00d46e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/23/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/23/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9f6bd4e", "bytesECI": "45ae55b", "text": "1599123131030017501012A422123211234564230123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/24/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/24/fast-0.json index cc926d48..f61d896b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/24/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/24/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/24/fast-180.json index e049a2a0..8058ebce 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/24/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/24/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/24/pure-0.json index cc926d48..f61d896b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/24/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/24/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/24/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/24/slow-0.json index 5aac3ed8..8c724ce2 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/24/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/24/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/24/slow-180.json index 3ea13f2b..c9241331 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/24/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ef4d509", "bytesECI": "f0f6bf4", "text": "10567811010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/25/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/25/fast-0.json index fbbf7ced..c27ce331 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/25/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/25/fast-0.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/25/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/25/fast-180.json index 0a81d740..f2496aa2 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/25/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/25/fast-180.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/25/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/25/pure-0.json index fbbf7ced..c27ce331 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/25/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/25/pure-0.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/25/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/25/slow-0.json index 4fa48411..670f58a6 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/25/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/25/slow-0.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/25/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/25/slow-180.json index d42e5206..2d1906be 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/25/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/25/slow-180.json @@ -5,7 +5,7 @@ "bytes": "bba0c64", "bytesECI": "29974aa", "text": "10567811001010", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/26/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/26/fast-0.json index c3cb44f5..7d154777 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/26/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/26/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/26/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/26/fast-180.json index c3cb44f5..7d154777 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/26/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/26/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/26/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/26/pure-0.json index ee45ec86..28a3da18 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/26/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/26/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/26/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/26/slow-0.json index c3d08c9f..620ad963 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/26/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/26/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/26/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/26/slow-180.json index c3d08c9f..620ad963 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/26/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/26/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8683b1e", "bytesECI": "79f9b7a", "text": "1056789011010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/27/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/27/fast-0.json index d75a6867..1d29380b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/27/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/27/fast-0.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/27/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/27/fast-180.json index fa1f9fc4..3267b907 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/27/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/27/fast-180.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/27/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/27/pure-0.json index d75a6867..1d29380b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/27/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/27/pure-0.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/27/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/27/slow-0.json index f5a5aa8e..36e85651 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/27/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/27/slow-0.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/27/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/27/slow-180.json index acd63048..66eada6f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/27/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/27/slow-180.json @@ -5,7 +5,7 @@ "bytes": "da4f425", "bytesECI": "c642749", "text": "1056711010101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/28/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/28/fast-0.json index 39cf2b1a..6164c466 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/28/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/28/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/28/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/28/fast-180.json index b8284942..07ea6788 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/28/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/28/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/28/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/28/pure-0.json index 39cf2b1a..6164c466 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/28/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/28/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/28/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/28/slow-0.json index 279cef91..dd7052f8 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/28/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/28/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/28/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/28/slow-180.json index 65d24c73..3da53030 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/28/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/28/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a3c701c", "bytesECI": "f904aab", "text": "101098-1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/29/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/29/fast-0.json index e2d2ebe3..979a5cfb 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/29/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/29/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/29/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/29/fast-180.json index 31c6b500..78dd93db 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/29/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/29/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/29/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/29/pure-0.json index e2d2ebe3..979a5cfb 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/29/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/29/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/29/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/29/slow-0.json index daa046f1..310f37b6 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/29/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/29/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/29/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/29/slow-180.json index 51742640..58c7554c 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/29/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/29/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b7c299d", "bytesECI": "b4af3db", "text": "101098,1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/3/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/3/fast-0.json index 4fe13382..4b3b5382 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/3/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/3/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/3/fast-180.json index 4fe13382..4b3b5382 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/3/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/3/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/3/pure-0.json index c35f7a54..5bb0dac3 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/3/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/3/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/3/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/3/slow-0.json index 451dd298..634b17d0 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/3/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/3/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/3/slow-180.json index 451dd298..634b17d0 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/3/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1e6498e", "bytesECI": "3fb88e1", "text": "0191234567980129310201223315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/30/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/30/fast-0.json index bf24ac6e..6c24f610 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/30/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/30/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/30/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/30/fast-180.json index e48870b7..5c64c52c 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/30/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/30/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/30/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/30/pure-0.json index bf24ac6e..6c24f610 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/30/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/30/pure-0.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/30/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/30/slow-0.json index 049d0f0c..e21b0d45 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/30/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/30/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/30/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/30/slow-180.json index 49728f90..1ae2c057 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/30/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/30/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c69fe15", "bytesECI": "e51d031", "text": "101098/1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/31/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/31/fast-0.json index a34d8caf..6ef83b9f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/31/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/31/fast-0.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/31/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/31/fast-180.json index 840d0d78..c12f21f1 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/31/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/31/fast-180.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/31/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/31/pure-0.json index a34d8caf..6ef83b9f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/31/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/31/pure-0.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/31/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/31/slow-0.json index 0927fb24..a10876c0 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/31/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/31/slow-0.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/31/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/31/slow-180.json index bc8cb8e6..96015e11 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/31/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/31/slow-180.json @@ -5,7 +5,7 @@ "bytes": "55b1c11", "bytesECI": "0db9c97", "text": "101098.1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/32/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/32/fast-0.json index a427108b..99fb6bd2 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/32/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/32/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/32/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/32/fast-180.json index 87dd8104..310d1b1d 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/32/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/32/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/32/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/32/pure-0.json index a427108b..99fb6bd2 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/32/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/32/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/32/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/32/slow-0.json index c50b1cdb..829086a5 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/32/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/32/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/32/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/32/slow-180.json index 44a9f6f8..e905bbfb 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/32/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/32/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e745db5", "bytesECI": "ac04d59", "text": "101098*1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/33/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/33/fast-0.json index 0c1e788c..bb7049d2 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/33/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/33/fast-0.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/33/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/33/fast-180.json index f5456372..5cff0e45 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/33/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/33/fast-180.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/33/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/33/pure-0.json index 0c1e788c..bb7049d2 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/33/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/33/pure-0.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/33/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/33/slow-0.json index a557ce85..4c044bec 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/33/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/33/slow-0.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/33/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/33/slow-180.json index 82864a6b..2bdede6d 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/33/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/33/slow-180.json @@ -5,7 +5,7 @@ "bytes": "19170f2", "bytesECI": "07f4b3d", "text": "101098a1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/34/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/34/fast-0.json index 677fca31..bb4d29f8 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/34/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/34/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/34/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/34/fast-180.json index aceca09c..5e103735 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/34/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/34/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/34/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/34/pure-0.json index 677fca31..bb4d29f8 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/34/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/34/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/34/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/34/slow-0.json index 1a13ef04..4d8278ef 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/34/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/34/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/34/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/34/slow-180.json index 620bd8a6..4788ea87 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/34/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/34/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1bb1ae4", "bytesECI": "0ef2954", "text": "101098!1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/35/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/35/fast-0.json index 3279de4a..5bb7eaff 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/35/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/35/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/35/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/35/fast-180.json index 6c7ccc3b..19d7c131 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/35/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/35/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/35/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/35/pure-0.json index 3279de4a..5bb7eaff 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/35/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/35/pure-0.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/35/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/35/slow-0.json index 70cb7a0e..57084777 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/35/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/35/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/35/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/35/slow-180.json index f948940f..548d6205 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/35/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/35/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6ec4683", "bytesECI": "ab2ceec", "text": "101098\"1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/36/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/36/fast-0.json index 792c97bc..3ded25cb 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/36/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/36/fast-0.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/36/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/36/fast-180.json index 25ae473f..73f9bf2a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/36/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/36/fast-180.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/36/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/36/pure-0.json index 792c97bc..3ded25cb 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/36/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/36/pure-0.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/36/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/36/slow-0.json index bf6120a1..0cd94c4e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/36/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/36/slow-0.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/36/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/36/slow-180.json index a8a4dcad..d51be61d 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/36/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/36/slow-180.json @@ -5,7 +5,7 @@ "bytes": "cf00663", "bytesECI": "1f8f5f7", "text": "101098%1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/37/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/37/fast-0.json index 371ff092..6957376a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/37/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/37/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/37/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/37/fast-180.json index 625bbd0c..9e0fd809 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/37/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/37/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/37/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/37/pure-0.json index 371ff092..6957376a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/37/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/37/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/37/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/37/slow-0.json index 4f99e3c0..035404d3 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/37/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/37/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/37/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/37/slow-180.json index c66c4fa6..bccf7f41 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/37/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/37/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5204f62", "bytesECI": "0c77502", "text": "101098&1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/38/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/38/fast-0.json index fb9a23ca..26e07482 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/38/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/38/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/38/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/38/fast-180.json index 723b9f44..ad0f5063 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/38/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/38/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/38/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/38/pure-0.json index fb9a23ca..26e07482 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/38/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/38/pure-0.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/38/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/38/slow-0.json index ba398034..ea4c734e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/38/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/38/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/38/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/38/slow-180.json index 435749ba..77372b2f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/38/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/38/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b95e59c", "bytesECI": "9d1cc81", "text": "101098'1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/39/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/39/fast-0.json index 3f93ef08..75f8be49 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/39/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/39/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/39/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/39/fast-180.json index b2a56652..b73d73b3 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/39/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/39/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/39/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/39/pure-0.json index 3f93ef08..75f8be49 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/39/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/39/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/39/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/39/slow-0.json index 28a53d28..918c7e7f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/39/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/39/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/39/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/39/slow-180.json index 5e198c1d..11836bc0 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/39/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/39/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5fab39f", "bytesECI": "e774273", "text": "101098+1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/4/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/4/fast-0.json index 5054d74f..d0a75aae 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/4/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/4/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/4/fast-180.json index 5054d74f..d0a75aae 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/4/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/4/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/4/pure-0.json index 7591f77d..78421f34 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/4/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/4/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/4/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/4/slow-0.json index 6950dd8e..9399364f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/4/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/4/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/4/slow-180.json index 6950dd8e..9399364f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/4/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0fe25d6", "bytesECI": "23b2c0a", "text": "0191234567980129310201223315000101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/40/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/40/fast-0.json index 3c15b4d2..70116055 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/40/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/40/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/40/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/40/fast-180.json index cfd99cc5..6dd8d9ff 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/40/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/40/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/40/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/40/pure-0.json index 3c15b4d2..70116055 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/40/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/40/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/40/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/40/slow-0.json index fd777f52..3db933e4 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/40/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/40/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/40/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/40/slow-180.json index 7aeff22b..6085cf59 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/40/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/40/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1910985", "bytesECI": "3af2830", "text": "101098:1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/41/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/41/fast-0.json index 06b0f841..c64e847a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/41/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/41/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/41/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/41/fast-180.json index e2a0c720..88c38b1a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/41/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/41/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/41/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/41/pure-0.json index 06b0f841..c64e847a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/41/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/41/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/41/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/41/slow-0.json index 6eea1a54..a1214ce3 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/41/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/41/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/41/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/41/slow-180.json index 4d6ef860..cfbb2b46 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/41/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/41/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0733dfb", "bytesECI": "d358803", "text": "101098;1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/42/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/42/fast-0.json index a451c438..802b0a47 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/42/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/42/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/42/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/42/fast-180.json index 3f03aaa6..2273a94a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/42/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/42/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/42/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/42/pure-0.json index a451c438..802b0a47 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/42/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/42/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/42/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/42/slow-0.json index 180c9b28..daa8e3ca 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/42/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/42/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/42/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/42/slow-180.json index 1b015138..98f09ca6 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/42/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/42/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ee38b4a", "bytesECI": "6849c4c", "text": "101098<1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/43/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/43/fast-0.json index d17d947b..be52bbce 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/43/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/43/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/43/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/43/fast-180.json index 1abf1690..8633f460 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/43/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/43/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/43/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/43/pure-0.json index d17d947b..be52bbce 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/43/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/43/pure-0.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/43/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/43/slow-0.json index 0f9bc010..858bd028 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/43/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/43/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/43/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/43/slow-180.json index 3ec2c940..8c74c971 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/43/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/43/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4dc8973", "bytesECI": "4a06594", "text": "101098=1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/44/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/44/fast-0.json index 644d21b3..bac753bc 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/44/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/44/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/44/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/44/fast-180.json index 430e64e0..afb02109 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/44/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/44/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/44/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/44/pure-0.json index 644d21b3..bac753bc 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/44/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/44/pure-0.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/44/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/44/slow-0.json index 6dadb0d2..ddda26bc 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/44/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/44/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/44/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/44/slow-180.json index a810f0d7..85b87d0a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/44/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/44/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5fafe3e", "bytesECI": "76f62bd", "text": "101098>1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/45/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/45/fast-0.json index b02e76c9..61277adf 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/45/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/45/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/45/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/45/fast-180.json index 3406f4ef..093f50b3 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/45/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/45/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/45/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/45/pure-0.json index b02e76c9..61277adf 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/45/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/45/pure-0.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/45/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/45/slow-0.json index 28d99e1e..c0995ff9 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/45/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/45/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/45/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/45/slow-180.json index 2e75c7a4..54a4d112 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/45/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/45/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ba78a40", "bytesECI": "3e32bfd", "text": "101098?1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/46/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/46/fast-0.json index b39c033e..bc47252b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/46/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/46/fast-0.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/46/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/46/fast-180.json index 4218c197..6ffcdcbe 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/46/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/46/fast-180.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/46/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/46/pure-0.json index b39c033e..bc47252b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/46/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/46/pure-0.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/46/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/46/slow-0.json index 60822b85..296b44e4 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/46/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/46/slow-0.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/46/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/46/slow-180.json index 72fe038f..bd11f932 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/46/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/46/slow-180.json @@ -5,7 +5,7 @@ "bytes": "520657c", "bytesECI": "6bd0e9a", "text": "101098_1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/47/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/47/fast-0.json index 982e711d..9a0a2dd9 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/47/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/47/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/47/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/47/fast-180.json index 499e692c..a8d65659 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/47/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/47/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/47/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/47/pure-0.json index 982e711d..9a0a2dd9 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/47/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/47/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/47/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/47/slow-0.json index 42bb4459..9769066b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/47/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/47/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/47/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/47/slow-180.json index eba5b8e6..0da63f65 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/47/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/47/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d79a414", "bytesECI": "ea9f6ac", "text": "101098 1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/48/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/48/fast-0.json index b347ed12..fbbf51be 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/48/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/48/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/48/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/48/fast-180.json index 1bb10823..7be9507b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/48/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/48/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/48/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/48/pure-0.json index b347ed12..fbbf51be 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/48/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/48/pure-0.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/48/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/48/slow-0.json index b99b38ba..0771c55d 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/48/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/48/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/48/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/48/slow-180.json index 3998eaad..8362fc88 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/48/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/48/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9cc20aa", "bytesECI": "2c2fce5", "text": "10123456A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/49/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/49/fast-0.json index 01c96648..2df3ec80 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/49/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/49/fast-0.json @@ -5,7 +5,7 @@ "bytes": "93b692a", "bytesECI": "b1d7eb9", "text": "10123456A1", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/49/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/49/fast-180.json index 6fd72be6..3d440aa2 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/49/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/49/fast-180.json @@ -5,7 +5,7 @@ "bytes": "93b692a", "bytesECI": "b1d7eb9", "text": "10123456A1", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/49/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/49/pure-0.json index 01c96648..2df3ec80 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/49/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/49/pure-0.json @@ -5,7 +5,7 @@ "bytes": "93b692a", "bytesECI": "b1d7eb9", "text": "10123456A1", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/49/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/49/slow-0.json index 2a9c23a2..d6b3e90e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/49/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/49/slow-0.json @@ -5,7 +5,7 @@ "bytes": "93b692a", "bytesECI": "b1d7eb9", "text": "10123456A1", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/49/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/49/slow-180.json index 55c95412..b40f80e1 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/49/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/49/slow-180.json @@ -5,7 +5,7 @@ "bytes": "93b692a", "bytesECI": "b1d7eb9", "text": "10123456A1", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/5/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/5/fast-0.json index 35abbe72..bed004d8 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/5/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/5/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/5/fast-180.json index f580ae36..a632a28e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/5/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/5/fast-180.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/5/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/5/pure-0.json index 35abbe72..bed004d8 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/5/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/5/pure-0.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/5/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/5/slow-0.json index 29135e12..0b7b53ff 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/5/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/5/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/5/slow-180.json index 0da8c716..33e4a6b8 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/5/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "002db96", "bytesECI": "631ba54", "text": "01900123456789083103001750", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/50/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/50/fast-0.json index 72caf5d5..3eb79247 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/50/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/50/fast-0.json @@ -5,7 +5,7 @@ "bytes": "1c8e721", "bytesECI": "cff58c6", "text": "10123456A123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/50/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/50/fast-180.json index c3dac8bc..339973dd 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/50/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/50/fast-180.json @@ -5,7 +5,7 @@ "bytes": "1c8e721", "bytesECI": "cff58c6", "text": "10123456A123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/50/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/50/pure-0.json index 72caf5d5..3eb79247 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/50/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/50/pure-0.json @@ -5,7 +5,7 @@ "bytes": "1c8e721", "bytesECI": "cff58c6", "text": "10123456A123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/50/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/50/slow-0.json index e09ea24d..e1625552 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/50/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/50/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1c8e721", "bytesECI": "cff58c6", "text": "10123456A123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/50/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/50/slow-180.json index 0fd661fa..e9f2730e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/50/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/50/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1c8e721", "bytesECI": "cff58c6", "text": "10123456A123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/51/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/51/fast-0.json index 589c12f2..00844be6 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/51/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/51/fast-0.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/51/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/51/fast-180.json index 0921866d..fbaac1d1 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/51/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/51/fast-180.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/51/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/51/pure-0.json index 589c12f2..00844be6 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/51/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/51/pure-0.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/51/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/51/slow-0.json index a2fc819e..26d7f8ab 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/51/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/51/slow-0.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/51/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/51/slow-180.json index 0dfa0248..03f15a3a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/51/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/51/slow-180.json @@ -5,7 +5,7 @@ "bytes": "41085f8", "bytesECI": "45d4365", "text": "10123456A1234", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/52/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/52/fast-0.json index 11ae07bb..d5f8c42f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/52/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/52/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/52/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/52/fast-180.json index 11ae07bb..d5f8c42f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/52/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/52/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/52/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/52/pure-0.json index b56b61e7..d88cb977 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/52/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/52/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/52/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/52/slow-0.json index 3252b196..1387ad25 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/52/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/52/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/52/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/52/slow-180.json index 3252b196..1387ad25 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/52/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/52/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8fec501", "bytesECI": "a1702a6", "text": "10123456A1234A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/53/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/53/fast-0.json index 86c39bfb..77b54357 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/53/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/53/fast-0.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/53/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/53/fast-180.json index 86c39bfb..77b54357 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/53/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/53/fast-180.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/53/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/53/pure-0.json index 2c3b93b1..d28bf37e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/53/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/53/pure-0.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/53/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/53/slow-0.json index fced765c..fa1766e1 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/53/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/53/slow-0.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/53/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/53/slow-180.json index fced765c..fa1766e1 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/53/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/53/slow-180.json @@ -5,7 +5,7 @@ "bytes": "65036c8", "bytesECI": "3313f5a", "text": "10123456A123456", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/54/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/54/fast-0.json index 02f0eb64..6d5cbf2e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/54/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/54/fast-0.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/54/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/54/fast-180.json index 02f0eb64..6d5cbf2e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/54/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/54/fast-180.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/54/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/54/pure-0.json index 9bcfe995..a833dcfd 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/54/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/54/pure-0.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/54/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/54/slow-0.json index d5b773a0..6febd48e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/54/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/54/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/54/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/54/slow-180.json index d5b773a0..6febd48e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/54/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/54/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0984934", "bytesECI": "3496530", "text": "10123456A12345678", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/55-corrected/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/55-corrected/fast-0.json index 192209d4..b894d577 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/55-corrected/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/55-corrected/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/55-corrected/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/55-corrected/fast-180.json index 2f74698b..72ba2dc6 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/55-corrected/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/55-corrected/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/55-corrected/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/55-corrected/pure-0.json index 192209d4..b894d577 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/55-corrected/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/55-corrected/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/55-corrected/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/55-corrected/slow-0.json index a870d20e..57f79ca7 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/55-corrected/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/55-corrected/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/55-corrected/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/55-corrected/slow-180.json index 689c6c25..e3fb331f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/55-corrected/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/55-corrected/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/55/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/55/fast-0.json index 87ccdcfe..d4043f2b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/55/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/55/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/55/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/55/fast-180.json index beabc8cc..3efb3121 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/55/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/55/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/55/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/55/pure-0.json index 87ccdcfe..d4043f2b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/55/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/55/pure-0.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/55/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/55/slow-0.json index 5acbc02f..e02da48c 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/55/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/55/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/55/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/55/slow-180.json index 6a8b7262..42294607 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/55/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/55/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d582771", "bytesECI": "0f759e9", "text": "10123456A1234A15991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/56/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/56/pure-0.json index b9218728..e84ae787 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/56/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/56/pure-0.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/56/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/56/slow-0.json index 66c5299b..897cec86 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/56/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/56/slow-0.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/56/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/56/slow-180.json index 5d9d19f2..b4fd782f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/56/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/56/slow-180.json @@ -5,7 +5,7 @@ "bytes": "37d3067", "bytesECI": "f3e00bf", "text": "101ABCDEF;:/1234567", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/57/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/57/pure-0.json index f6f72c8b..131a013d 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/57/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/57/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/57/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/57/slow-0.json index 1e1ed91e..8edd435f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/57/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/57/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/57/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/57/slow-180.json index 4b35e32c..40e3683f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/57/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/57/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3abdf43", "bytesECI": "e0d15c3", "text": "101ABCDEF;:/ABCDEFG", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/58/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/58/pure-0.json index 26292ff0..8e6628a2 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/58/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/58/pure-0.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/58/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/58/slow-0.json index dfbd4f2f..5f33952c 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/58/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/58/slow-0.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/58/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/58/slow-180.json index bed0b164..c07f5c3e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/58/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/58/slow-180.json @@ -5,7 +5,7 @@ "bytes": "349b669", "bytesECI": "1d306ec", "text": "101;:/ABCDEFGHIJKLM", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/59/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/59/fast-0.json index 61413e3c..2bdb5fb5 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/59/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/59/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/59/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/59/fast-180.json index 158be821..955dba93 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/59/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/59/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/59/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/59/pure-0.json index 61413e3c..2bdb5fb5 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/59/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/59/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/59/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/59/slow-0.json index 418f4132..50226794 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/59/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/59/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/59/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/59/slow-180.json index 82fc42f3..9a3f8298 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/59/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/59/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3ac65dc", "bytesECI": "1938233", "text": "101;:/0123456789012", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/6/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/6/fast-0.json index b519b801..63c53e59 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/6/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/6/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/6/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/6/fast-180.json index dabfb673..8ed4611b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/6/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/6/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/6/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/6/pure-0.json index b519b801..63c53e59 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/6/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/6/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/6/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/6/slow-0.json index 4f2108eb..5de3489b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/6/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/6/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/6/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/6/slow-180.json index 113862c3..0ae0e21e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/6/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/6/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e0bb040", "bytesECI": "aa4a932", "text": "01921098765432133103032767", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/60/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/60/fast-0.json index a785cbec..f6a8b45f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/60/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/60/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/60/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/60/fast-180.json index a785cbec..f6a8b45f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/60/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/60/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/60/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/60/pure-0.json index 0a22b178..b44569b7 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/60/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/60/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/60/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/60/slow-0.json index fc97b2d6..09ec1b78 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/60/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/60/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/60/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/60/slow-180.json index fc97b2d6..09ec1b78 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/60/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/60/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3af8342", "bytesECI": "9780376", "text": "101;:/0123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/61/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/61/fast-0.json index c39df6d4..535b2643 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/61/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/61/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/61/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/61/fast-180.json index 4d5f65a8..d75dfd27 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/61/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/61/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/61/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/61/pure-0.json index c39df6d4..535b2643 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/61/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/61/pure-0.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/61/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/61/slow-0.json index 15cdd73c..540f2ab8 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/61/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/61/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/61/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/61/slow-180.json index eb842056..5d347ede 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/61/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/61/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7fcffd8", "bytesECI": "a2bd382", "text": "101;:/012315991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/62/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/62/fast-0.json index 47f34dff..f6e24037 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/62/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/62/fast-0.json @@ -5,7 +5,7 @@ "bytes": "16dc368", "bytesECI": "f4805e1", "text": "101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/62/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/62/fast-180.json index a077dcb8..02cde810 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/62/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/62/fast-180.json @@ -5,7 +5,7 @@ "bytes": "16dc368", "bytesECI": "f4805e1", "text": "101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/62/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/62/pure-0.json index 43b01919..659baa70 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/62/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/62/pure-0.json @@ -5,7 +5,7 @@ "bytes": "16dc368", "bytesECI": "f4805e1", "text": "101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/62/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/62/slow-0.json index 0a38dd65..d5706689 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/62/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/62/slow-0.json @@ -5,7 +5,7 @@ "bytes": "16dc368", "bytesECI": "f4805e1", "text": "101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/62/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/62/slow-180.json index 95475c9c..6d09143b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/62/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/62/slow-180.json @@ -5,7 +5,7 @@ "bytes": "16dc368", "bytesECI": "f4805e1", "text": "101", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/63/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/63/fast-0.json index dc90ec98..fb391d2c 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/63/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/63/fast-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/63/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/63/fast-180.json index b0e3ca4c..679b29a6 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/63/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/63/fast-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/63/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/63/pure-0.json index 84d8987c..8636befd 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/63/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/63/pure-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/63/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/63/slow-0.json index b96a5ecd..ad828a0e 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/63/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/63/slow-0.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/63/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/63/slow-180.json index 96ce27f7..d9353323 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/63/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/63/slow-180.json @@ -5,7 +5,7 @@ "bytes": "893ee95", "bytesECI": "1730ace", "text": "1012A", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/64/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/64/fast-0.json index 3bf7b455..0e421c0b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/64/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/64/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/64/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/64/fast-180.json index 55f342a8..2edddfbf 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/64/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/64/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/64/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/64/pure-0.json index 7ab3f219..38e1ac9a 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/64/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/64/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/64/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/64/slow-0.json index a3c4c974..1d507c1b 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/64/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/64/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/64/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/64/slow-180.json index 516e2153..6c5ea71f 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/64/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/64/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e37bb12", "bytesECI": "c2dae2e", "text": "10123", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/7/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/7/fast-0.json index d174ddc5..5f53acf1 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/7/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/7/fast-0.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/7/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/7/fast-180.json index 523da631..290aead9 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/7/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/7/fast-180.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/7/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/7/pure-0.json index d174ddc5..5f53acf1 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/7/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/7/pure-0.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/7/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/7/slow-0.json index d4fa7aba..32d6e101 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/7/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/7/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/7/slow-180.json index 919129cf..a940ce58 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/7/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "032e387", "bytesECI": "b71c50d", "text": "01921098765432133103000000", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/8/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/8/fast-0.json index 32e73b75..5eabf126 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/8/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/8/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/8/fast-180.json index 8334d435..311ed200 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/8/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/8/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/8/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/8/pure-0.json index 32e73b75..5eabf126 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/8/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/8/pure-0.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/8/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/8/slow-0.json index c267675f..e1147f22 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/8/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/8/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/8/slow-180.json index 927a5646..2c9d7265 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/8/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3735620", "bytesECI": "3d06d64", "text": "01900123456789083202000156", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/9/fast-0.json b/tests/__snapshots__/rssexpandedstacked-1/9/fast-0.json index 563f7cd9..a46fd8b0 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/9/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/9/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/9/fast-180.json b/tests/__snapshots__/rssexpandedstacked-1/9/fast-180.json index a7ddbefa..073cfd74 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/9/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/9/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/9/pure-0.json b/tests/__snapshots__/rssexpandedstacked-1/9/pure-0.json index 563f7cd9..a46fd8b0 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/9/pure-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/9/pure-0.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/9/slow-0.json b/tests/__snapshots__/rssexpandedstacked-1/9/slow-0.json index 17af1800..4651fd26 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/9/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-1/9/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-1/9/slow-180.json b/tests/__snapshots__/rssexpandedstacked-1/9/slow-180.json index fffccfee..e8567824 100644 --- a/tests/__snapshots__/rssexpandedstacked-1/9/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-1/9/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8bbbb86", "bytesECI": "f101d85", "text": "01900123456789083202009999", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-2/1/fast-0.json b/tests/__snapshots__/rssexpandedstacked-2/1/fast-0.json index 18ab2007..c9674022 100644 --- a/tests/__snapshots__/rssexpandedstacked-2/1/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-2/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c14618c", "bytesECI": "cb8f2b7", "text": "811010014141012345290110100", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-2/1/fast-180.json b/tests/__snapshots__/rssexpandedstacked-2/1/fast-180.json index edd449fd..9fc39996 100644 --- a/tests/__snapshots__/rssexpandedstacked-2/1/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-2/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c14618c", "bytesECI": "cb8f2b7", "text": "811010014141012345290110100", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-2/1/slow-0.json b/tests/__snapshots__/rssexpandedstacked-2/1/slow-0.json index 169a5b89..501f587e 100644 --- a/tests/__snapshots__/rssexpandedstacked-2/1/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-2/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c14618c", "bytesECI": "cb8f2b7", "text": "811010014141012345290110100", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-2/1/slow-180.json b/tests/__snapshots__/rssexpandedstacked-2/1/slow-180.json index d6e8d982..2f48a5df 100644 --- a/tests/__snapshots__/rssexpandedstacked-2/1/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-2/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c14618c", "bytesECI": "cb8f2b7", "text": "811010014141012345290110100", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-2/1000/fast-0.json b/tests/__snapshots__/rssexpandedstacked-2/1000/fast-0.json index 95376e94..fa3b48b3 100644 --- a/tests/__snapshots__/rssexpandedstacked-2/1000/fast-0.json +++ b/tests/__snapshots__/rssexpandedstacked-2/1000/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-2/1000/fast-180.json b/tests/__snapshots__/rssexpandedstacked-2/1000/fast-180.json index 23428f15..7dbc05d6 100644 --- a/tests/__snapshots__/rssexpandedstacked-2/1000/fast-180.json +++ b/tests/__snapshots__/rssexpandedstacked-2/1000/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-2/1000/slow-0.json b/tests/__snapshots__/rssexpandedstacked-2/1000/slow-0.json index e57c813e..b5177575 100644 --- a/tests/__snapshots__/rssexpandedstacked-2/1000/slow-0.json +++ b/tests/__snapshots__/rssexpandedstacked-2/1000/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/rssexpandedstacked-2/1000/slow-180.json b/tests/__snapshots__/rssexpandedstacked-2/1000/slow-180.json index 7dc498cf..31760222 100644 --- a/tests/__snapshots__/rssexpandedstacked-2/1000/slow-180.json +++ b/tests/__snapshots__/rssexpandedstacked-2/1000/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ad4bb09", "bytesECI": "8981cb0", "text": "0198898765432106320201234515991231", - "eccLevel": "", + "ecLevel": "", "contentType": "GS1", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/12/slow-0.json b/tests/__snapshots__/upca-1/12/slow-0.json index c9e9debe..bb8b3d41 100644 --- a/tests/__snapshots__/upca-1/12/slow-0.json +++ b/tests/__snapshots__/upca-1/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7561fd8", "bytesECI": "6879093", "text": "781735802045", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/12/slow-180.json b/tests/__snapshots__/upca-1/12/slow-180.json index c869afbe..f1cbe731 100644 --- a/tests/__snapshots__/upca-1/12/slow-180.json +++ b/tests/__snapshots__/upca-1/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7561fd8", "bytesECI": "6879093", "text": "781735802045", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/16/fast-0.json b/tests/__snapshots__/upca-1/16/fast-0.json index 2cb28453..3c735194 100644 --- a/tests/__snapshots__/upca-1/16/fast-0.json +++ b/tests/__snapshots__/upca-1/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b2f8636", "bytesECI": "2bfcc14", "text": "456314319671", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/16/fast-180.json b/tests/__snapshots__/upca-1/16/fast-180.json index 8e221e8a..5e455ffe 100644 --- a/tests/__snapshots__/upca-1/16/fast-180.json +++ b/tests/__snapshots__/upca-1/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b2f8636", "bytesECI": "2bfcc14", "text": "456314319671", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/16/slow-0.json b/tests/__snapshots__/upca-1/16/slow-0.json index da45cc49..7f83b4fe 100644 --- a/tests/__snapshots__/upca-1/16/slow-0.json +++ b/tests/__snapshots__/upca-1/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b2f8636", "bytesECI": "2bfcc14", "text": "456314319671", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/16/slow-180.json b/tests/__snapshots__/upca-1/16/slow-180.json index f186f260..cbb7da18 100644 --- a/tests/__snapshots__/upca-1/16/slow-180.json +++ b/tests/__snapshots__/upca-1/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b2f8636", "bytesECI": "2bfcc14", "text": "456314319671", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/17/fast-0.json b/tests/__snapshots__/upca-1/17/fast-0.json index b4511bdf..9c4de4a2 100644 --- a/tests/__snapshots__/upca-1/17/fast-0.json +++ b/tests/__snapshots__/upca-1/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "232b075", "bytesECI": "974edbb", "text": "434704791429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/17/fast-180.json b/tests/__snapshots__/upca-1/17/fast-180.json index 21b19f09..b585654c 100644 --- a/tests/__snapshots__/upca-1/17/fast-180.json +++ b/tests/__snapshots__/upca-1/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "232b075", "bytesECI": "974edbb", "text": "434704791429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/17/slow-0.json b/tests/__snapshots__/upca-1/17/slow-0.json index 6c1facb7..480cb766 100644 --- a/tests/__snapshots__/upca-1/17/slow-0.json +++ b/tests/__snapshots__/upca-1/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "232b075", "bytesECI": "974edbb", "text": "434704791429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/17/slow-180.json b/tests/__snapshots__/upca-1/17/slow-180.json index db41cdfe..182da2be 100644 --- a/tests/__snapshots__/upca-1/17/slow-180.json +++ b/tests/__snapshots__/upca-1/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "232b075", "bytesECI": "974edbb", "text": "434704791429", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/2/fast-0.json b/tests/__snapshots__/upca-1/2/fast-0.json index 770ef523..5a618230 100644 --- a/tests/__snapshots__/upca-1/2/fast-0.json +++ b/tests/__snapshots__/upca-1/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6f90dfb", "bytesECI": "3995572", "text": "036602301467", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/2/fast-180.json b/tests/__snapshots__/upca-1/2/fast-180.json index e44fa673..ebcebcb7 100644 --- a/tests/__snapshots__/upca-1/2/fast-180.json +++ b/tests/__snapshots__/upca-1/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6f90dfb", "bytesECI": "3995572", "text": "036602301467", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/2/slow-0.json b/tests/__snapshots__/upca-1/2/slow-0.json index 9f1f2e7a..b4980403 100644 --- a/tests/__snapshots__/upca-1/2/slow-0.json +++ b/tests/__snapshots__/upca-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6f90dfb", "bytesECI": "3995572", "text": "036602301467", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/2/slow-180.json b/tests/__snapshots__/upca-1/2/slow-180.json index 202b4a70..51907351 100644 --- a/tests/__snapshots__/upca-1/2/slow-180.json +++ b/tests/__snapshots__/upca-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6f90dfb", "bytesECI": "3995572", "text": "036602301467", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/21/fast-0.json b/tests/__snapshots__/upca-1/21/fast-0.json index 0a2843f9..99967923 100644 --- a/tests/__snapshots__/upca-1/21/fast-0.json +++ b/tests/__snapshots__/upca-1/21/fast-0.json @@ -5,7 +5,7 @@ "bytes": "80ec329", "bytesECI": "bc7d394", "text": "752919460009", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/21/fast-180.json b/tests/__snapshots__/upca-1/21/fast-180.json index 92b9c411..297c8525 100644 --- a/tests/__snapshots__/upca-1/21/fast-180.json +++ b/tests/__snapshots__/upca-1/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "80ec329", "bytesECI": "bc7d394", "text": "752919460009", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/21/slow-0.json b/tests/__snapshots__/upca-1/21/slow-0.json index 506a2df3..c19b7874 100644 --- a/tests/__snapshots__/upca-1/21/slow-0.json +++ b/tests/__snapshots__/upca-1/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "80ec329", "bytesECI": "bc7d394", "text": "752919460009", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/21/slow-180.json b/tests/__snapshots__/upca-1/21/slow-180.json index 0dbb8f02..6d5884cf 100644 --- a/tests/__snapshots__/upca-1/21/slow-180.json +++ b/tests/__snapshots__/upca-1/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "80ec329", "bytesECI": "bc7d394", "text": "752919460009", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/27/fast-0.json b/tests/__snapshots__/upca-1/27/fast-0.json index 0ddd1ea2..e4fb50dc 100644 --- a/tests/__snapshots__/upca-1/27/fast-0.json +++ b/tests/__snapshots__/upca-1/27/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e4956e5", "bytesECI": "2a64b8a", "text": "606949762520", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/27/fast-180.json b/tests/__snapshots__/upca-1/27/fast-180.json index 277774a7..8a6260b7 100644 --- a/tests/__snapshots__/upca-1/27/fast-180.json +++ b/tests/__snapshots__/upca-1/27/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e4956e5", "bytesECI": "2a64b8a", "text": "606949762520", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/27/slow-0.json b/tests/__snapshots__/upca-1/27/slow-0.json index 00d6b246..b34cbdd4 100644 --- a/tests/__snapshots__/upca-1/27/slow-0.json +++ b/tests/__snapshots__/upca-1/27/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e4956e5", "bytesECI": "2a64b8a", "text": "606949762520", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/27/slow-180.json b/tests/__snapshots__/upca-1/27/slow-180.json index 260ee5a5..468e777d 100644 --- a/tests/__snapshots__/upca-1/27/slow-180.json +++ b/tests/__snapshots__/upca-1/27/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e4956e5", "bytesECI": "2a64b8a", "text": "606949762520", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/28/fast-0.json b/tests/__snapshots__/upca-1/28/fast-0.json index f50d7ca3..f10a3615 100644 --- a/tests/__snapshots__/upca-1/28/fast-0.json +++ b/tests/__snapshots__/upca-1/28/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7570e5f", "bytesECI": "89c9aa4", "text": "061869053712", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/28/fast-180.json b/tests/__snapshots__/upca-1/28/fast-180.json index 3425dc13..10b99ff3 100644 --- a/tests/__snapshots__/upca-1/28/fast-180.json +++ b/tests/__snapshots__/upca-1/28/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7570e5f", "bytesECI": "89c9aa4", "text": "061869053712", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/28/slow-0.json b/tests/__snapshots__/upca-1/28/slow-0.json index 5f9ee3a5..9ca11b2e 100644 --- a/tests/__snapshots__/upca-1/28/slow-0.json +++ b/tests/__snapshots__/upca-1/28/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7570e5f", "bytesECI": "89c9aa4", "text": "061869053712", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/28/slow-180.json b/tests/__snapshots__/upca-1/28/slow-180.json index 3ffc047f..dc73e4b5 100644 --- a/tests/__snapshots__/upca-1/28/slow-180.json +++ b/tests/__snapshots__/upca-1/28/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7570e5f", "bytesECI": "89c9aa4", "text": "061869053712", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/29/fast-0.json b/tests/__snapshots__/upca-1/29/fast-0.json index 902ce5c0..2f9019dd 100644 --- a/tests/__snapshots__/upca-1/29/fast-0.json +++ b/tests/__snapshots__/upca-1/29/fast-0.json @@ -5,7 +5,7 @@ "bytes": "86363f4", "bytesECI": "ccd300e", "text": "619659023935", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/29/fast-180.json b/tests/__snapshots__/upca-1/29/fast-180.json index d6bfe403..04ed131c 100644 --- a/tests/__snapshots__/upca-1/29/fast-180.json +++ b/tests/__snapshots__/upca-1/29/fast-180.json @@ -5,7 +5,7 @@ "bytes": "86363f4", "bytesECI": "ccd300e", "text": "619659023935", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/29/slow-0.json b/tests/__snapshots__/upca-1/29/slow-0.json index 755d2882..858d8863 100644 --- a/tests/__snapshots__/upca-1/29/slow-0.json +++ b/tests/__snapshots__/upca-1/29/slow-0.json @@ -5,7 +5,7 @@ "bytes": "86363f4", "bytesECI": "ccd300e", "text": "619659023935", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/29/slow-180.json b/tests/__snapshots__/upca-1/29/slow-180.json index 7bdd0fab..b8291606 100644 --- a/tests/__snapshots__/upca-1/29/slow-180.json +++ b/tests/__snapshots__/upca-1/29/slow-180.json @@ -5,7 +5,7 @@ "bytes": "86363f4", "bytesECI": "ccd300e", "text": "619659023935", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/3/fast-0.json b/tests/__snapshots__/upca-1/3/fast-0.json index 8fcf4a61..ce4600f0 100644 --- a/tests/__snapshots__/upca-1/3/fast-0.json +++ b/tests/__snapshots__/upca-1/3/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4685371", "bytesECI": "68e1fc9", "text": "070097025088", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/3/fast-180.json b/tests/__snapshots__/upca-1/3/fast-180.json index b6590e4c..00c12e36 100644 --- a/tests/__snapshots__/upca-1/3/fast-180.json +++ b/tests/__snapshots__/upca-1/3/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4685371", "bytesECI": "68e1fc9", "text": "070097025088", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/3/slow-0.json b/tests/__snapshots__/upca-1/3/slow-0.json index dee3ca1a..49d8c616 100644 --- a/tests/__snapshots__/upca-1/3/slow-0.json +++ b/tests/__snapshots__/upca-1/3/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4685371", "bytesECI": "68e1fc9", "text": "070097025088", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/3/slow-180.json b/tests/__snapshots__/upca-1/3/slow-180.json index dff3c3bb..146f87dc 100644 --- a/tests/__snapshots__/upca-1/3/slow-180.json +++ b/tests/__snapshots__/upca-1/3/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4685371", "bytesECI": "68e1fc9", "text": "070097025088", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/35/fast-0.json b/tests/__snapshots__/upca-1/35/fast-0.json index 4b97f0c5..6cb19fc8 100644 --- a/tests/__snapshots__/upca-1/35/fast-0.json +++ b/tests/__snapshots__/upca-1/35/fast-0.json @@ -5,7 +5,7 @@ "bytes": "94e6944", "bytesECI": "d3498a1", "text": "045496442736", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/35/fast-180.json b/tests/__snapshots__/upca-1/35/fast-180.json index feeff905..374b8d84 100644 --- a/tests/__snapshots__/upca-1/35/fast-180.json +++ b/tests/__snapshots__/upca-1/35/fast-180.json @@ -5,7 +5,7 @@ "bytes": "94e6944", "bytesECI": "d3498a1", "text": "045496442736", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/35/slow-0.json b/tests/__snapshots__/upca-1/35/slow-0.json index b582160f..8716a50d 100644 --- a/tests/__snapshots__/upca-1/35/slow-0.json +++ b/tests/__snapshots__/upca-1/35/slow-0.json @@ -5,7 +5,7 @@ "bytes": "94e6944", "bytesECI": "d3498a1", "text": "045496442736", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/35/slow-180.json b/tests/__snapshots__/upca-1/35/slow-180.json index 90e41ae3..5417e4da 100644 --- a/tests/__snapshots__/upca-1/35/slow-180.json +++ b/tests/__snapshots__/upca-1/35/slow-180.json @@ -5,7 +5,7 @@ "bytes": "94e6944", "bytesECI": "d3498a1", "text": "045496442736", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/4/fast-180.json b/tests/__snapshots__/upca-1/4/fast-180.json index 3da43559..f5d52aad 100644 --- a/tests/__snapshots__/upca-1/4/fast-180.json +++ b/tests/__snapshots__/upca-1/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4685371", "bytesECI": "68e1fc9", "text": "070097025088", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/4/slow-0.json b/tests/__snapshots__/upca-1/4/slow-0.json index ecfb7e31..82b8e1af 100644 --- a/tests/__snapshots__/upca-1/4/slow-0.json +++ b/tests/__snapshots__/upca-1/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4685371", "bytesECI": "68e1fc9", "text": "070097025088", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/4/slow-180.json b/tests/__snapshots__/upca-1/4/slow-180.json index 6c293195..48ecfb50 100644 --- a/tests/__snapshots__/upca-1/4/slow-180.json +++ b/tests/__snapshots__/upca-1/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4685371", "bytesECI": "68e1fc9", "text": "070097025088", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/5/fast-0.json b/tests/__snapshots__/upca-1/5/fast-0.json index 9aa7909d..9dc47d6a 100644 --- a/tests/__snapshots__/upca-1/5/fast-0.json +++ b/tests/__snapshots__/upca-1/5/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4685371", "bytesECI": "68e1fc9", "text": "070097025088", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/5/fast-180.json b/tests/__snapshots__/upca-1/5/fast-180.json index 48a766dd..749d6a30 100644 --- a/tests/__snapshots__/upca-1/5/fast-180.json +++ b/tests/__snapshots__/upca-1/5/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4685371", "bytesECI": "68e1fc9", "text": "070097025088", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/5/slow-0.json b/tests/__snapshots__/upca-1/5/slow-0.json index c1a1b0ff..833b5cc3 100644 --- a/tests/__snapshots__/upca-1/5/slow-0.json +++ b/tests/__snapshots__/upca-1/5/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4685371", "bytesECI": "68e1fc9", "text": "070097025088", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-1/5/slow-180.json b/tests/__snapshots__/upca-1/5/slow-180.json index 991e00da..c6b7912c 100644 --- a/tests/__snapshots__/upca-1/5/slow-180.json +++ b/tests/__snapshots__/upca-1/5/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4685371", "bytesECI": "68e1fc9", "text": "070097025088", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/02/slow-0.json b/tests/__snapshots__/upca-2/02/slow-0.json index 79566851..9cbd6ba2 100644 --- a/tests/__snapshots__/upca-2/02/slow-0.json +++ b/tests/__snapshots__/upca-2/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ab816b0", "bytesECI": "67d08d3", "text": "890444000335", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/02/slow-180.json b/tests/__snapshots__/upca-2/02/slow-180.json index ca6c4f22..94607e6d 100644 --- a/tests/__snapshots__/upca-2/02/slow-180.json +++ b/tests/__snapshots__/upca-2/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ab816b0", "bytesECI": "67d08d3", "text": "890444000335", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/03/fast-0.json b/tests/__snapshots__/upca-2/03/fast-0.json index 873f6ba9..287e7ff8 100644 --- a/tests/__snapshots__/upca-2/03/fast-0.json +++ b/tests/__snapshots__/upca-2/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ab816b0", "bytesECI": "67d08d3", "text": "890444000335", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/03/fast-180.json b/tests/__snapshots__/upca-2/03/fast-180.json index bde1d5f5..0c0857ac 100644 --- a/tests/__snapshots__/upca-2/03/fast-180.json +++ b/tests/__snapshots__/upca-2/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ab816b0", "bytesECI": "67d08d3", "text": "890444000335", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/03/slow-0.json b/tests/__snapshots__/upca-2/03/slow-0.json index 2e651508..19d5383d 100644 --- a/tests/__snapshots__/upca-2/03/slow-0.json +++ b/tests/__snapshots__/upca-2/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ab816b0", "bytesECI": "67d08d3", "text": "890444000335", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/03/slow-180.json b/tests/__snapshots__/upca-2/03/slow-180.json index 7c8d60c6..2c453646 100644 --- a/tests/__snapshots__/upca-2/03/slow-180.json +++ b/tests/__snapshots__/upca-2/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ab816b0", "bytesECI": "67d08d3", "text": "890444000335", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/07/fast-0.json b/tests/__snapshots__/upca-2/07/fast-0.json index ba56bcaa..8846c0df 100644 --- a/tests/__snapshots__/upca-2/07/fast-0.json +++ b/tests/__snapshots__/upca-2/07/fast-0.json @@ -5,7 +5,7 @@ "bytes": "ab816b0", "bytesECI": "67d08d3", "text": "890444000335", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/07/fast-180.json b/tests/__snapshots__/upca-2/07/fast-180.json index d47d6f52..91739b92 100644 --- a/tests/__snapshots__/upca-2/07/fast-180.json +++ b/tests/__snapshots__/upca-2/07/fast-180.json @@ -5,7 +5,7 @@ "bytes": "ab816b0", "bytesECI": "67d08d3", "text": "890444000335", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/07/slow-0.json b/tests/__snapshots__/upca-2/07/slow-0.json index f6871d85..58994674 100644 --- a/tests/__snapshots__/upca-2/07/slow-0.json +++ b/tests/__snapshots__/upca-2/07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "ab816b0", "bytesECI": "67d08d3", "text": "890444000335", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/07/slow-180.json b/tests/__snapshots__/upca-2/07/slow-180.json index 0d3a8ac1..c72ca2a4 100644 --- a/tests/__snapshots__/upca-2/07/slow-180.json +++ b/tests/__snapshots__/upca-2/07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "ab816b0", "bytesECI": "67d08d3", "text": "890444000335", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/09/fast-0.json b/tests/__snapshots__/upca-2/09/fast-0.json index 2e765e82..82dab083 100644 --- a/tests/__snapshots__/upca-2/09/fast-0.json +++ b/tests/__snapshots__/upca-2/09/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5e93be9", "bytesECI": "f3999a1", "text": "181497000879", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/09/fast-180.json b/tests/__snapshots__/upca-2/09/fast-180.json index d2ae32c2..be69a886 100644 --- a/tests/__snapshots__/upca-2/09/fast-180.json +++ b/tests/__snapshots__/upca-2/09/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5e93be9", "bytesECI": "f3999a1", "text": "181497000879", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/09/slow-0.json b/tests/__snapshots__/upca-2/09/slow-0.json index d2cff58f..fa0d4650 100644 --- a/tests/__snapshots__/upca-2/09/slow-0.json +++ b/tests/__snapshots__/upca-2/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5e93be9", "bytesECI": "f3999a1", "text": "181497000879", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/09/slow-180.json b/tests/__snapshots__/upca-2/09/slow-180.json index eb144b0a..998ad65c 100644 --- a/tests/__snapshots__/upca-2/09/slow-180.json +++ b/tests/__snapshots__/upca-2/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5e93be9", "bytesECI": "f3999a1", "text": "181497000879", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/12/fast-0.json b/tests/__snapshots__/upca-2/12/fast-0.json index 33711ba8..1243694e 100644 --- a/tests/__snapshots__/upca-2/12/fast-0.json +++ b/tests/__snapshots__/upca-2/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5e93be9", "bytesECI": "f3999a1", "text": "181497000879", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/12/fast-180.json b/tests/__snapshots__/upca-2/12/fast-180.json index f5167d70..3478d03d 100644 --- a/tests/__snapshots__/upca-2/12/fast-180.json +++ b/tests/__snapshots__/upca-2/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5e93be9", "bytesECI": "f3999a1", "text": "181497000879", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/12/slow-0.json b/tests/__snapshots__/upca-2/12/slow-0.json index 6973f717..bebb6ea2 100644 --- a/tests/__snapshots__/upca-2/12/slow-0.json +++ b/tests/__snapshots__/upca-2/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5e93be9", "bytesECI": "f3999a1", "text": "181497000879", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/12/slow-180.json b/tests/__snapshots__/upca-2/12/slow-180.json index 0694ec1b..0c1bc3dc 100644 --- a/tests/__snapshots__/upca-2/12/slow-180.json +++ b/tests/__snapshots__/upca-2/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5e93be9", "bytesECI": "f3999a1", "text": "181497000879", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/14/fast-0.json b/tests/__snapshots__/upca-2/14/fast-0.json index f7fb3027..7d959285 100644 --- a/tests/__snapshots__/upca-2/14/fast-0.json +++ b/tests/__snapshots__/upca-2/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6b81636", "bytesECI": "76e27ed", "text": "051000000675", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/14/fast-180.json b/tests/__snapshots__/upca-2/14/fast-180.json index bb57542c..adfde334 100644 --- a/tests/__snapshots__/upca-2/14/fast-180.json +++ b/tests/__snapshots__/upca-2/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6b81636", "bytesECI": "76e27ed", "text": "051000000675", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/14/slow-0.json b/tests/__snapshots__/upca-2/14/slow-0.json index a06e3fc8..a45a743b 100644 --- a/tests/__snapshots__/upca-2/14/slow-0.json +++ b/tests/__snapshots__/upca-2/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6b81636", "bytesECI": "76e27ed", "text": "051000000675", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/14/slow-180.json b/tests/__snapshots__/upca-2/14/slow-180.json index b4f302df..d9aa2011 100644 --- a/tests/__snapshots__/upca-2/14/slow-180.json +++ b/tests/__snapshots__/upca-2/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6b81636", "bytesECI": "76e27ed", "text": "051000000675", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/16/fast-0.json b/tests/__snapshots__/upca-2/16/fast-0.json index 01ab4e76..ceb1d35a 100644 --- a/tests/__snapshots__/upca-2/16/fast-0.json +++ b/tests/__snapshots__/upca-2/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6b81636", "bytesECI": "76e27ed", "text": "051000000675", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/16/fast-180.json b/tests/__snapshots__/upca-2/16/fast-180.json index 46832484..3ad5856d 100644 --- a/tests/__snapshots__/upca-2/16/fast-180.json +++ b/tests/__snapshots__/upca-2/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6b81636", "bytesECI": "76e27ed", "text": "051000000675", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/16/slow-0.json b/tests/__snapshots__/upca-2/16/slow-0.json index 758bcc41..59a40f4d 100644 --- a/tests/__snapshots__/upca-2/16/slow-0.json +++ b/tests/__snapshots__/upca-2/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6b81636", "bytesECI": "76e27ed", "text": "051000000675", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/16/slow-180.json b/tests/__snapshots__/upca-2/16/slow-180.json index 16a49991..47410d0a 100644 --- a/tests/__snapshots__/upca-2/16/slow-180.json +++ b/tests/__snapshots__/upca-2/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6b81636", "bytesECI": "76e27ed", "text": "051000000675", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/23/fast-0.json b/tests/__snapshots__/upca-2/23/fast-0.json index 3abff4a6..750966d1 100644 --- a/tests/__snapshots__/upca-2/23/fast-0.json +++ b/tests/__snapshots__/upca-2/23/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/23/fast-180.json b/tests/__snapshots__/upca-2/23/fast-180.json index 66aab567..3effe650 100644 --- a/tests/__snapshots__/upca-2/23/fast-180.json +++ b/tests/__snapshots__/upca-2/23/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/23/slow-0.json b/tests/__snapshots__/upca-2/23/slow-0.json index 3f4a8226..b9d4edc9 100644 --- a/tests/__snapshots__/upca-2/23/slow-0.json +++ b/tests/__snapshots__/upca-2/23/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/23/slow-180.json b/tests/__snapshots__/upca-2/23/slow-180.json index c13b61eb..fc6c22a1 100644 --- a/tests/__snapshots__/upca-2/23/slow-180.json +++ b/tests/__snapshots__/upca-2/23/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/24/fast-0.json b/tests/__snapshots__/upca-2/24/fast-0.json index f6c6f4a3..6741e41f 100644 --- a/tests/__snapshots__/upca-2/24/fast-0.json +++ b/tests/__snapshots__/upca-2/24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/24/fast-180.json b/tests/__snapshots__/upca-2/24/fast-180.json index 06e5ddd4..70f64508 100644 --- a/tests/__snapshots__/upca-2/24/fast-180.json +++ b/tests/__snapshots__/upca-2/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/24/slow-0.json b/tests/__snapshots__/upca-2/24/slow-0.json index c8ef5a28..1dbc54c8 100644 --- a/tests/__snapshots__/upca-2/24/slow-0.json +++ b/tests/__snapshots__/upca-2/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/24/slow-180.json b/tests/__snapshots__/upca-2/24/slow-180.json index ca977a1a..692255eb 100644 --- a/tests/__snapshots__/upca-2/24/slow-180.json +++ b/tests/__snapshots__/upca-2/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/25/fast-0.json b/tests/__snapshots__/upca-2/25/fast-0.json index 3619cdcd..b486fa9e 100644 --- a/tests/__snapshots__/upca-2/25/fast-0.json +++ b/tests/__snapshots__/upca-2/25/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/25/slow-0.json b/tests/__snapshots__/upca-2/25/slow-0.json index bcf47de0..41208f99 100644 --- a/tests/__snapshots__/upca-2/25/slow-0.json +++ b/tests/__snapshots__/upca-2/25/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/25/slow-180.json b/tests/__snapshots__/upca-2/25/slow-180.json index 266c66bd..bb80b0c4 100644 --- a/tests/__snapshots__/upca-2/25/slow-180.json +++ b/tests/__snapshots__/upca-2/25/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/26/fast-0.json b/tests/__snapshots__/upca-2/26/fast-0.json index 80a58432..ea8c64a0 100644 --- a/tests/__snapshots__/upca-2/26/fast-0.json +++ b/tests/__snapshots__/upca-2/26/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/26/fast-180.json b/tests/__snapshots__/upca-2/26/fast-180.json index 9d32ad47..4332c9fb 100644 --- a/tests/__snapshots__/upca-2/26/fast-180.json +++ b/tests/__snapshots__/upca-2/26/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/26/slow-0.json b/tests/__snapshots__/upca-2/26/slow-0.json index b2f41ed3..38410061 100644 --- a/tests/__snapshots__/upca-2/26/slow-0.json +++ b/tests/__snapshots__/upca-2/26/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/26/slow-180.json b/tests/__snapshots__/upca-2/26/slow-180.json index e65d477b..879071f8 100644 --- a/tests/__snapshots__/upca-2/26/slow-180.json +++ b/tests/__snapshots__/upca-2/26/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/29/fast-0.json b/tests/__snapshots__/upca-2/29/fast-0.json index c0666189..9e35c177 100644 --- a/tests/__snapshots__/upca-2/29/fast-0.json +++ b/tests/__snapshots__/upca-2/29/fast-0.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/29/fast-180.json b/tests/__snapshots__/upca-2/29/fast-180.json index 768981df..c740526e 100644 --- a/tests/__snapshots__/upca-2/29/fast-180.json +++ b/tests/__snapshots__/upca-2/29/fast-180.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/29/slow-0.json b/tests/__snapshots__/upca-2/29/slow-0.json index 644ab3b9..a3fa05b8 100644 --- a/tests/__snapshots__/upca-2/29/slow-0.json +++ b/tests/__snapshots__/upca-2/29/slow-0.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/29/slow-180.json b/tests/__snapshots__/upca-2/29/slow-180.json index b2d3283e..24184503 100644 --- a/tests/__snapshots__/upca-2/29/slow-180.json +++ b/tests/__snapshots__/upca-2/29/slow-180.json @@ -5,7 +5,7 @@ "bytes": "5652413", "bytesECI": "a6dbeda", "text": "752050200137", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/32/slow-0.json b/tests/__snapshots__/upca-2/32/slow-0.json index 9bf5552c..9000efa8 100644 --- a/tests/__snapshots__/upca-2/32/slow-0.json +++ b/tests/__snapshots__/upca-2/32/slow-0.json @@ -5,7 +5,7 @@ "bytes": "83934dd", "bytesECI": "36350b6", "text": "899684001003", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/32/slow-180.json b/tests/__snapshots__/upca-2/32/slow-180.json index 963839a8..80df0146 100644 --- a/tests/__snapshots__/upca-2/32/slow-180.json +++ b/tests/__snapshots__/upca-2/32/slow-180.json @@ -5,7 +5,7 @@ "bytes": "83934dd", "bytesECI": "36350b6", "text": "899684001003", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/33/fast-0.json b/tests/__snapshots__/upca-2/33/fast-0.json index 3f66bd51..c9eaa1ef 100644 --- a/tests/__snapshots__/upca-2/33/fast-0.json +++ b/tests/__snapshots__/upca-2/33/fast-0.json @@ -5,7 +5,7 @@ "bytes": "83934dd", "bytesECI": "36350b6", "text": "899684001003", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/33/fast-180.json b/tests/__snapshots__/upca-2/33/fast-180.json index ee4e08d4..fba227f9 100644 --- a/tests/__snapshots__/upca-2/33/fast-180.json +++ b/tests/__snapshots__/upca-2/33/fast-180.json @@ -5,7 +5,7 @@ "bytes": "83934dd", "bytesECI": "36350b6", "text": "899684001003", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/33/slow-0.json b/tests/__snapshots__/upca-2/33/slow-0.json index 169d3128..75e7a89a 100644 --- a/tests/__snapshots__/upca-2/33/slow-0.json +++ b/tests/__snapshots__/upca-2/33/slow-0.json @@ -5,7 +5,7 @@ "bytes": "83934dd", "bytesECI": "36350b6", "text": "899684001003", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/33/slow-180.json b/tests/__snapshots__/upca-2/33/slow-180.json index 31c2aaf6..d6e948af 100644 --- a/tests/__snapshots__/upca-2/33/slow-180.json +++ b/tests/__snapshots__/upca-2/33/slow-180.json @@ -5,7 +5,7 @@ "bytes": "83934dd", "bytesECI": "36350b6", "text": "899684001003", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/35/slow-0.json b/tests/__snapshots__/upca-2/35/slow-0.json index 2e5d1451..c58d1f08 100644 --- a/tests/__snapshots__/upca-2/35/slow-0.json +++ b/tests/__snapshots__/upca-2/35/slow-0.json @@ -5,7 +5,7 @@ "bytes": "83934dd", "bytesECI": "36350b6", "text": "899684001003", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/35/slow-180.json b/tests/__snapshots__/upca-2/35/slow-180.json index 53532161..ad36007a 100644 --- a/tests/__snapshots__/upca-2/35/slow-180.json +++ b/tests/__snapshots__/upca-2/35/slow-180.json @@ -5,7 +5,7 @@ "bytes": "83934dd", "bytesECI": "36350b6", "text": "899684001003", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/37/fast-180.json b/tests/__snapshots__/upca-2/37/fast-180.json index 6192b801..d548ef70 100644 --- a/tests/__snapshots__/upca-2/37/fast-180.json +++ b/tests/__snapshots__/upca-2/37/fast-180.json @@ -5,7 +5,7 @@ "bytes": "83934dd", "bytesECI": "36350b6", "text": "899684001003", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/37/slow-0.json b/tests/__snapshots__/upca-2/37/slow-0.json index 532a6b98..3ec8d1b8 100644 --- a/tests/__snapshots__/upca-2/37/slow-0.json +++ b/tests/__snapshots__/upca-2/37/slow-0.json @@ -5,7 +5,7 @@ "bytes": "83934dd", "bytesECI": "36350b6", "text": "899684001003", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/37/slow-180.json b/tests/__snapshots__/upca-2/37/slow-180.json index b4aee690..eac558f0 100644 --- a/tests/__snapshots__/upca-2/37/slow-180.json +++ b/tests/__snapshots__/upca-2/37/slow-180.json @@ -5,7 +5,7 @@ "bytes": "83934dd", "bytesECI": "36350b6", "text": "899684001003", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/39/fast-0.json b/tests/__snapshots__/upca-2/39/fast-0.json index 8a563303..83453441 100644 --- a/tests/__snapshots__/upca-2/39/fast-0.json +++ b/tests/__snapshots__/upca-2/39/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d3a85e8", "bytesECI": "9b612e6", "text": "012546619592", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/39/fast-180.json b/tests/__snapshots__/upca-2/39/fast-180.json index 6683f00a..b5c4e418 100644 --- a/tests/__snapshots__/upca-2/39/fast-180.json +++ b/tests/__snapshots__/upca-2/39/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d3a85e8", "bytesECI": "9b612e6", "text": "012546619592", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/39/slow-0.json b/tests/__snapshots__/upca-2/39/slow-0.json index 8a563303..83453441 100644 --- a/tests/__snapshots__/upca-2/39/slow-0.json +++ b/tests/__snapshots__/upca-2/39/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d3a85e8", "bytesECI": "9b612e6", "text": "012546619592", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/39/slow-180.json b/tests/__snapshots__/upca-2/39/slow-180.json index 6683f00a..b5c4e418 100644 --- a/tests/__snapshots__/upca-2/39/slow-180.json +++ b/tests/__snapshots__/upca-2/39/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d3a85e8", "bytesECI": "9b612e6", "text": "012546619592", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/42/fast-0.json b/tests/__snapshots__/upca-2/42/fast-0.json index 630dba9f..da43d131 100644 --- a/tests/__snapshots__/upca-2/42/fast-0.json +++ b/tests/__snapshots__/upca-2/42/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d3a85e8", "bytesECI": "9b612e6", "text": "012546619592", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/42/fast-180.json b/tests/__snapshots__/upca-2/42/fast-180.json index d6ba17b8..a17f44a6 100644 --- a/tests/__snapshots__/upca-2/42/fast-180.json +++ b/tests/__snapshots__/upca-2/42/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d3a85e8", "bytesECI": "9b612e6", "text": "012546619592", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/42/slow-0.json b/tests/__snapshots__/upca-2/42/slow-0.json index 08dc0922..48b76331 100644 --- a/tests/__snapshots__/upca-2/42/slow-0.json +++ b/tests/__snapshots__/upca-2/42/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d3a85e8", "bytesECI": "9b612e6", "text": "012546619592", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/42/slow-180.json b/tests/__snapshots__/upca-2/42/slow-180.json index eff6326a..61d87015 100644 --- a/tests/__snapshots__/upca-2/42/slow-180.json +++ b/tests/__snapshots__/upca-2/42/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d3a85e8", "bytesECI": "9b612e6", "text": "012546619592", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/45/fast-0.json b/tests/__snapshots__/upca-2/45/fast-0.json index fc57bb5c..80627db6 100644 --- a/tests/__snapshots__/upca-2/45/fast-0.json +++ b/tests/__snapshots__/upca-2/45/fast-0.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/45/fast-180.json b/tests/__snapshots__/upca-2/45/fast-180.json index ee86a421..cd13be10 100644 --- a/tests/__snapshots__/upca-2/45/fast-180.json +++ b/tests/__snapshots__/upca-2/45/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/45/slow-0.json b/tests/__snapshots__/upca-2/45/slow-0.json index 705d9b24..438ecb23 100644 --- a/tests/__snapshots__/upca-2/45/slow-0.json +++ b/tests/__snapshots__/upca-2/45/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/45/slow-180.json b/tests/__snapshots__/upca-2/45/slow-180.json index c863c324..b9a2bc93 100644 --- a/tests/__snapshots__/upca-2/45/slow-180.json +++ b/tests/__snapshots__/upca-2/45/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/46/fast-0.json b/tests/__snapshots__/upca-2/46/fast-0.json index 156a4def..a58d3ac0 100644 --- a/tests/__snapshots__/upca-2/46/fast-0.json +++ b/tests/__snapshots__/upca-2/46/fast-0.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/46/fast-180.json b/tests/__snapshots__/upca-2/46/fast-180.json index 0eebb610..b337087e 100644 --- a/tests/__snapshots__/upca-2/46/fast-180.json +++ b/tests/__snapshots__/upca-2/46/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/46/slow-0.json b/tests/__snapshots__/upca-2/46/slow-0.json index 0e64ec7f..61c60cd6 100644 --- a/tests/__snapshots__/upca-2/46/slow-0.json +++ b/tests/__snapshots__/upca-2/46/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/46/slow-180.json b/tests/__snapshots__/upca-2/46/slow-180.json index 700ecfb3..6ddf4137 100644 --- a/tests/__snapshots__/upca-2/46/slow-180.json +++ b/tests/__snapshots__/upca-2/46/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/49/slow-0.json b/tests/__snapshots__/upca-2/49/slow-0.json index f93c2009..ee9d35fe 100644 --- a/tests/__snapshots__/upca-2/49/slow-0.json +++ b/tests/__snapshots__/upca-2/49/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/49/slow-180.json b/tests/__snapshots__/upca-2/49/slow-180.json index 7f8370d2..3762a15f 100644 --- a/tests/__snapshots__/upca-2/49/slow-180.json +++ b/tests/__snapshots__/upca-2/49/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/51/fast-0.json b/tests/__snapshots__/upca-2/51/fast-0.json index 0b62bbdb..9361dd6c 100644 --- a/tests/__snapshots__/upca-2/51/fast-0.json +++ b/tests/__snapshots__/upca-2/51/fast-0.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/51/fast-180.json b/tests/__snapshots__/upca-2/51/fast-180.json index 669ecc37..ece9b775 100644 --- a/tests/__snapshots__/upca-2/51/fast-180.json +++ b/tests/__snapshots__/upca-2/51/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/51/slow-0.json b/tests/__snapshots__/upca-2/51/slow-0.json index 7ecc15c9..6e25f199 100644 --- a/tests/__snapshots__/upca-2/51/slow-0.json +++ b/tests/__snapshots__/upca-2/51/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-2/51/slow-180.json b/tests/__snapshots__/upca-2/51/slow-180.json index 1534e229..9d472373 100644 --- a/tests/__snapshots__/upca-2/51/slow-180.json +++ b/tests/__snapshots__/upca-2/51/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40afc86", "bytesECI": "e3e56af", "text": "075720003259", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/11/slow-0.json b/tests/__snapshots__/upca-3/11/slow-0.json index 56e86d21..00520f09 100644 --- a/tests/__snapshots__/upca-3/11/slow-0.json +++ b/tests/__snapshots__/upca-3/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/11/slow-180.json b/tests/__snapshots__/upca-3/11/slow-180.json index aa18c5ed..a3ad1b09 100644 --- a/tests/__snapshots__/upca-3/11/slow-180.json +++ b/tests/__snapshots__/upca-3/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/12/fast-0.json b/tests/__snapshots__/upca-3/12/fast-0.json index 4d741d22..aaefb084 100644 --- a/tests/__snapshots__/upca-3/12/fast-0.json +++ b/tests/__snapshots__/upca-3/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/12/fast-180.json b/tests/__snapshots__/upca-3/12/fast-180.json index fd8937e7..80a95699 100644 --- a/tests/__snapshots__/upca-3/12/fast-180.json +++ b/tests/__snapshots__/upca-3/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/12/slow-0.json b/tests/__snapshots__/upca-3/12/slow-0.json index 4d741d22..aaefb084 100644 --- a/tests/__snapshots__/upca-3/12/slow-0.json +++ b/tests/__snapshots__/upca-3/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/12/slow-180.json b/tests/__snapshots__/upca-3/12/slow-180.json index fd8937e7..80a95699 100644 --- a/tests/__snapshots__/upca-3/12/slow-180.json +++ b/tests/__snapshots__/upca-3/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/13/slow-0.json b/tests/__snapshots__/upca-3/13/slow-0.json index f3802a64..f6332f60 100644 --- a/tests/__snapshots__/upca-3/13/slow-0.json +++ b/tests/__snapshots__/upca-3/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/13/slow-180.json b/tests/__snapshots__/upca-3/13/slow-180.json index e13a78a1..1d194d57 100644 --- a/tests/__snapshots__/upca-3/13/slow-180.json +++ b/tests/__snapshots__/upca-3/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/14/slow-0.json b/tests/__snapshots__/upca-3/14/slow-0.json index 8ac2e193..5d865cd2 100644 --- a/tests/__snapshots__/upca-3/14/slow-0.json +++ b/tests/__snapshots__/upca-3/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/14/slow-180.json b/tests/__snapshots__/upca-3/14/slow-180.json index c0edf9c1..63d19435 100644 --- a/tests/__snapshots__/upca-3/14/slow-180.json +++ b/tests/__snapshots__/upca-3/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/15/fast-0.json b/tests/__snapshots__/upca-3/15/fast-0.json index 4fad63b2..2317040e 100644 --- a/tests/__snapshots__/upca-3/15/fast-0.json +++ b/tests/__snapshots__/upca-3/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/15/fast-180.json b/tests/__snapshots__/upca-3/15/fast-180.json index cd25eb6b..6dbdd461 100644 --- a/tests/__snapshots__/upca-3/15/fast-180.json +++ b/tests/__snapshots__/upca-3/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/15/slow-0.json b/tests/__snapshots__/upca-3/15/slow-0.json index 10426b9a..3608b505 100644 --- a/tests/__snapshots__/upca-3/15/slow-0.json +++ b/tests/__snapshots__/upca-3/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/15/slow-180.json b/tests/__snapshots__/upca-3/15/slow-180.json index a7c1b97b..3bd327b0 100644 --- a/tests/__snapshots__/upca-3/15/slow-180.json +++ b/tests/__snapshots__/upca-3/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/16/slow-0.json b/tests/__snapshots__/upca-3/16/slow-0.json index 8c1f6091..d0d3ada1 100644 --- a/tests/__snapshots__/upca-3/16/slow-0.json +++ b/tests/__snapshots__/upca-3/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/16/slow-180.json b/tests/__snapshots__/upca-3/16/slow-180.json index 16ebb4c8..c77dc4af 100644 --- a/tests/__snapshots__/upca-3/16/slow-180.json +++ b/tests/__snapshots__/upca-3/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/17/fast-0.json b/tests/__snapshots__/upca-3/17/fast-0.json index 888d6880..3452455f 100644 --- a/tests/__snapshots__/upca-3/17/fast-0.json +++ b/tests/__snapshots__/upca-3/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/17/fast-180.json b/tests/__snapshots__/upca-3/17/fast-180.json index 3f7ba9f9..412db8da 100644 --- a/tests/__snapshots__/upca-3/17/fast-180.json +++ b/tests/__snapshots__/upca-3/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/17/slow-0.json b/tests/__snapshots__/upca-3/17/slow-0.json index 3f583e03..c8de60ef 100644 --- a/tests/__snapshots__/upca-3/17/slow-0.json +++ b/tests/__snapshots__/upca-3/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/17/slow-180.json b/tests/__snapshots__/upca-3/17/slow-180.json index 663fd87b..adb0c8ac 100644 --- a/tests/__snapshots__/upca-3/17/slow-180.json +++ b/tests/__snapshots__/upca-3/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/18/fast-0.json b/tests/__snapshots__/upca-3/18/fast-0.json index c0b7f976..4394f4c2 100644 --- a/tests/__snapshots__/upca-3/18/fast-0.json +++ b/tests/__snapshots__/upca-3/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/18/fast-180.json b/tests/__snapshots__/upca-3/18/fast-180.json index b4bdb6ad..a1fc1d81 100644 --- a/tests/__snapshots__/upca-3/18/fast-180.json +++ b/tests/__snapshots__/upca-3/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/18/slow-0.json b/tests/__snapshots__/upca-3/18/slow-0.json index 752499a0..362c198e 100644 --- a/tests/__snapshots__/upca-3/18/slow-0.json +++ b/tests/__snapshots__/upca-3/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/18/slow-180.json b/tests/__snapshots__/upca-3/18/slow-180.json index dfcd3f35..e98034af 100644 --- a/tests/__snapshots__/upca-3/18/slow-180.json +++ b/tests/__snapshots__/upca-3/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/19/fast-0.json b/tests/__snapshots__/upca-3/19/fast-0.json index 84421919..ff6a4f43 100644 --- a/tests/__snapshots__/upca-3/19/fast-0.json +++ b/tests/__snapshots__/upca-3/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/19/fast-180.json b/tests/__snapshots__/upca-3/19/fast-180.json index d5b33bd7..b1d94db9 100644 --- a/tests/__snapshots__/upca-3/19/fast-180.json +++ b/tests/__snapshots__/upca-3/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/19/slow-0.json b/tests/__snapshots__/upca-3/19/slow-0.json index ece2aca3..972f78de 100644 --- a/tests/__snapshots__/upca-3/19/slow-0.json +++ b/tests/__snapshots__/upca-3/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/19/slow-180.json b/tests/__snapshots__/upca-3/19/slow-180.json index 8c7e2ad1..2f26f8e6 100644 --- a/tests/__snapshots__/upca-3/19/slow-180.json +++ b/tests/__snapshots__/upca-3/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/20/fast-0.json b/tests/__snapshots__/upca-3/20/fast-0.json index 9d450adb..4545b4e0 100644 --- a/tests/__snapshots__/upca-3/20/fast-0.json +++ b/tests/__snapshots__/upca-3/20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/20/fast-180.json b/tests/__snapshots__/upca-3/20/fast-180.json index 5b71f58b..053891a0 100644 --- a/tests/__snapshots__/upca-3/20/fast-180.json +++ b/tests/__snapshots__/upca-3/20/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/20/slow-0.json b/tests/__snapshots__/upca-3/20/slow-0.json index 0fc014c7..51ed705e 100644 --- a/tests/__snapshots__/upca-3/20/slow-0.json +++ b/tests/__snapshots__/upca-3/20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/20/slow-180.json b/tests/__snapshots__/upca-3/20/slow-180.json index de63966c..3a7aa9f4 100644 --- a/tests/__snapshots__/upca-3/20/slow-180.json +++ b/tests/__snapshots__/upca-3/20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/21/fast-0.json b/tests/__snapshots__/upca-3/21/fast-0.json index bdccdb14..431b3073 100644 --- a/tests/__snapshots__/upca-3/21/fast-0.json +++ b/tests/__snapshots__/upca-3/21/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/21/fast-180.json b/tests/__snapshots__/upca-3/21/fast-180.json index 5d59ed84..f8d424eb 100644 --- a/tests/__snapshots__/upca-3/21/fast-180.json +++ b/tests/__snapshots__/upca-3/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/21/slow-0.json b/tests/__snapshots__/upca-3/21/slow-0.json index a556b90a..b0a4b1b2 100644 --- a/tests/__snapshots__/upca-3/21/slow-0.json +++ b/tests/__snapshots__/upca-3/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-3/21/slow-180.json b/tests/__snapshots__/upca-3/21/slow-180.json index 5d59ed84..f8d424eb 100644 --- a/tests/__snapshots__/upca-3/21/slow-180.json +++ b/tests/__snapshots__/upca-3/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7b08e96", "bytesECI": "e374a50", "text": "854818000116", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/1/slow-0.json b/tests/__snapshots__/upca-4/1/slow-0.json index 3601bd93..7ec6e71d 100644 --- a/tests/__snapshots__/upca-4/1/slow-0.json +++ b/tests/__snapshots__/upca-4/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "adc3d3e", "bytesECI": "e344fa9", "text": "9074932437075", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/1/slow-180.json b/tests/__snapshots__/upca-4/1/slow-180.json index 7fda1e4f..de72f41a 100644 --- a/tests/__snapshots__/upca-4/1/slow-180.json +++ b/tests/__snapshots__/upca-4/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "adc3d3e", "bytesECI": "e344fa9", "text": "9074932437075", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/10/fast-0.json b/tests/__snapshots__/upca-4/10/fast-0.json index 54e9c5b8..97c9598b 100644 --- a/tests/__snapshots__/upca-4/10/fast-0.json +++ b/tests/__snapshots__/upca-4/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "367f21c", "bytesECI": "1fe80ff", "text": "066721010995", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/10/fast-180.json b/tests/__snapshots__/upca-4/10/fast-180.json index c2127241..022857f1 100644 --- a/tests/__snapshots__/upca-4/10/fast-180.json +++ b/tests/__snapshots__/upca-4/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "367f21c", "bytesECI": "1fe80ff", "text": "066721010995", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/10/slow-0.json b/tests/__snapshots__/upca-4/10/slow-0.json index abb8ce99..69cfc1f0 100644 --- a/tests/__snapshots__/upca-4/10/slow-0.json +++ b/tests/__snapshots__/upca-4/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "0130940", "bytesECI": "0f6b49f", "text": "9000771010995", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/10/slow-180.json b/tests/__snapshots__/upca-4/10/slow-180.json index 5eb08d7f..32dd3f5e 100644 --- a/tests/__snapshots__/upca-4/10/slow-180.json +++ b/tests/__snapshots__/upca-4/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "0130940", "bytesECI": "0f6b49f", "text": "9000771010995", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/11/fast-0.json b/tests/__snapshots__/upca-4/11/fast-0.json index 54b810a9..f992febc 100644 --- a/tests/__snapshots__/upca-4/11/fast-0.json +++ b/tests/__snapshots__/upca-4/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "cce2c59", "bytesECI": "6ac44cb", "text": "059290522143", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/11/fast-180.json b/tests/__snapshots__/upca-4/11/fast-180.json index eb7c4da3..2ecf4c62 100644 --- a/tests/__snapshots__/upca-4/11/fast-180.json +++ b/tests/__snapshots__/upca-4/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "cce2c59", "bytesECI": "6ac44cb", "text": "059290522143", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/11/slow-0.json b/tests/__snapshots__/upca-4/11/slow-0.json index db813ccf..432cbe49 100644 --- a/tests/__snapshots__/upca-4/11/slow-0.json +++ b/tests/__snapshots__/upca-4/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "cce2c59", "bytesECI": "6ac44cb", "text": "059290522143", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/11/slow-180.json b/tests/__snapshots__/upca-4/11/slow-180.json index a4809b14..51407984 100644 --- a/tests/__snapshots__/upca-4/11/slow-180.json +++ b/tests/__snapshots__/upca-4/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "cce2c59", "bytesECI": "6ac44cb", "text": "059290522143", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/12/slow-0.json b/tests/__snapshots__/upca-4/12/slow-0.json index 85ffa4b0..deae036f 100644 --- a/tests/__snapshots__/upca-4/12/slow-0.json +++ b/tests/__snapshots__/upca-4/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "1937520", "bytesECI": "f218379", "text": "057961000228", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/12/slow-180.json b/tests/__snapshots__/upca-4/12/slow-180.json index b098572a..a07b0f76 100644 --- a/tests/__snapshots__/upca-4/12/slow-180.json +++ b/tests/__snapshots__/upca-4/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "1937520", "bytesECI": "f218379", "text": "057961000228", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/13/fast-0.json b/tests/__snapshots__/upca-4/13/fast-0.json index 8d17eb2e..9c3450fe 100644 --- a/tests/__snapshots__/upca-4/13/fast-0.json +++ b/tests/__snapshots__/upca-4/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "cce2c59", "bytesECI": "6ac44cb", "text": "059290522143", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/13/fast-180.json b/tests/__snapshots__/upca-4/13/fast-180.json index 36d228ef..2e41c8ea 100644 --- a/tests/__snapshots__/upca-4/13/fast-180.json +++ b/tests/__snapshots__/upca-4/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "cce2c59", "bytesECI": "6ac44cb", "text": "059290522143", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/13/slow-0.json b/tests/__snapshots__/upca-4/13/slow-0.json index 4554985a..59b8af65 100644 --- a/tests/__snapshots__/upca-4/13/slow-0.json +++ b/tests/__snapshots__/upca-4/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "cce2c59", "bytesECI": "6ac44cb", "text": "059290522143", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/13/slow-180.json b/tests/__snapshots__/upca-4/13/slow-180.json index 0dce7d48..2564b262 100644 --- a/tests/__snapshots__/upca-4/13/slow-180.json +++ b/tests/__snapshots__/upca-4/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "cce2c59", "bytesECI": "6ac44cb", "text": "059290522143", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/14/fast-0.json b/tests/__snapshots__/upca-4/14/fast-0.json index 5e3e3c7a..f0866229 100644 --- a/tests/__snapshots__/upca-4/14/fast-0.json +++ b/tests/__snapshots__/upca-4/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "6390aaf", "bytesECI": "0eae959", "text": "066721017185", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/14/fast-180.json b/tests/__snapshots__/upca-4/14/fast-180.json index cae38c6f..2e9cfbe9 100644 --- a/tests/__snapshots__/upca-4/14/fast-180.json +++ b/tests/__snapshots__/upca-4/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "6390aaf", "bytesECI": "0eae959", "text": "066721017185", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/14/slow-0.json b/tests/__snapshots__/upca-4/14/slow-0.json index 8f3af625..98b7908e 100644 --- a/tests/__snapshots__/upca-4/14/slow-0.json +++ b/tests/__snapshots__/upca-4/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "6390aaf", "bytesECI": "0eae959", "text": "066721017185", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/14/slow-180.json b/tests/__snapshots__/upca-4/14/slow-180.json index 2b38d2dd..df3a6bab 100644 --- a/tests/__snapshots__/upca-4/14/slow-180.json +++ b/tests/__snapshots__/upca-4/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "6390aaf", "bytesECI": "0eae959", "text": "066721017185", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/15/slow-0.json b/tests/__snapshots__/upca-4/15/slow-0.json index 1d6c7e5b..9918475a 100644 --- a/tests/__snapshots__/upca-4/15/slow-0.json +++ b/tests/__snapshots__/upca-4/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "df1c229", "bytesECI": "db375d3", "text": "059290571110", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/15/slow-180.json b/tests/__snapshots__/upca-4/15/slow-180.json index 39d0e09f..2302c85e 100644 --- a/tests/__snapshots__/upca-4/15/slow-180.json +++ b/tests/__snapshots__/upca-4/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "df1c229", "bytesECI": "db375d3", "text": "059290571110", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/16/slow-0.json b/tests/__snapshots__/upca-4/16/slow-0.json index f1ac3aee..c3eebc59 100644 --- a/tests/__snapshots__/upca-4/16/slow-0.json +++ b/tests/__snapshots__/upca-4/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8e3eac6", "bytesECI": "41ddeef", "text": "067932000263", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/16/slow-180.json b/tests/__snapshots__/upca-4/16/slow-180.json index 742f8209..88af6264 100644 --- a/tests/__snapshots__/upca-4/16/slow-180.json +++ b/tests/__snapshots__/upca-4/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8e3eac6", "bytesECI": "41ddeef", "text": "067932000263", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/17/fast-0.json b/tests/__snapshots__/upca-4/17/fast-0.json index 3b1d0f75..c1ca1739 100644 --- a/tests/__snapshots__/upca-4/17/fast-0.json +++ b/tests/__snapshots__/upca-4/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c43b434", "bytesECI": "c90425a", "text": "069000061015", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/17/fast-180.json b/tests/__snapshots__/upca-4/17/fast-180.json index dc136b1f..86534f27 100644 --- a/tests/__snapshots__/upca-4/17/fast-180.json +++ b/tests/__snapshots__/upca-4/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "c43b434", "bytesECI": "c90425a", "text": "069000061015", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/17/slow-0.json b/tests/__snapshots__/upca-4/17/slow-0.json index 01759c43..042f9d18 100644 --- a/tests/__snapshots__/upca-4/17/slow-0.json +++ b/tests/__snapshots__/upca-4/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c43b434", "bytesECI": "c90425a", "text": "069000061015", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/17/slow-180.json b/tests/__snapshots__/upca-4/17/slow-180.json index 5ee9829a..10c9f5c9 100644 --- a/tests/__snapshots__/upca-4/17/slow-180.json +++ b/tests/__snapshots__/upca-4/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c43b434", "bytesECI": "c90425a", "text": "069000061015", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/18/fast-0.json b/tests/__snapshots__/upca-4/18/fast-0.json index 916696e8..439b774d 100644 --- a/tests/__snapshots__/upca-4/18/fast-0.json +++ b/tests/__snapshots__/upca-4/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "7fdfd43", "bytesECI": "9cf797b", "text": "071691155775", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/18/fast-180.json b/tests/__snapshots__/upca-4/18/fast-180.json index 2a0db37a..a9976cab 100644 --- a/tests/__snapshots__/upca-4/18/fast-180.json +++ b/tests/__snapshots__/upca-4/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "7fdfd43", "bytesECI": "9cf797b", "text": "071691155775", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/18/slow-0.json b/tests/__snapshots__/upca-4/18/slow-0.json index 1f325f28..f9636192 100644 --- a/tests/__snapshots__/upca-4/18/slow-0.json +++ b/tests/__snapshots__/upca-4/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7fdfd43", "bytesECI": "9cf797b", "text": "071691155775", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/18/slow-180.json b/tests/__snapshots__/upca-4/18/slow-180.json index c5ec92b7..031e739c 100644 --- a/tests/__snapshots__/upca-4/18/slow-180.json +++ b/tests/__snapshots__/upca-4/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7fdfd43", "bytesECI": "9cf797b", "text": "071691155775", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/19/fast-0.json b/tests/__snapshots__/upca-4/19/fast-0.json index 48129d7c..955495c0 100644 --- a/tests/__snapshots__/upca-4/19/fast-0.json +++ b/tests/__snapshots__/upca-4/19/fast-0.json @@ -5,7 +5,7 @@ "bytes": "23f2163", "bytesECI": "e275762", "text": "807648011401", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/19/fast-180.json b/tests/__snapshots__/upca-4/19/fast-180.json index 4a2b559a..82e9c754 100644 --- a/tests/__snapshots__/upca-4/19/fast-180.json +++ b/tests/__snapshots__/upca-4/19/fast-180.json @@ -5,7 +5,7 @@ "bytes": "23f2163", "bytesECI": "e275762", "text": "807648011401", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/19/slow-0.json b/tests/__snapshots__/upca-4/19/slow-0.json index 8a483356..bed078f5 100644 --- a/tests/__snapshots__/upca-4/19/slow-0.json +++ b/tests/__snapshots__/upca-4/19/slow-0.json @@ -5,7 +5,7 @@ "bytes": "23f2163", "bytesECI": "e275762", "text": "807648011401", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/19/slow-180.json b/tests/__snapshots__/upca-4/19/slow-180.json index 57cdd7fd..e84453ee 100644 --- a/tests/__snapshots__/upca-4/19/slow-180.json +++ b/tests/__snapshots__/upca-4/19/slow-180.json @@ -5,7 +5,7 @@ "bytes": "23f2163", "bytesECI": "e275762", "text": "807648011401", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/7/slow-0.json b/tests/__snapshots__/upca-4/7/slow-0.json index a77cbad7..324ed78a 100644 --- a/tests/__snapshots__/upca-4/7/slow-0.json +++ b/tests/__snapshots__/upca-4/7/slow-0.json @@ -5,7 +5,7 @@ "bytes": "7cd3f45", "bytesECI": "f38cb2e", "text": "023942431015", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/7/slow-180.json b/tests/__snapshots__/upca-4/7/slow-180.json index cfa6becf..4ef7cabd 100644 --- a/tests/__snapshots__/upca-4/7/slow-180.json +++ b/tests/__snapshots__/upca-4/7/slow-180.json @@ -5,7 +5,7 @@ "bytes": "7cd3f45", "bytesECI": "f38cb2e", "text": "023942431015", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/8/fast-0.json b/tests/__snapshots__/upca-4/8/fast-0.json index 59d10e43..06cc6625 100644 --- a/tests/__snapshots__/upca-4/8/fast-0.json +++ b/tests/__snapshots__/upca-4/8/fast-0.json @@ -5,7 +5,7 @@ "bytes": "3040afd", "bytesECI": "4ca5a86", "text": "060410049235", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/8/fast-180.json b/tests/__snapshots__/upca-4/8/fast-180.json index b664137f..8eb22b10 100644 --- a/tests/__snapshots__/upca-4/8/fast-180.json +++ b/tests/__snapshots__/upca-4/8/fast-180.json @@ -5,7 +5,7 @@ "bytes": "3040afd", "bytesECI": "4ca5a86", "text": "060410049235", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/8/slow-0.json b/tests/__snapshots__/upca-4/8/slow-0.json index 412e0df7..753e7e35 100644 --- a/tests/__snapshots__/upca-4/8/slow-0.json +++ b/tests/__snapshots__/upca-4/8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "3040afd", "bytesECI": "4ca5a86", "text": "060410049235", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-4/8/slow-180.json b/tests/__snapshots__/upca-4/8/slow-180.json index 7a1e8f49..8398cfcb 100644 --- a/tests/__snapshots__/upca-4/8/slow-180.json +++ b/tests/__snapshots__/upca-4/8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "3040afd", "bytesECI": "4ca5a86", "text": "060410049235", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/03/fast-0.json b/tests/__snapshots__/upca-5/03/fast-0.json index 9de02fe7..1322ff44 100644 --- a/tests/__snapshots__/upca-5/03/fast-0.json +++ b/tests/__snapshots__/upca-5/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/03/fast-180.json b/tests/__snapshots__/upca-5/03/fast-180.json index 8907de20..42a91ef8 100644 --- a/tests/__snapshots__/upca-5/03/fast-180.json +++ b/tests/__snapshots__/upca-5/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/03/slow-0.json b/tests/__snapshots__/upca-5/03/slow-0.json index c9b741eb..80a93e7e 100644 --- a/tests/__snapshots__/upca-5/03/slow-0.json +++ b/tests/__snapshots__/upca-5/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/03/slow-180.json b/tests/__snapshots__/upca-5/03/slow-180.json index 864baa9d..8edc7cea 100644 --- a/tests/__snapshots__/upca-5/03/slow-180.json +++ b/tests/__snapshots__/upca-5/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/04/fast-0.json b/tests/__snapshots__/upca-5/04/fast-0.json index a80d4537..d687dcb0 100644 --- a/tests/__snapshots__/upca-5/04/fast-0.json +++ b/tests/__snapshots__/upca-5/04/fast-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/04/fast-180.json b/tests/__snapshots__/upca-5/04/fast-180.json index 991ecffd..c8c1d021 100644 --- a/tests/__snapshots__/upca-5/04/fast-180.json +++ b/tests/__snapshots__/upca-5/04/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/04/slow-0.json b/tests/__snapshots__/upca-5/04/slow-0.json index 63f4b615..618c0b28 100644 --- a/tests/__snapshots__/upca-5/04/slow-0.json +++ b/tests/__snapshots__/upca-5/04/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/04/slow-180.json b/tests/__snapshots__/upca-5/04/slow-180.json index b8a55a58..3cb72123 100644 --- a/tests/__snapshots__/upca-5/04/slow-180.json +++ b/tests/__snapshots__/upca-5/04/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/05/fast-0.json b/tests/__snapshots__/upca-5/05/fast-0.json index bd8229b4..b3c21dc5 100644 --- a/tests/__snapshots__/upca-5/05/fast-0.json +++ b/tests/__snapshots__/upca-5/05/fast-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/05/fast-180.json b/tests/__snapshots__/upca-5/05/fast-180.json index 00b4ca0e..f7adac95 100644 --- a/tests/__snapshots__/upca-5/05/fast-180.json +++ b/tests/__snapshots__/upca-5/05/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/05/slow-0.json b/tests/__snapshots__/upca-5/05/slow-0.json index 77e3412f..f3b77e49 100644 --- a/tests/__snapshots__/upca-5/05/slow-0.json +++ b/tests/__snapshots__/upca-5/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/05/slow-180.json b/tests/__snapshots__/upca-5/05/slow-180.json index d46e2fad..4c5f231d 100644 --- a/tests/__snapshots__/upca-5/05/slow-180.json +++ b/tests/__snapshots__/upca-5/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/08/fast-0.json b/tests/__snapshots__/upca-5/08/fast-0.json index 25357966..ed455ee5 100644 --- a/tests/__snapshots__/upca-5/08/fast-0.json +++ b/tests/__snapshots__/upca-5/08/fast-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/08/fast-180.json b/tests/__snapshots__/upca-5/08/fast-180.json index 33288930..d8daaac7 100644 --- a/tests/__snapshots__/upca-5/08/fast-180.json +++ b/tests/__snapshots__/upca-5/08/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/08/slow-0.json b/tests/__snapshots__/upca-5/08/slow-0.json index 2ec83d98..6b7d6fe7 100644 --- a/tests/__snapshots__/upca-5/08/slow-0.json +++ b/tests/__snapshots__/upca-5/08/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/08/slow-180.json b/tests/__snapshots__/upca-5/08/slow-180.json index a5bc54d6..c2a1555f 100644 --- a/tests/__snapshots__/upca-5/08/slow-180.json +++ b/tests/__snapshots__/upca-5/08/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/09/fast-180.json b/tests/__snapshots__/upca-5/09/fast-180.json index 60fb38df..121c7ef1 100644 --- a/tests/__snapshots__/upca-5/09/fast-180.json +++ b/tests/__snapshots__/upca-5/09/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/09/slow-0.json b/tests/__snapshots__/upca-5/09/slow-0.json index a812168b..eeed1ccf 100644 --- a/tests/__snapshots__/upca-5/09/slow-0.json +++ b/tests/__snapshots__/upca-5/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/09/slow-180.json b/tests/__snapshots__/upca-5/09/slow-180.json index 622fa8b1..2781d0d0 100644 --- a/tests/__snapshots__/upca-5/09/slow-180.json +++ b/tests/__snapshots__/upca-5/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/11/fast-0.json b/tests/__snapshots__/upca-5/11/fast-0.json index 13e4c02f..74947bf7 100644 --- a/tests/__snapshots__/upca-5/11/fast-0.json +++ b/tests/__snapshots__/upca-5/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/11/fast-180.json b/tests/__snapshots__/upca-5/11/fast-180.json index c1ec0b7a..33823357 100644 --- a/tests/__snapshots__/upca-5/11/fast-180.json +++ b/tests/__snapshots__/upca-5/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/11/slow-0.json b/tests/__snapshots__/upca-5/11/slow-0.json index 1ed9f274..557c1540 100644 --- a/tests/__snapshots__/upca-5/11/slow-0.json +++ b/tests/__snapshots__/upca-5/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/11/slow-180.json b/tests/__snapshots__/upca-5/11/slow-180.json index 9a2108a9..69661229 100644 --- a/tests/__snapshots__/upca-5/11/slow-180.json +++ b/tests/__snapshots__/upca-5/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/13/fast-0.json b/tests/__snapshots__/upca-5/13/fast-0.json index abb57dbe..cce511ca 100644 --- a/tests/__snapshots__/upca-5/13/fast-0.json +++ b/tests/__snapshots__/upca-5/13/fast-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/13/fast-180.json b/tests/__snapshots__/upca-5/13/fast-180.json index 6fb28213..c3383c87 100644 --- a/tests/__snapshots__/upca-5/13/fast-180.json +++ b/tests/__snapshots__/upca-5/13/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/13/slow-0.json b/tests/__snapshots__/upca-5/13/slow-0.json index dcc9b71b..51e823e2 100644 --- a/tests/__snapshots__/upca-5/13/slow-0.json +++ b/tests/__snapshots__/upca-5/13/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/13/slow-180.json b/tests/__snapshots__/upca-5/13/slow-180.json index e5d3fa0d..36c77c05 100644 --- a/tests/__snapshots__/upca-5/13/slow-180.json +++ b/tests/__snapshots__/upca-5/13/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/14/fast-0.json b/tests/__snapshots__/upca-5/14/fast-0.json index 543ebe51..89a87a7b 100644 --- a/tests/__snapshots__/upca-5/14/fast-0.json +++ b/tests/__snapshots__/upca-5/14/fast-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/14/fast-180.json b/tests/__snapshots__/upca-5/14/fast-180.json index bd56b783..dddd2549 100644 --- a/tests/__snapshots__/upca-5/14/fast-180.json +++ b/tests/__snapshots__/upca-5/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/14/slow-0.json b/tests/__snapshots__/upca-5/14/slow-0.json index 1b207eeb..517ece9e 100644 --- a/tests/__snapshots__/upca-5/14/slow-0.json +++ b/tests/__snapshots__/upca-5/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/14/slow-180.json b/tests/__snapshots__/upca-5/14/slow-180.json index 6d119561..d3af2109 100644 --- a/tests/__snapshots__/upca-5/14/slow-180.json +++ b/tests/__snapshots__/upca-5/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/15/fast-0.json b/tests/__snapshots__/upca-5/15/fast-0.json index 9aec5628..64965494 100644 --- a/tests/__snapshots__/upca-5/15/fast-0.json +++ b/tests/__snapshots__/upca-5/15/fast-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/15/fast-180.json b/tests/__snapshots__/upca-5/15/fast-180.json index 8b25e9b3..9ab27b26 100644 --- a/tests/__snapshots__/upca-5/15/fast-180.json +++ b/tests/__snapshots__/upca-5/15/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/15/slow-0.json b/tests/__snapshots__/upca-5/15/slow-0.json index 381a781b..c8eccc05 100644 --- a/tests/__snapshots__/upca-5/15/slow-0.json +++ b/tests/__snapshots__/upca-5/15/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/15/slow-180.json b/tests/__snapshots__/upca-5/15/slow-180.json index 56cb476d..aff65a27 100644 --- a/tests/__snapshots__/upca-5/15/slow-180.json +++ b/tests/__snapshots__/upca-5/15/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/18/fast-0.json b/tests/__snapshots__/upca-5/18/fast-0.json index fa189cf9..d48a7ee2 100644 --- a/tests/__snapshots__/upca-5/18/fast-0.json +++ b/tests/__snapshots__/upca-5/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/18/fast-180.json b/tests/__snapshots__/upca-5/18/fast-180.json index 420965fa..1bd1bfea 100644 --- a/tests/__snapshots__/upca-5/18/fast-180.json +++ b/tests/__snapshots__/upca-5/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/18/slow-0.json b/tests/__snapshots__/upca-5/18/slow-0.json index 33884201..22020c98 100644 --- a/tests/__snapshots__/upca-5/18/slow-0.json +++ b/tests/__snapshots__/upca-5/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/18/slow-180.json b/tests/__snapshots__/upca-5/18/slow-180.json index 8f4333a6..efc138a2 100644 --- a/tests/__snapshots__/upca-5/18/slow-180.json +++ b/tests/__snapshots__/upca-5/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "40de7e4", "bytesECI": "c51c332", "text": "312547701310", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/20/fast-0.json b/tests/__snapshots__/upca-5/20/fast-0.json index b84b8842..c6ee0881 100644 --- a/tests/__snapshots__/upca-5/20/fast-0.json +++ b/tests/__snapshots__/upca-5/20/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/20/fast-180.json b/tests/__snapshots__/upca-5/20/fast-180.json index 9fed13d2..a6bf1ddb 100644 --- a/tests/__snapshots__/upca-5/20/fast-180.json +++ b/tests/__snapshots__/upca-5/20/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/20/slow-0.json b/tests/__snapshots__/upca-5/20/slow-0.json index c92295d7..cc0edcd9 100644 --- a/tests/__snapshots__/upca-5/20/slow-0.json +++ b/tests/__snapshots__/upca-5/20/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/20/slow-180.json b/tests/__snapshots__/upca-5/20/slow-180.json index 549a6cfc..ac292c40 100644 --- a/tests/__snapshots__/upca-5/20/slow-180.json +++ b/tests/__snapshots__/upca-5/20/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/21/fast-0.json b/tests/__snapshots__/upca-5/21/fast-0.json index 7c0db1e6..36e7dc19 100644 --- a/tests/__snapshots__/upca-5/21/fast-0.json +++ b/tests/__snapshots__/upca-5/21/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/21/fast-180.json b/tests/__snapshots__/upca-5/21/fast-180.json index 121fe95c..6197775d 100644 --- a/tests/__snapshots__/upca-5/21/fast-180.json +++ b/tests/__snapshots__/upca-5/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/21/slow-0.json b/tests/__snapshots__/upca-5/21/slow-0.json index 72ae1e0f..34d593cb 100644 --- a/tests/__snapshots__/upca-5/21/slow-0.json +++ b/tests/__snapshots__/upca-5/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/21/slow-180.json b/tests/__snapshots__/upca-5/21/slow-180.json index 5525f7c1..597d0671 100644 --- a/tests/__snapshots__/upca-5/21/slow-180.json +++ b/tests/__snapshots__/upca-5/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/22/fast-0.json b/tests/__snapshots__/upca-5/22/fast-0.json index c2405dbf..c69affda 100644 --- a/tests/__snapshots__/upca-5/22/fast-0.json +++ b/tests/__snapshots__/upca-5/22/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/22/fast-180.json b/tests/__snapshots__/upca-5/22/fast-180.json index 83687398..17e3f489 100644 --- a/tests/__snapshots__/upca-5/22/fast-180.json +++ b/tests/__snapshots__/upca-5/22/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/22/slow-0.json b/tests/__snapshots__/upca-5/22/slow-0.json index 4eb5ee21..8c71df84 100644 --- a/tests/__snapshots__/upca-5/22/slow-0.json +++ b/tests/__snapshots__/upca-5/22/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/22/slow-180.json b/tests/__snapshots__/upca-5/22/slow-180.json index 24d91318..04af2640 100644 --- a/tests/__snapshots__/upca-5/22/slow-180.json +++ b/tests/__snapshots__/upca-5/22/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/24/fast-0.json b/tests/__snapshots__/upca-5/24/fast-0.json index f401f558..b23be5f3 100644 --- a/tests/__snapshots__/upca-5/24/fast-0.json +++ b/tests/__snapshots__/upca-5/24/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/24/fast-180.json b/tests/__snapshots__/upca-5/24/fast-180.json index 811a70ac..c799899b 100644 --- a/tests/__snapshots__/upca-5/24/fast-180.json +++ b/tests/__snapshots__/upca-5/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/24/slow-0.json b/tests/__snapshots__/upca-5/24/slow-0.json index 522f4bcb..0fc82474 100644 --- a/tests/__snapshots__/upca-5/24/slow-0.json +++ b/tests/__snapshots__/upca-5/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/24/slow-180.json b/tests/__snapshots__/upca-5/24/slow-180.json index fbe08366..be44dd6a 100644 --- a/tests/__snapshots__/upca-5/24/slow-180.json +++ b/tests/__snapshots__/upca-5/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/28/fast-0.json b/tests/__snapshots__/upca-5/28/fast-0.json index eb471979..caeac8f3 100644 --- a/tests/__snapshots__/upca-5/28/fast-0.json +++ b/tests/__snapshots__/upca-5/28/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/28/fast-180.json b/tests/__snapshots__/upca-5/28/fast-180.json index 97f2344e..2bed26fe 100644 --- a/tests/__snapshots__/upca-5/28/fast-180.json +++ b/tests/__snapshots__/upca-5/28/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/28/slow-0.json b/tests/__snapshots__/upca-5/28/slow-0.json index 5f36983c..3dc54c1e 100644 --- a/tests/__snapshots__/upca-5/28/slow-0.json +++ b/tests/__snapshots__/upca-5/28/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/28/slow-180.json b/tests/__snapshots__/upca-5/28/slow-180.json index 41f4c82f..800502e1 100644 --- a/tests/__snapshots__/upca-5/28/slow-180.json +++ b/tests/__snapshots__/upca-5/28/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/30/fast-0.json b/tests/__snapshots__/upca-5/30/fast-0.json index 552c6e00..e5d162d5 100644 --- a/tests/__snapshots__/upca-5/30/fast-0.json +++ b/tests/__snapshots__/upca-5/30/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/30/slow-0.json b/tests/__snapshots__/upca-5/30/slow-0.json index 552c6e00..e5d162d5 100644 --- a/tests/__snapshots__/upca-5/30/slow-0.json +++ b/tests/__snapshots__/upca-5/30/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/30/slow-180.json b/tests/__snapshots__/upca-5/30/slow-180.json index a3bb12a5..33e019f1 100644 --- a/tests/__snapshots__/upca-5/30/slow-180.json +++ b/tests/__snapshots__/upca-5/30/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/31/slow-0.json b/tests/__snapshots__/upca-5/31/slow-0.json index 6a538480..3e637f1f 100644 --- a/tests/__snapshots__/upca-5/31/slow-0.json +++ b/tests/__snapshots__/upca-5/31/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/31/slow-180.json b/tests/__snapshots__/upca-5/31/slow-180.json index a2b6b7a5..b22239bb 100644 --- a/tests/__snapshots__/upca-5/31/slow-180.json +++ b/tests/__snapshots__/upca-5/31/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/33/fast-0.json b/tests/__snapshots__/upca-5/33/fast-0.json index 8f186854..90db17e8 100644 --- a/tests/__snapshots__/upca-5/33/fast-0.json +++ b/tests/__snapshots__/upca-5/33/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/33/fast-180.json b/tests/__snapshots__/upca-5/33/fast-180.json index 5e36226f..ed0cf9b1 100644 --- a/tests/__snapshots__/upca-5/33/fast-180.json +++ b/tests/__snapshots__/upca-5/33/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/33/slow-0.json b/tests/__snapshots__/upca-5/33/slow-0.json index 52232c8c..d49cc8a7 100644 --- a/tests/__snapshots__/upca-5/33/slow-0.json +++ b/tests/__snapshots__/upca-5/33/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/33/slow-180.json b/tests/__snapshots__/upca-5/33/slow-180.json index 72a13d06..20fca2cf 100644 --- a/tests/__snapshots__/upca-5/33/slow-180.json +++ b/tests/__snapshots__/upca-5/33/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/34/fast-0.json b/tests/__snapshots__/upca-5/34/fast-0.json index 6268a9f7..b3958c94 100644 --- a/tests/__snapshots__/upca-5/34/fast-0.json +++ b/tests/__snapshots__/upca-5/34/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/34/fast-180.json b/tests/__snapshots__/upca-5/34/fast-180.json index 20ea8a13..a2c62440 100644 --- a/tests/__snapshots__/upca-5/34/fast-180.json +++ b/tests/__snapshots__/upca-5/34/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/34/slow-0.json b/tests/__snapshots__/upca-5/34/slow-0.json index 65df0111..3756ca82 100644 --- a/tests/__snapshots__/upca-5/34/slow-0.json +++ b/tests/__snapshots__/upca-5/34/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/34/slow-180.json b/tests/__snapshots__/upca-5/34/slow-180.json index 3ff6dbca..feed08be 100644 --- a/tests/__snapshots__/upca-5/34/slow-180.json +++ b/tests/__snapshots__/upca-5/34/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/35/fast-0.json b/tests/__snapshots__/upca-5/35/fast-0.json index cac6c6b9..cc983d90 100644 --- a/tests/__snapshots__/upca-5/35/fast-0.json +++ b/tests/__snapshots__/upca-5/35/fast-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/35/fast-180.json b/tests/__snapshots__/upca-5/35/fast-180.json index 9dac1f29..b642df2c 100644 --- a/tests/__snapshots__/upca-5/35/fast-180.json +++ b/tests/__snapshots__/upca-5/35/fast-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/35/slow-0.json b/tests/__snapshots__/upca-5/35/slow-0.json index 10804e23..d3d98c0d 100644 --- a/tests/__snapshots__/upca-5/35/slow-0.json +++ b/tests/__snapshots__/upca-5/35/slow-0.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-5/35/slow-180.json b/tests/__snapshots__/upca-5/35/slow-180.json index 6910b0db..538274c8 100644 --- a/tests/__snapshots__/upca-5/35/slow-180.json +++ b/tests/__snapshots__/upca-5/35/slow-180.json @@ -5,7 +5,7 @@ "bytes": "4500047", "bytesECI": "ad2a6e3", "text": "625034201058", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/10/fast-0.json b/tests/__snapshots__/upca-extension-1/10/fast-0.json index e92d6641..8c87721d 100644 --- a/tests/__snapshots__/upca-extension-1/10/fast-0.json +++ b/tests/__snapshots__/upca-extension-1/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c046ddf", "bytesECI": "75bd29d", "text": "027011006951 02601", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/10/slow-0.json b/tests/__snapshots__/upca-extension-1/10/slow-0.json index e92d6641..8c87721d 100644 --- a/tests/__snapshots__/upca-extension-1/10/slow-0.json +++ b/tests/__snapshots__/upca-extension-1/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c046ddf", "bytesECI": "75bd29d", "text": "027011006951 02601", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/10/slow-180.json b/tests/__snapshots__/upca-extension-1/10/slow-180.json index 2844036f..284fd63b 100644 --- a/tests/__snapshots__/upca-extension-1/10/slow-180.json +++ b/tests/__snapshots__/upca-extension-1/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c046ddf", "bytesECI": "75bd29d", "text": "027011006951 02601", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/11/fast-0.json b/tests/__snapshots__/upca-extension-1/11/fast-0.json index 88c7fef6..80b486c0 100644 --- a/tests/__snapshots__/upca-extension-1/11/fast-0.json +++ b/tests/__snapshots__/upca-extension-1/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "c046ddf", "bytesECI": "75bd29d", "text": "027011006951 02601", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/11/slow-0.json b/tests/__snapshots__/upca-extension-1/11/slow-0.json index 525613e8..b9d36709 100644 --- a/tests/__snapshots__/upca-extension-1/11/slow-0.json +++ b/tests/__snapshots__/upca-extension-1/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "c046ddf", "bytesECI": "75bd29d", "text": "027011006951 02601", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/11/slow-180.json b/tests/__snapshots__/upca-extension-1/11/slow-180.json index 502b78e5..6d578058 100644 --- a/tests/__snapshots__/upca-extension-1/11/slow-180.json +++ b/tests/__snapshots__/upca-extension-1/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "c046ddf", "bytesECI": "75bd29d", "text": "027011006951 02601", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/18/fast-0.json b/tests/__snapshots__/upca-extension-1/18/fast-0.json index cc08cb76..648a9b6b 100644 --- a/tests/__snapshots__/upca-extension-1/18/fast-0.json +++ b/tests/__snapshots__/upca-extension-1/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "488e877", "bytesECI": "d140585", "text": "024543136538 00", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/18/fast-180.json b/tests/__snapshots__/upca-extension-1/18/fast-180.json index b6dcb434..399ba63e 100644 --- a/tests/__snapshots__/upca-extension-1/18/fast-180.json +++ b/tests/__snapshots__/upca-extension-1/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "488e877", "bytesECI": "d140585", "text": "024543136538 00", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/18/slow-0.json b/tests/__snapshots__/upca-extension-1/18/slow-0.json index 945e73df..9316f879 100644 --- a/tests/__snapshots__/upca-extension-1/18/slow-0.json +++ b/tests/__snapshots__/upca-extension-1/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "488e877", "bytesECI": "d140585", "text": "024543136538 00", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/18/slow-180.json b/tests/__snapshots__/upca-extension-1/18/slow-180.json index 2b8ee7b9..b7f43a3b 100644 --- a/tests/__snapshots__/upca-extension-1/18/slow-180.json +++ b/tests/__snapshots__/upca-extension-1/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "488e877", "bytesECI": "d140585", "text": "024543136538 00", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/8/fast-180.json b/tests/__snapshots__/upca-extension-1/8/fast-180.json index fee33576..10e5e714 100644 --- a/tests/__snapshots__/upca-extension-1/8/fast-180.json +++ b/tests/__snapshots__/upca-extension-1/8/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8b8742c", "bytesECI": "74ab2f8", "text": "071831007995 19868", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/8/slow-0.json b/tests/__snapshots__/upca-extension-1/8/slow-0.json index a0428b3a..56010318 100644 --- a/tests/__snapshots__/upca-extension-1/8/slow-0.json +++ b/tests/__snapshots__/upca-extension-1/8/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8b8742c", "bytesECI": "74ab2f8", "text": "071831007995 19868", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/8/slow-180.json b/tests/__snapshots__/upca-extension-1/8/slow-180.json index 50cfa00a..441e10c6 100644 --- a/tests/__snapshots__/upca-extension-1/8/slow-180.json +++ b/tests/__snapshots__/upca-extension-1/8/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8b8742c", "bytesECI": "74ab2f8", "text": "071831007995 19868", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/9/fast-0.json b/tests/__snapshots__/upca-extension-1/9/fast-0.json index 8792c791..08344a73 100644 --- a/tests/__snapshots__/upca-extension-1/9/fast-0.json +++ b/tests/__snapshots__/upca-extension-1/9/fast-0.json @@ -5,7 +5,7 @@ "bytes": "8b8742c", "bytesECI": "74ab2f8", "text": "071831007995 19868", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/9/fast-180.json b/tests/__snapshots__/upca-extension-1/9/fast-180.json index 7869627f..f395f085 100644 --- a/tests/__snapshots__/upca-extension-1/9/fast-180.json +++ b/tests/__snapshots__/upca-extension-1/9/fast-180.json @@ -5,7 +5,7 @@ "bytes": "8b8742c", "bytesECI": "74ab2f8", "text": "071831007995 19868", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/9/slow-0.json b/tests/__snapshots__/upca-extension-1/9/slow-0.json index ea81d4d9..f2583afb 100644 --- a/tests/__snapshots__/upca-extension-1/9/slow-0.json +++ b/tests/__snapshots__/upca-extension-1/9/slow-0.json @@ -5,7 +5,7 @@ "bytes": "8b8742c", "bytesECI": "74ab2f8", "text": "071831007995 19868", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upca-extension-1/9/slow-180.json b/tests/__snapshots__/upca-extension-1/9/slow-180.json index 97ebcd86..de0c4bd2 100644 --- a/tests/__snapshots__/upca-extension-1/9/slow-180.json +++ b/tests/__snapshots__/upca-extension-1/9/slow-180.json @@ -5,7 +5,7 @@ "bytes": "8b8742c", "bytesECI": "74ab2f8", "text": "071831007995 19868", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/1/fast-0.json b/tests/__snapshots__/upce-1/1/fast-0.json index a5401b93..0905d89c 100644 --- a/tests/__snapshots__/upce-1/1/fast-0.json +++ b/tests/__snapshots__/upce-1/1/fast-0.json @@ -5,7 +5,7 @@ "bytes": "e1ffef2", "bytesECI": "0e12e15", "text": "01234565", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/1/fast-180.json b/tests/__snapshots__/upce-1/1/fast-180.json index d1b2b140..409cdcf7 100644 --- a/tests/__snapshots__/upce-1/1/fast-180.json +++ b/tests/__snapshots__/upce-1/1/fast-180.json @@ -5,7 +5,7 @@ "bytes": "e1ffef2", "bytesECI": "0e12e15", "text": "01234565", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/1/pure-0.json b/tests/__snapshots__/upce-1/1/pure-0.json index bf3542d2..2f7ca19e 100644 --- a/tests/__snapshots__/upce-1/1/pure-0.json +++ b/tests/__snapshots__/upce-1/1/pure-0.json @@ -5,7 +5,7 @@ "bytes": "e1ffef2", "bytesECI": "0e12e15", "text": "01234565", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/1/slow-0.json b/tests/__snapshots__/upce-1/1/slow-0.json index f177b220..5b328fd7 100644 --- a/tests/__snapshots__/upce-1/1/slow-0.json +++ b/tests/__snapshots__/upce-1/1/slow-0.json @@ -5,7 +5,7 @@ "bytes": "e1ffef2", "bytesECI": "0e12e15", "text": "01234565", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/1/slow-180.json b/tests/__snapshots__/upce-1/1/slow-180.json index 5d0fcdf6..73f45c2e 100644 --- a/tests/__snapshots__/upce-1/1/slow-180.json +++ b/tests/__snapshots__/upce-1/1/slow-180.json @@ -5,7 +5,7 @@ "bytes": "e1ffef2", "bytesECI": "0e12e15", "text": "01234565", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/2/fast-0.json b/tests/__snapshots__/upce-1/2/fast-0.json index 8ff13e45..19f8b1cf 100644 --- a/tests/__snapshots__/upce-1/2/fast-0.json +++ b/tests/__snapshots__/upce-1/2/fast-0.json @@ -5,7 +5,7 @@ "bytes": "fe93817", "bytesECI": "dfaff9d", "text": "00123457", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/2/fast-180.json b/tests/__snapshots__/upce-1/2/fast-180.json index 1566bc4e..407835ef 100644 --- a/tests/__snapshots__/upce-1/2/fast-180.json +++ b/tests/__snapshots__/upce-1/2/fast-180.json @@ -5,7 +5,7 @@ "bytes": "fe93817", "bytesECI": "dfaff9d", "text": "00123457", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/2/pure-0.json b/tests/__snapshots__/upce-1/2/pure-0.json index 5923f3f7..67b7ed5a 100644 --- a/tests/__snapshots__/upce-1/2/pure-0.json +++ b/tests/__snapshots__/upce-1/2/pure-0.json @@ -5,7 +5,7 @@ "bytes": "fe93817", "bytesECI": "dfaff9d", "text": "00123457", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/2/slow-0.json b/tests/__snapshots__/upce-1/2/slow-0.json index 95c923bf..4f689b2e 100644 --- a/tests/__snapshots__/upce-1/2/slow-0.json +++ b/tests/__snapshots__/upce-1/2/slow-0.json @@ -5,7 +5,7 @@ "bytes": "fe93817", "bytesECI": "dfaff9d", "text": "00123457", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/2/slow-180.json b/tests/__snapshots__/upce-1/2/slow-180.json index d55eeada..f8ae9a5e 100644 --- a/tests/__snapshots__/upce-1/2/slow-180.json +++ b/tests/__snapshots__/upce-1/2/slow-180.json @@ -5,7 +5,7 @@ "bytes": "fe93817", "bytesECI": "dfaff9d", "text": "00123457", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/4/fast-0.json b/tests/__snapshots__/upce-1/4/fast-0.json index b29426e8..49e983f1 100644 --- a/tests/__snapshots__/upce-1/4/fast-0.json +++ b/tests/__snapshots__/upce-1/4/fast-0.json @@ -5,7 +5,7 @@ "bytes": "a75ead7", "bytesECI": "c48e79d", "text": "01234531", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/4/fast-180.json b/tests/__snapshots__/upce-1/4/fast-180.json index 657b9ecb..265d628e 100644 --- a/tests/__snapshots__/upce-1/4/fast-180.json +++ b/tests/__snapshots__/upce-1/4/fast-180.json @@ -5,7 +5,7 @@ "bytes": "a75ead7", "bytesECI": "c48e79d", "text": "01234531", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/4/pure-0.json b/tests/__snapshots__/upce-1/4/pure-0.json index dc0e7566..957e43bf 100644 --- a/tests/__snapshots__/upce-1/4/pure-0.json +++ b/tests/__snapshots__/upce-1/4/pure-0.json @@ -5,7 +5,7 @@ "bytes": "a75ead7", "bytesECI": "c48e79d", "text": "01234531", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 1, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/4/slow-0.json b/tests/__snapshots__/upce-1/4/slow-0.json index aa24d29f..48294c96 100644 --- a/tests/__snapshots__/upce-1/4/slow-0.json +++ b/tests/__snapshots__/upce-1/4/slow-0.json @@ -5,7 +5,7 @@ "bytes": "a75ead7", "bytesECI": "c48e79d", "text": "01234531", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-1/4/slow-180.json b/tests/__snapshots__/upce-1/4/slow-180.json index 5ecf7d4f..331f57fc 100644 --- a/tests/__snapshots__/upce-1/4/slow-180.json +++ b/tests/__snapshots__/upce-1/4/slow-180.json @@ -5,7 +5,7 @@ "bytes": "a75ead7", "bytesECI": "c48e79d", "text": "01234531", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/01/fast-0.json b/tests/__snapshots__/upce-2/01/fast-0.json index 666a966d..6472347f 100644 --- a/tests/__snapshots__/upce-2/01/fast-0.json +++ b/tests/__snapshots__/upce-2/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/01/fast-180.json b/tests/__snapshots__/upce-2/01/fast-180.json index a28cbcc5..0955af77 100644 --- a/tests/__snapshots__/upce-2/01/fast-180.json +++ b/tests/__snapshots__/upce-2/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/01/slow-0.json b/tests/__snapshots__/upce-2/01/slow-0.json index cb062494..339375a6 100644 --- a/tests/__snapshots__/upce-2/01/slow-0.json +++ b/tests/__snapshots__/upce-2/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/01/slow-180.json b/tests/__snapshots__/upce-2/01/slow-180.json index 099167cb..6cfc76ca 100644 --- a/tests/__snapshots__/upce-2/01/slow-180.json +++ b/tests/__snapshots__/upce-2/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/03/fast-0.json b/tests/__snapshots__/upce-2/03/fast-0.json index 2b3a2193..0fe94362 100644 --- a/tests/__snapshots__/upce-2/03/fast-0.json +++ b/tests/__snapshots__/upce-2/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/03/fast-180.json b/tests/__snapshots__/upce-2/03/fast-180.json index 6053f17d..da81b701 100644 --- a/tests/__snapshots__/upce-2/03/fast-180.json +++ b/tests/__snapshots__/upce-2/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/03/slow-0.json b/tests/__snapshots__/upce-2/03/slow-0.json index 2b3a2193..0fe94362 100644 --- a/tests/__snapshots__/upce-2/03/slow-0.json +++ b/tests/__snapshots__/upce-2/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/03/slow-180.json b/tests/__snapshots__/upce-2/03/slow-180.json index a79bc590..42bed3f5 100644 --- a/tests/__snapshots__/upce-2/03/slow-180.json +++ b/tests/__snapshots__/upce-2/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/05/fast-0.json b/tests/__snapshots__/upce-2/05/fast-0.json index 0194bd26..28086d7f 100644 --- a/tests/__snapshots__/upce-2/05/fast-0.json +++ b/tests/__snapshots__/upce-2/05/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/05/fast-180.json b/tests/__snapshots__/upce-2/05/fast-180.json index e3560056..158cb7d5 100644 --- a/tests/__snapshots__/upce-2/05/fast-180.json +++ b/tests/__snapshots__/upce-2/05/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/05/slow-0.json b/tests/__snapshots__/upce-2/05/slow-0.json index d21ff7ba..b274f731 100644 --- a/tests/__snapshots__/upce-2/05/slow-0.json +++ b/tests/__snapshots__/upce-2/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/05/slow-180.json b/tests/__snapshots__/upce-2/05/slow-180.json index c47e3a39..56a8d432 100644 --- a/tests/__snapshots__/upce-2/05/slow-180.json +++ b/tests/__snapshots__/upce-2/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/06/fast-0.json b/tests/__snapshots__/upce-2/06/fast-0.json index 001c9169..0249ab8f 100644 --- a/tests/__snapshots__/upce-2/06/fast-0.json +++ b/tests/__snapshots__/upce-2/06/fast-0.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/06/fast-180.json b/tests/__snapshots__/upce-2/06/fast-180.json index e55d4dcb..f0b906f8 100644 --- a/tests/__snapshots__/upce-2/06/fast-180.json +++ b/tests/__snapshots__/upce-2/06/fast-180.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/06/slow-0.json b/tests/__snapshots__/upce-2/06/slow-0.json index e22fac7b..07985fd3 100644 --- a/tests/__snapshots__/upce-2/06/slow-0.json +++ b/tests/__snapshots__/upce-2/06/slow-0.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/06/slow-180.json b/tests/__snapshots__/upce-2/06/slow-180.json index 03b24087..c57a6a3f 100644 --- a/tests/__snapshots__/upce-2/06/slow-180.json +++ b/tests/__snapshots__/upce-2/06/slow-180.json @@ -5,7 +5,7 @@ "bytes": "9269fea", "bytesECI": "b3a82f3", "text": "05096893", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/08/fast-0.json b/tests/__snapshots__/upce-2/08/fast-0.json index 090b8511..3bd25d00 100644 --- a/tests/__snapshots__/upce-2/08/fast-0.json +++ b/tests/__snapshots__/upce-2/08/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/08/fast-180.json b/tests/__snapshots__/upce-2/08/fast-180.json index 52eeb40c..88d78733 100644 --- a/tests/__snapshots__/upce-2/08/fast-180.json +++ b/tests/__snapshots__/upce-2/08/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/08/slow-0.json b/tests/__snapshots__/upce-2/08/slow-0.json index 9d147ac2..9e9a8317 100644 --- a/tests/__snapshots__/upce-2/08/slow-0.json +++ b/tests/__snapshots__/upce-2/08/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/08/slow-180.json b/tests/__snapshots__/upce-2/08/slow-180.json index d758cdb8..d64589c0 100644 --- a/tests/__snapshots__/upce-2/08/slow-180.json +++ b/tests/__snapshots__/upce-2/08/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/10/fast-0.json b/tests/__snapshots__/upce-2/10/fast-0.json index 446965ef..923f8501 100644 --- a/tests/__snapshots__/upce-2/10/fast-0.json +++ b/tests/__snapshots__/upce-2/10/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/10/fast-180.json b/tests/__snapshots__/upce-2/10/fast-180.json index d4688141..49133b59 100644 --- a/tests/__snapshots__/upce-2/10/fast-180.json +++ b/tests/__snapshots__/upce-2/10/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/10/slow-0.json b/tests/__snapshots__/upce-2/10/slow-0.json index 6c7a342a..9c5bdc36 100644 --- a/tests/__snapshots__/upce-2/10/slow-0.json +++ b/tests/__snapshots__/upce-2/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/10/slow-180.json b/tests/__snapshots__/upce-2/10/slow-180.json index e3385dca..be940ae9 100644 --- a/tests/__snapshots__/upce-2/10/slow-180.json +++ b/tests/__snapshots__/upce-2/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/11/fast-0.json b/tests/__snapshots__/upce-2/11/fast-0.json index 3d00ae9e..ab395502 100644 --- a/tests/__snapshots__/upce-2/11/fast-0.json +++ b/tests/__snapshots__/upce-2/11/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/11/fast-180.json b/tests/__snapshots__/upce-2/11/fast-180.json index 398704b9..5c11434a 100644 --- a/tests/__snapshots__/upce-2/11/fast-180.json +++ b/tests/__snapshots__/upce-2/11/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/11/slow-0.json b/tests/__snapshots__/upce-2/11/slow-0.json index 7e1f908d..d6bf592a 100644 --- a/tests/__snapshots__/upce-2/11/slow-0.json +++ b/tests/__snapshots__/upce-2/11/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/11/slow-180.json b/tests/__snapshots__/upce-2/11/slow-180.json index db511509..533cca26 100644 --- a/tests/__snapshots__/upce-2/11/slow-180.json +++ b/tests/__snapshots__/upce-2/11/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/12/fast-0.json b/tests/__snapshots__/upce-2/12/fast-0.json index efefc9a6..330dedab 100644 --- a/tests/__snapshots__/upce-2/12/fast-0.json +++ b/tests/__snapshots__/upce-2/12/fast-0.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/12/fast-180.json b/tests/__snapshots__/upce-2/12/fast-180.json index 72058865..540713d3 100644 --- a/tests/__snapshots__/upce-2/12/fast-180.json +++ b/tests/__snapshots__/upce-2/12/fast-180.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/12/slow-0.json b/tests/__snapshots__/upce-2/12/slow-0.json index bae629a9..945c5a08 100644 --- a/tests/__snapshots__/upce-2/12/slow-0.json +++ b/tests/__snapshots__/upce-2/12/slow-0.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/12/slow-180.json b/tests/__snapshots__/upce-2/12/slow-180.json index 90c920d1..6a2b3d50 100644 --- a/tests/__snapshots__/upce-2/12/slow-180.json +++ b/tests/__snapshots__/upce-2/12/slow-180.json @@ -5,7 +5,7 @@ "bytes": "d3d024a", "bytesECI": "7270001", "text": "04963406", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/14/fast-180.json b/tests/__snapshots__/upce-2/14/fast-180.json index 2feda0aa..97e3d79b 100644 --- a/tests/__snapshots__/upce-2/14/fast-180.json +++ b/tests/__snapshots__/upce-2/14/fast-180.json @@ -5,7 +5,7 @@ "bytes": "84ecb2e", "bytesECI": "d6ebbe2", "text": "04904144", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/14/slow-0.json b/tests/__snapshots__/upce-2/14/slow-0.json index 28107956..67801520 100644 --- a/tests/__snapshots__/upce-2/14/slow-0.json +++ b/tests/__snapshots__/upce-2/14/slow-0.json @@ -5,7 +5,7 @@ "bytes": "84ecb2e", "bytesECI": "d6ebbe2", "text": "04904144", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/14/slow-180.json b/tests/__snapshots__/upce-2/14/slow-180.json index 0774a949..86a2af52 100644 --- a/tests/__snapshots__/upce-2/14/slow-180.json +++ b/tests/__snapshots__/upce-2/14/slow-180.json @@ -5,7 +5,7 @@ "bytes": "84ecb2e", "bytesECI": "d6ebbe2", "text": "04904144", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/16/fast-0.json b/tests/__snapshots__/upce-2/16/fast-0.json index c05bd6ba..11f2694d 100644 --- a/tests/__snapshots__/upce-2/16/fast-0.json +++ b/tests/__snapshots__/upce-2/16/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/16/fast-180.json b/tests/__snapshots__/upce-2/16/fast-180.json index 2b4671d1..40a52ee8 100644 --- a/tests/__snapshots__/upce-2/16/fast-180.json +++ b/tests/__snapshots__/upce-2/16/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/16/slow-0.json b/tests/__snapshots__/upce-2/16/slow-0.json index afb37459..54c9f82d 100644 --- a/tests/__snapshots__/upce-2/16/slow-0.json +++ b/tests/__snapshots__/upce-2/16/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/16/slow-180.json b/tests/__snapshots__/upce-2/16/slow-180.json index 702f3f03..c8dba377 100644 --- a/tests/__snapshots__/upce-2/16/slow-180.json +++ b/tests/__snapshots__/upce-2/16/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/17/fast-0.json b/tests/__snapshots__/upce-2/17/fast-0.json index b074a78f..d0cac4f0 100644 --- a/tests/__snapshots__/upce-2/17/fast-0.json +++ b/tests/__snapshots__/upce-2/17/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/17/fast-180.json b/tests/__snapshots__/upce-2/17/fast-180.json index e9506377..d1b835e1 100644 --- a/tests/__snapshots__/upce-2/17/fast-180.json +++ b/tests/__snapshots__/upce-2/17/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/17/slow-0.json b/tests/__snapshots__/upce-2/17/slow-0.json index 90ba3181..0a6c631d 100644 --- a/tests/__snapshots__/upce-2/17/slow-0.json +++ b/tests/__snapshots__/upce-2/17/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/17/slow-180.json b/tests/__snapshots__/upce-2/17/slow-180.json index 0bfbd4ee..b1797c95 100644 --- a/tests/__snapshots__/upce-2/17/slow-180.json +++ b/tests/__snapshots__/upce-2/17/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/18/fast-0.json b/tests/__snapshots__/upce-2/18/fast-0.json index da1d8b84..b3d51f55 100644 --- a/tests/__snapshots__/upce-2/18/fast-0.json +++ b/tests/__snapshots__/upce-2/18/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/18/fast-180.json b/tests/__snapshots__/upce-2/18/fast-180.json index b5857691..faef44ba 100644 --- a/tests/__snapshots__/upce-2/18/fast-180.json +++ b/tests/__snapshots__/upce-2/18/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/18/slow-0.json b/tests/__snapshots__/upce-2/18/slow-0.json index 12712000..e40ebe2a 100644 --- a/tests/__snapshots__/upce-2/18/slow-0.json +++ b/tests/__snapshots__/upce-2/18/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/18/slow-180.json b/tests/__snapshots__/upce-2/18/slow-180.json index e1d81a76..5ecae9ad 100644 --- a/tests/__snapshots__/upce-2/18/slow-180.json +++ b/tests/__snapshots__/upce-2/18/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/21/fast-0.json b/tests/__snapshots__/upce-2/21/fast-0.json index b1953e4c..a2610b44 100644 --- a/tests/__snapshots__/upce-2/21/fast-0.json +++ b/tests/__snapshots__/upce-2/21/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/21/fast-180.json b/tests/__snapshots__/upce-2/21/fast-180.json index f2a28cb2..43d78c60 100644 --- a/tests/__snapshots__/upce-2/21/fast-180.json +++ b/tests/__snapshots__/upce-2/21/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/21/slow-0.json b/tests/__snapshots__/upce-2/21/slow-0.json index f014fe99..c866071f 100644 --- a/tests/__snapshots__/upce-2/21/slow-0.json +++ b/tests/__snapshots__/upce-2/21/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/21/slow-180.json b/tests/__snapshots__/upce-2/21/slow-180.json index 95a53c3b..32dcef1b 100644 --- a/tests/__snapshots__/upce-2/21/slow-180.json +++ b/tests/__snapshots__/upce-2/21/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/23/fast-0.json b/tests/__snapshots__/upce-2/23/fast-0.json index 89c62251..fe485e9c 100644 --- a/tests/__snapshots__/upce-2/23/fast-0.json +++ b/tests/__snapshots__/upce-2/23/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/23/fast-180.json b/tests/__snapshots__/upce-2/23/fast-180.json index 6ecb7324..87578d65 100644 --- a/tests/__snapshots__/upce-2/23/fast-180.json +++ b/tests/__snapshots__/upce-2/23/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/23/slow-0.json b/tests/__snapshots__/upce-2/23/slow-0.json index 469afdde..34b35757 100644 --- a/tests/__snapshots__/upce-2/23/slow-0.json +++ b/tests/__snapshots__/upce-2/23/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/23/slow-180.json b/tests/__snapshots__/upce-2/23/slow-180.json index 4d7df35a..f9d3da6f 100644 --- a/tests/__snapshots__/upce-2/23/slow-180.json +++ b/tests/__snapshots__/upce-2/23/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/24/fast-180.json b/tests/__snapshots__/upce-2/24/fast-180.json index 7a535ba4..dc2dec6e 100644 --- a/tests/__snapshots__/upce-2/24/fast-180.json +++ b/tests/__snapshots__/upce-2/24/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/24/slow-0.json b/tests/__snapshots__/upce-2/24/slow-0.json index bdf36ce5..3ee5384e 100644 --- a/tests/__snapshots__/upce-2/24/slow-0.json +++ b/tests/__snapshots__/upce-2/24/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/24/slow-180.json b/tests/__snapshots__/upce-2/24/slow-180.json index fe355e5c..907df441 100644 --- a/tests/__snapshots__/upce-2/24/slow-180.json +++ b/tests/__snapshots__/upce-2/24/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/26/slow-0.json b/tests/__snapshots__/upce-2/26/slow-0.json index e434a6fb..7e1e39b8 100644 --- a/tests/__snapshots__/upce-2/26/slow-0.json +++ b/tests/__snapshots__/upce-2/26/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/26/slow-180.json b/tests/__snapshots__/upce-2/26/slow-180.json index 2f6314e5..1d8dbc77 100644 --- a/tests/__snapshots__/upce-2/26/slow-180.json +++ b/tests/__snapshots__/upce-2/26/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/28/fast-0.json b/tests/__snapshots__/upce-2/28/fast-0.json index a08e8846..8e06ce35 100644 --- a/tests/__snapshots__/upce-2/28/fast-0.json +++ b/tests/__snapshots__/upce-2/28/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/28/fast-180.json b/tests/__snapshots__/upce-2/28/fast-180.json index 97fe08bd..bbb0245a 100644 --- a/tests/__snapshots__/upce-2/28/fast-180.json +++ b/tests/__snapshots__/upce-2/28/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/28/slow-0.json b/tests/__snapshots__/upce-2/28/slow-0.json index 62324466..0ccac161 100644 --- a/tests/__snapshots__/upce-2/28/slow-0.json +++ b/tests/__snapshots__/upce-2/28/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/28/slow-180.json b/tests/__snapshots__/upce-2/28/slow-180.json index 26ae7eb5..de612754 100644 --- a/tests/__snapshots__/upce-2/28/slow-180.json +++ b/tests/__snapshots__/upce-2/28/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/29/fast-0.json b/tests/__snapshots__/upce-2/29/fast-0.json index 894f0580..a78cf9a3 100644 --- a/tests/__snapshots__/upce-2/29/fast-0.json +++ b/tests/__snapshots__/upce-2/29/fast-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/29/fast-180.json b/tests/__snapshots__/upce-2/29/fast-180.json index e375cf37..6545d9a6 100644 --- a/tests/__snapshots__/upce-2/29/fast-180.json +++ b/tests/__snapshots__/upce-2/29/fast-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/29/slow-0.json b/tests/__snapshots__/upce-2/29/slow-0.json index 8fdf3c56..5d598a87 100644 --- a/tests/__snapshots__/upce-2/29/slow-0.json +++ b/tests/__snapshots__/upce-2/29/slow-0.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/29/slow-180.json b/tests/__snapshots__/upce-2/29/slow-180.json index e375cf37..6545d9a6 100644 --- a/tests/__snapshots__/upce-2/29/slow-180.json +++ b/tests/__snapshots__/upce-2/29/slow-180.json @@ -5,7 +5,7 @@ "bytes": "b27fb79", "bytesECI": "4a45001", "text": "04124498", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/31/fast-0.json b/tests/__snapshots__/upce-2/31/fast-0.json index a9bcbb8d..2badab08 100644 --- a/tests/__snapshots__/upce-2/31/fast-0.json +++ b/tests/__snapshots__/upce-2/31/fast-0.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/31/fast-180.json b/tests/__snapshots__/upce-2/31/fast-180.json index 7cb57c89..73256c19 100644 --- a/tests/__snapshots__/upce-2/31/fast-180.json +++ b/tests/__snapshots__/upce-2/31/fast-180.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/31/slow-0.json b/tests/__snapshots__/upce-2/31/slow-0.json index a5a3ca35..23e6ff9b 100644 --- a/tests/__snapshots__/upce-2/31/slow-0.json +++ b/tests/__snapshots__/upce-2/31/slow-0.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/31/slow-180.json b/tests/__snapshots__/upce-2/31/slow-180.json index 8b2eff66..56b47322 100644 --- a/tests/__snapshots__/upce-2/31/slow-180.json +++ b/tests/__snapshots__/upce-2/31/slow-180.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/33/slow-0.json b/tests/__snapshots__/upce-2/33/slow-0.json index 9b3cee28..bede500f 100644 --- a/tests/__snapshots__/upce-2/33/slow-0.json +++ b/tests/__snapshots__/upce-2/33/slow-0.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/33/slow-180.json b/tests/__snapshots__/upce-2/33/slow-180.json index 71d33c90..f16a1e74 100644 --- a/tests/__snapshots__/upce-2/33/slow-180.json +++ b/tests/__snapshots__/upce-2/33/slow-180.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/34/fast-0.json b/tests/__snapshots__/upce-2/34/fast-0.json index 2cb40310..97b81651 100644 --- a/tests/__snapshots__/upce-2/34/fast-0.json +++ b/tests/__snapshots__/upce-2/34/fast-0.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/34/fast-180.json b/tests/__snapshots__/upce-2/34/fast-180.json index 3b95da23..1dd2f45c 100644 --- a/tests/__snapshots__/upce-2/34/fast-180.json +++ b/tests/__snapshots__/upce-2/34/fast-180.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/34/slow-0.json b/tests/__snapshots__/upce-2/34/slow-0.json index f334bd9a..60c47e63 100644 --- a/tests/__snapshots__/upce-2/34/slow-0.json +++ b/tests/__snapshots__/upce-2/34/slow-0.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/34/slow-180.json b/tests/__snapshots__/upce-2/34/slow-180.json index 452a8df0..f51b345d 100644 --- a/tests/__snapshots__/upce-2/34/slow-180.json +++ b/tests/__snapshots__/upce-2/34/slow-180.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/37/fast-0.json b/tests/__snapshots__/upce-2/37/fast-0.json index 9c59eebe..a27dfe85 100644 --- a/tests/__snapshots__/upce-2/37/fast-0.json +++ b/tests/__snapshots__/upce-2/37/fast-0.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/37/fast-180.json b/tests/__snapshots__/upce-2/37/fast-180.json index 61279bf2..0174cc1d 100644 --- a/tests/__snapshots__/upce-2/37/fast-180.json +++ b/tests/__snapshots__/upce-2/37/fast-180.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/37/slow-0.json b/tests/__snapshots__/upce-2/37/slow-0.json index be9ef63a..f6e78141 100644 --- a/tests/__snapshots__/upce-2/37/slow-0.json +++ b/tests/__snapshots__/upce-2/37/slow-0.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/37/slow-180.json b/tests/__snapshots__/upce-2/37/slow-180.json index b44d98df..bfa114dc 100644 --- a/tests/__snapshots__/upce-2/37/slow-180.json +++ b/tests/__snapshots__/upce-2/37/slow-180.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/39/slow-0.json b/tests/__snapshots__/upce-2/39/slow-0.json index 0eb78155..df271b99 100644 --- a/tests/__snapshots__/upce-2/39/slow-0.json +++ b/tests/__snapshots__/upce-2/39/slow-0.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-2/39/slow-180.json b/tests/__snapshots__/upce-2/39/slow-180.json index 2aec49aa..c744bfaf 100644 --- a/tests/__snapshots__/upce-2/39/slow-180.json +++ b/tests/__snapshots__/upce-2/39/slow-180.json @@ -5,7 +5,7 @@ "bytes": "453ca9c", "bytesECI": "73fb52e", "text": "01264904", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/01/fast-0.json b/tests/__snapshots__/upce-3/01/fast-0.json index 1fe06974..02d5334c 100644 --- a/tests/__snapshots__/upce-3/01/fast-0.json +++ b/tests/__snapshots__/upce-3/01/fast-0.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/01/fast-180.json b/tests/__snapshots__/upce-3/01/fast-180.json index 8d5f08b8..e3790f4b 100644 --- a/tests/__snapshots__/upce-3/01/fast-180.json +++ b/tests/__snapshots__/upce-3/01/fast-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/01/slow-0.json b/tests/__snapshots__/upce-3/01/slow-0.json index 913ad58d..f8a5b814 100644 --- a/tests/__snapshots__/upce-3/01/slow-0.json +++ b/tests/__snapshots__/upce-3/01/slow-0.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/01/slow-180.json b/tests/__snapshots__/upce-3/01/slow-180.json index 45da11be..cc9b1f5e 100644 --- a/tests/__snapshots__/upce-3/01/slow-180.json +++ b/tests/__snapshots__/upce-3/01/slow-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/02/fast-180.json b/tests/__snapshots__/upce-3/02/fast-180.json index a27018d8..05fdb174 100644 --- a/tests/__snapshots__/upce-3/02/fast-180.json +++ b/tests/__snapshots__/upce-3/02/fast-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/02/slow-0.json b/tests/__snapshots__/upce-3/02/slow-0.json index 9be75106..12c64369 100644 --- a/tests/__snapshots__/upce-3/02/slow-0.json +++ b/tests/__snapshots__/upce-3/02/slow-0.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/02/slow-180.json b/tests/__snapshots__/upce-3/02/slow-180.json index 3e97265b..b7fa46e2 100644 --- a/tests/__snapshots__/upce-3/02/slow-180.json +++ b/tests/__snapshots__/upce-3/02/slow-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/03/fast-0.json b/tests/__snapshots__/upce-3/03/fast-0.json index 02136d42..4573128a 100644 --- a/tests/__snapshots__/upce-3/03/fast-0.json +++ b/tests/__snapshots__/upce-3/03/fast-0.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/03/fast-180.json b/tests/__snapshots__/upce-3/03/fast-180.json index d0e42116..0a9eb4f4 100644 --- a/tests/__snapshots__/upce-3/03/fast-180.json +++ b/tests/__snapshots__/upce-3/03/fast-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/03/slow-0.json b/tests/__snapshots__/upce-3/03/slow-0.json index e6a04751..9dca1d1a 100644 --- a/tests/__snapshots__/upce-3/03/slow-0.json +++ b/tests/__snapshots__/upce-3/03/slow-0.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/03/slow-180.json b/tests/__snapshots__/upce-3/03/slow-180.json index 026d17b5..487a60ce 100644 --- a/tests/__snapshots__/upce-3/03/slow-180.json +++ b/tests/__snapshots__/upce-3/03/slow-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/05/fast-0.json b/tests/__snapshots__/upce-3/05/fast-0.json index 8bef6f40..3572832e 100644 --- a/tests/__snapshots__/upce-3/05/fast-0.json +++ b/tests/__snapshots__/upce-3/05/fast-0.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/05/fast-180.json b/tests/__snapshots__/upce-3/05/fast-180.json index 05ca0c69..d1690911 100644 --- a/tests/__snapshots__/upce-3/05/fast-180.json +++ b/tests/__snapshots__/upce-3/05/fast-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/05/slow-0.json b/tests/__snapshots__/upce-3/05/slow-0.json index f451a60a..c7f51015 100644 --- a/tests/__snapshots__/upce-3/05/slow-0.json +++ b/tests/__snapshots__/upce-3/05/slow-0.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/05/slow-180.json b/tests/__snapshots__/upce-3/05/slow-180.json index 6036df74..b4a9433a 100644 --- a/tests/__snapshots__/upce-3/05/slow-180.json +++ b/tests/__snapshots__/upce-3/05/slow-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/07/fast-0.json b/tests/__snapshots__/upce-3/07/fast-0.json index 6d8183c3..df6e41c3 100644 --- a/tests/__snapshots__/upce-3/07/fast-0.json +++ b/tests/__snapshots__/upce-3/07/fast-0.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/07/fast-180.json b/tests/__snapshots__/upce-3/07/fast-180.json index a001b2a1..cca7c223 100644 --- a/tests/__snapshots__/upce-3/07/fast-180.json +++ b/tests/__snapshots__/upce-3/07/fast-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/07/slow-0.json b/tests/__snapshots__/upce-3/07/slow-0.json index 5ad50f21..859e00ae 100644 --- a/tests/__snapshots__/upce-3/07/slow-0.json +++ b/tests/__snapshots__/upce-3/07/slow-0.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/07/slow-180.json b/tests/__snapshots__/upce-3/07/slow-180.json index bfef8c03..2ad0251e 100644 --- a/tests/__snapshots__/upce-3/07/slow-180.json +++ b/tests/__snapshots__/upce-3/07/slow-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/09/fast-0.json b/tests/__snapshots__/upce-3/09/fast-0.json index bac41778..b95f4404 100644 --- a/tests/__snapshots__/upce-3/09/fast-0.json +++ b/tests/__snapshots__/upce-3/09/fast-0.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/09/fast-180.json b/tests/__snapshots__/upce-3/09/fast-180.json index c1bb2761..ce7b80ef 100644 --- a/tests/__snapshots__/upce-3/09/fast-180.json +++ b/tests/__snapshots__/upce-3/09/fast-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/09/slow-0.json b/tests/__snapshots__/upce-3/09/slow-0.json index e6341373..94ba25d8 100644 --- a/tests/__snapshots__/upce-3/09/slow-0.json +++ b/tests/__snapshots__/upce-3/09/slow-0.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/09/slow-180.json b/tests/__snapshots__/upce-3/09/slow-180.json index 49344ee2..dd2b6154 100644 --- a/tests/__snapshots__/upce-3/09/slow-180.json +++ b/tests/__snapshots__/upce-3/09/slow-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/10/slow-0.json b/tests/__snapshots__/upce-3/10/slow-0.json index 59528b3d..1329606e 100644 --- a/tests/__snapshots__/upce-3/10/slow-0.json +++ b/tests/__snapshots__/upce-3/10/slow-0.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/__snapshots__/upce-3/10/slow-180.json b/tests/__snapshots__/upce-3/10/slow-180.json index 96dc5385..2c8f3b77 100644 --- a/tests/__snapshots__/upce-3/10/slow-180.json +++ b/tests/__snapshots__/upce-3/10/slow-180.json @@ -5,7 +5,7 @@ "bytes": "417ebb6", "bytesECI": "d5ed7ac", "text": "04965802", - "eccLevel": "", + "ecLevel": "", "contentType": "Text", "hasECI": false, "position": { @@ -35,5 +35,6 @@ "sequenceId": "", "readerInit": false, "lineCount": 2, - "version": "" + "version": "", + "eccLevel": "" } diff --git a/tests/blackbox.test.ts b/tests/blackbox.test.ts index cccc1b3c..32ccc939 100644 --- a/tests/blackbox.test.ts +++ b/tests/blackbox.test.ts @@ -10,18 +10,19 @@ import { test, } from "vitest"; import { - getZXingModule, - readBarcodesFromImageFile, + type ReaderOptions, + prepareZXingModule, + readBarcodes, } from "../src/reader/index.js"; import { testEntries } from "./testEntries.js"; import { DEFAULT_READER_OPTIONS_FOR_TESTS, - fourOrientations, getRotatedImage, + isLinearBarcodeFormat, parseExpectedBinary, parseExpectedResult, parseExpectedText, - snapshotResult, + takeSnapshot, warmUpCache, } from "./utils.js"; @@ -71,12 +72,15 @@ test("consistent test entries", async () => { expect(testDirs).toEqual(testEntries.map(({ directory }) => directory)); }); -await getZXingModule({ - wasmBinary: ( - await readFile( - resolve(import.meta.dirname, "../src/reader/zxing_reader.wasm"), - ) - ).buffer as ArrayBuffer, +await prepareZXingModule({ + overrides: { + wasmBinary: ( + await readFile( + resolve(import.meta.dirname, "../src/reader/zxing_reader.wasm"), + ) + ).buffer as ArrayBuffer, + }, + fireImmediately: true, }); for (const { @@ -85,7 +89,9 @@ for (const { testFast = true, testSlow = true, testPure = false, - rotations = fourOrientations(barcodeFormat) ? [0, 90, 180, 270] : [0, 180], + rotations = isLinearBarcodeFormat(barcodeFormat) + ? [0, 180] + : [0, 90, 180, 270], readerOptions = DEFAULT_READER_OPTIONS_FOR_TESTS, } of testEntries) { describe(directory, async () => { @@ -140,24 +146,32 @@ for (const { }; test(`${directory} ${imageName} ${type} ${rotation}`, async () => { let passCurrent = true; + onTestFinished(() => { passAll &&= passCurrent; passSome ||= passCurrent; }); + const imageBlob = new Blob([ await getRotatedImage(imagePath, rotation), ]); - const [barcode] = await readBarcodesFromImageFile(imageBlob, { + + const appliedReaderOptions: ReaderOptions = { ...readerOptions, tryHarder: type === "slow", tryRotate: type === "slow", tryInvert: type === "slow", isPure: type === "pure", binarizer: type === "pure" ? "FixedThreshold" : "LocalAverage", - }); + }; + + const [barcode] = await readBarcodes( + imageBlob, + appliedReaderOptions, + ); // Snapshot - await expect(snapshotResult(barcode)).toMatchFileSnapshot( + await expect(takeSnapshot(barcode)).toMatchFileSnapshot( resolve( import.meta.dirname, `./__snapshots__/${directory}/${imageName}/${type}-${rotation}.json`, @@ -191,11 +205,7 @@ for (const { for (const [key, value] of Object.entries( expectedResult, ) as Entries) { - if ( - barcode[ - (key as string) === "ecLevel" ? "eccLevel" : key - ].toString() !== value - ) { + if (barcode[key].toString() !== value) { misread = true; description += `\n ${key}: expected '${value}', but got '${barcode[key]}'`; } @@ -246,15 +256,12 @@ for (const { ..._summary!.undetected!.images, ]).size; if (_summary!.misreads!.total === 0) { - // biome-ignore lint/performance/noDelete: remove misreads if there is no misread delete _summary!.misreads; } if (_summary!.undetected!.total === 0) { - // biome-ignore lint/performance/noDelete: remove undetected if there is no undetected delete _summary!.undetected; } if (_summary!.failures === 0) { - // biome-ignore lint/performance/noDelete: remove failures if there is no failure delete _summary!.failures; } } diff --git a/tests/testEntries.ts b/tests/testEntries.ts index 827b71f2..cbfbf61f 100644 --- a/tests/testEntries.ts +++ b/tests/testEntries.ts @@ -1,9 +1,12 @@ -import type { BarcodeFormat, ReaderOptions } from "../src/reader/index.js"; +import type { + ReadOutputBarcodeFormat, + ReaderOptions, +} from "../src/reader/index.js"; import { DEFAULT_READER_OPTIONS_FOR_TESTS } from "./utils.js"; interface TestEntry { directory: string; - barcodeFormat: BarcodeFormat; + barcodeFormat: ReadOutputBarcodeFormat; /** * default: true */ diff --git a/tests/unit.test.ts b/tests/unit.test.ts new file mode 100644 index 00000000..295094bb --- /dev/null +++ b/tests/unit.test.ts @@ -0,0 +1,172 @@ +import { expect, test } from "vitest"; +import { + prepareZXingModule as prepareZXingFullModule, + purgeZXingModule as purgeZXingFullModule, +} from "../src/full/index.js"; +import { prepareZXingModule as prepareZXingReaderModule } from "../src/reader/index.js"; + +test("no module promise should be created without fireImmediately", () => { + const modulePromise = prepareZXingFullModule(); + + expect(modulePromise).toBe(undefined); +}); + +test("module promise should be created with fireImmediately", () => { + const modulePromise = prepareZXingFullModule({ + fireImmediately: true, + }); + + modulePromise.catch(() => {}); + + expect(modulePromise).toBeInstanceOf(Promise); +}); + +test("module promise should be reused with no overrides", () => { + const modulePromise1 = prepareZXingFullModule({ + fireImmediately: true, + }); + + modulePromise1.catch(() => {}); + + const modulePromise2 = prepareZXingFullModule({ + fireImmediately: true, + }); + + modulePromise2.catch(() => {}); + + expect(modulePromise1).toBe(modulePromise2); +}); + +test("module promise should be reused with same overrides (Object.is)", () => { + const overrides = {}; + + const modulePromise1 = prepareZXingFullModule({ + overrides, + fireImmediately: true, + }); + + modulePromise1.catch(() => {}); + + const modulePromise2 = prepareZXingFullModule({ + overrides, + fireImmediately: true, + }); + + modulePromise2.catch(() => {}); + + expect(modulePromise1).toBe(modulePromise2); +}); + +test("module promise should be reused with same overrides (shallow)", () => { + const modulePromise1 = prepareZXingFullModule({ + overrides: {}, + fireImmediately: true, + }); + + modulePromise1.catch(() => {}); + + const modulePromise2 = prepareZXingFullModule({ + overrides: {}, + fireImmediately: true, + }); + + modulePromise2.catch(() => {}); + + expect(modulePromise1).toBe(modulePromise2); +}); + +test("module promise shouldn't be reused with different overrides", () => { + const modulePromise1 = prepareZXingFullModule({ + overrides: { + locateFile: (url) => url, + }, + fireImmediately: true, + }); + + modulePromise1.catch(() => {}); + + const modulePromise2 = prepareZXingFullModule({ + overrides: {}, + fireImmediately: true, + }); + + modulePromise2.catch(() => {}); + + const modulePromise3 = prepareZXingFullModule({ + overrides: { + locateFile: (url) => url, + }, + fireImmediately: true, + }); + + modulePromise3.catch(() => {}); + + expect(modulePromise1).not.toBe(modulePromise2); + expect(modulePromise1).not.toBe(modulePromise3); +}); + +test("equalityFn should work", () => { + const modulePromise1 = prepareZXingFullModule({ + overrides: {}, + fireImmediately: true, + }); + + modulePromise1.catch(() => {}); + + const modulePromise2 = prepareZXingFullModule({ + overrides: {}, + fireImmediately: true, + equalityFn: Object.is, + }); + + modulePromise2.catch(() => {}); + + expect(modulePromise1).not.toBe(modulePromise2); +}); + +test("purgeZXingModule should work", () => { + const modulePromise1 = prepareZXingFullModule({ + overrides: {}, + fireImmediately: true, + }); + + modulePromise1.catch(() => {}); + + purgeZXingFullModule(); + + const modulePromise2 = prepareZXingFullModule({ + overrides: {}, + fireImmediately: true, + }); + + modulePromise2.catch(() => {}); + + expect(modulePromise1).not.toBe(modulePromise2); +}); + +test("purgeZXingModule shouldn't affect each other", () => { + const modulePromise1 = prepareZXingFullModule({ + overrides: {}, + fireImmediately: true, + }); + + modulePromise1.catch(() => {}); + + const modulePromise2 = prepareZXingReaderModule({ + overrides: {}, + fireImmediately: true, + }); + + modulePromise2.catch(() => {}); + + purgeZXingFullModule(); + + const modulePromise3 = prepareZXingReaderModule({ + overrides: {}, + fireImmediately: true, + }); + + modulePromise3.catch(() => {}); + + expect(modulePromise2).toBe(modulePromise3); +}); diff --git a/tests/utils.ts b/tests/utils.ts index 545a98dd..c59a7bfb 100644 --- a/tests/utils.ts +++ b/tests/utils.ts @@ -3,17 +3,16 @@ import { readFile } from "node:fs/promises"; import { format, parse } from "node:path"; import { Jimp } from "jimp"; import { - type BarcodeFormat, + type LinearBarcodeFormat, + type ReadOutputBarcodeFormat, type ReadResult, type ReaderOptions, defaultReaderOptions, + linearBarcodeFormats, } from "../src/reader/index.js"; export const DEFAULT_READER_OPTIONS_FOR_TESTS: ReaderOptions = { ...defaultReaderOptions, - tryCode39ExtendedMode: true, - returnCodabarStartEnd: true, - eanAddOnSymbol: "Ignore", textMode: "Escaped", tryDownscale: false, maxNumberOfSymbols: 1, @@ -179,23 +178,15 @@ function isGraphicalUnicode(codePoint: number): boolean { return true; } -/** - * TODO: handle this more gracefully - */ -export function fourOrientations(barcodeFormat: BarcodeFormat): boolean { +export function isLinearBarcodeFormat( + barcodeFormat: ReadOutputBarcodeFormat, +): boolean { return ( - barcodeFormat === "Aztec" || - barcodeFormat === "DataMatrix" || - barcodeFormat === "MaxiCode" || - barcodeFormat === "PDF417" || - barcodeFormat === "QRCode" || - barcodeFormat === "MicroQRCode" || - barcodeFormat === "rMQRCode" || - barcodeFormat === "None" + linearBarcodeFormats.indexOf(barcodeFormat as LinearBarcodeFormat) !== -1 ); } -export function snapshotResult(readResult?: ReadResult): string { +export function takeSnapshot(readResult?: ReadResult): string { if (!readResult) { return "null\n"; } diff --git a/tsconfig.json b/tsconfig.json index 541d3285..519fb166 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "extends": "./tsconfig.base.json", "compilerOptions": { "types": ["emscripten", "node"], + "lib": ["ESNext", "DOM"], "allowJs": true, "noEmit": true }, diff --git a/typedoc.json b/typedoc.json index 09614a50..e0a48549 100644 --- a/typedoc.json +++ b/typedoc.json @@ -6,5 +6,18 @@ "./src/reader/index.ts", "./src/writer/index.ts" ], - "out": "docs" + "out": "docs", + "plugin": ["typedoc-plugin-replace-text"], + "replaceText": { + "replacements": [ + { + "pattern": "^# zxing-wasm[\\s\\n]+", + "replace": "" + }, + { + "pattern": "]\\(https:\\/\\/zxing-wasm\\.deno\\.dev\\/", + "replace": "](/" + } + ] + } } diff --git a/vite.config.ts b/vite.config.ts index d7a6e874..15224e86 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,4 +1,9 @@ -/// +/// +/// + +import { createHash } from "node:crypto"; +import { readFile } from "node:fs/promises"; +import { fileURLToPath } from "node:url"; import { defineConfig } from "vite"; import babel from "vite-plugin-babel"; import { version } from "./package.json"; @@ -19,7 +24,7 @@ export default defineConfig({ outDir: "dist/es", rollupOptions: { output: { - chunkFileNames: "[name]-[hash].js", + chunkFileNames: "[name].js", manualChunks: (id) => { if ( /core\.ts|exposedReaderBindings\.ts|exposedWriterBindings\.ts/.test( @@ -44,6 +49,39 @@ export default defineConfig({ define: { NPM_PACKAGE_VERSION: JSON.stringify(version), "import.meta.vitest": "undefined", + READER_HASH: JSON.stringify( + createHash("sha256") + .update( + await readFile( + fileURLToPath( + new URL("./src/reader/zxing_reader.wasm", import.meta.url), + ), + ), + ) + .digest("hex"), + ), + WRITER_HASH: JSON.stringify( + createHash("sha256") + .update( + await readFile( + fileURLToPath( + new URL("./src/writer/zxing_writer.wasm", import.meta.url), + ), + ), + ) + .digest("hex"), + ), + FULL_HASH: JSON.stringify( + createHash("sha256") + .update( + await readFile( + fileURLToPath( + new URL("./src/full/zxing_full.wasm", import.meta.url), + ), + ), + ) + .digest("hex"), + ), }, test: { testTimeout: 10000,