mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Fix linter issue
This commit is contained in:
parent
a47ea153da
commit
379cd20154
1 changed files with 2 additions and 2 deletions
|
|
@ -276,7 +276,7 @@ describe("initializeCliArguments", () => {
|
||||||
it("should warn on deprecated --include-python for setup", () => {
|
it("should warn on deprecated --include-python for setup", () => {
|
||||||
const warnings = [];
|
const warnings = [];
|
||||||
const originalWriteWarning = ui.writeWarning;
|
const originalWriteWarning = ui.writeWarning;
|
||||||
ui.writeWarning = (msg, ...rest) => {
|
ui.writeWarning = (msg, ..._rest) => {
|
||||||
warnings.push(String(msg));
|
warnings.push(String(msg));
|
||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
|
|
@ -294,7 +294,7 @@ describe("initializeCliArguments", () => {
|
||||||
it("should warn on deprecated --include-python for setup-ci", () => {
|
it("should warn on deprecated --include-python for setup-ci", () => {
|
||||||
const warnings = [];
|
const warnings = [];
|
||||||
const originalWriteWarning = ui.writeWarning;
|
const originalWriteWarning = ui.writeWarning;
|
||||||
ui.writeWarning = (msg, ...rest) => {
|
ui.writeWarning = (msg, ..._rest) => {
|
||||||
warnings.push(String(msg));
|
warnings.push(String(msg));
|
||||||
};
|
};
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue