Skip to content

Commit

Permalink
rm not used done args
Browse files Browse the repository at this point in the history
  • Loading branch information
odahcam committed Feb 27, 2020
1 parent 5de52d2 commit 17d3f59
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/core/pdf417/decoder/PDF417Decoder.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('PDF417DecoderTestCase', () => {
*/
// @Test
// public void testStandardSample1() throws FormatException {
it('testStandardSample1', done => {
it('testStandardSample1', () => {

const resultMetadata = new PDF417ResultMetadata();
const sampleCodes = Int32Array.from([20, 928, 111, 100, 17, 53, 923, 1, 111, 104, 923, 3, 64, 416, 34, 923, 4, 258, 446, 67,
Expand Down Expand Up @@ -66,7 +66,7 @@ describe('PDF417DecoderTestCase', () => {
*/
// @Test
// public void testStandardSample2() throws FormatException {
it('testStandardSample2', done => {
it('testStandardSample2', () => {

const resultMetadata = new PDF417ResultMetadata();
const sampleCodes = Int32Array.from([11, 928, 111, 103, 17, 53, 923, 1, 111, 104, 922,
Expand All @@ -91,7 +91,7 @@ describe('PDF417DecoderTestCase', () => {

// @Test
// public void testSampleWithFilename() throws FormatException {
it('testSampleWithFilename', done => {
it('testSampleWithFilename', () => {

const sampleCodes: Int32Array = Int32Array.from([
23, 477, 928, 111, 100, 0, 252, 21, 86, 923, 0, 815, 251, 133, 12, 148, 537, 593,
Expand All @@ -113,7 +113,7 @@ describe('PDF417DecoderTestCase', () => {

// @Test
// public void testSampleWithNumericValues() throws FormatException {
it('testSampleWithNumericValues', done => {
it('testSampleWithNumericValues', () => {

const sampleCodes: Int32Array = Int32Array.from([
25, 477, 928, 111, 100, 0, 252, 21, 86, 923, 2, 2, 0, 1, 0, 0, 0, 923, 5, 130, 923,
Expand Down

0 comments on commit 17d3f59

Please sign in to comment.