Skip to content

Commit 0c685b4

Browse files
🧪 test(sample): Shorten unused argument names.
1 parent 5e33aa1 commit 0c685b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/src/sample.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {_calloc} from '@aureooms/js-memory';
55
import {iota, copy} from '@aureooms/js-array';
66
import {increasing} from '@aureooms/js-compare';
77

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

1111
const a = calloc(n);
@@ -34,7 +34,7 @@ const macro = (t, type, _sample_name, sample, n, k, i, j) => {
3434
}
3535
};
3636

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

4040
const n = 100;

0 commit comments

Comments
 (0)