Skip to content

Commit

Permalink
🧪 test(sample): Shorten unused argument names.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Apr 6, 2021
1 parent 5e33aa1 commit 0c685b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/src/sample.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {_calloc} from '@aureooms/js-memory';
import {iota, copy} from '@aureooms/js-array';
import {increasing} from '@aureooms/js-compare';

const macro = (t, type, _sample_name, sample, n, k, i, j) => {
const macro = (t, type, _, sample, n, k, i, j) => {
const calloc = _calloc(type);

const a = calloc(n);
Expand Down Expand Up @@ -34,7 +34,7 @@ const macro = (t, type, _sample_name, sample, n, k, i, j) => {
}
};

macro.title = (title, type, sample_name, _sample, n, k, i, j) =>
macro.title = (title, type, sample_name, _, n, k, i, j) =>
title || `[${n}] sample ( ${type.name}, ${sample_name}, ${k}, ${i}, ${j} )`;

const n = 100;
Expand Down

0 comments on commit 0c685b4

Please sign in to comment.