Skip to content

Commit 98a35ab

Browse files
committed
Fixed import paths for integration test helpers that were missed
Signed-off-by: Ilyes Ben Dlala <ilyes.bendlala@iteratec.com>
1 parent e53197a commit 98a35ab

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

scanners/doggo/integration-tests/doggo.test.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
//
33
// SPDX-License-Identifier: Apache-2.0
44

5-
const {
6-
scan
7-
} = require("../../helpers");
5+
const { scan } = require("../../../tests/integration/helpers.js");
6+
87

98
jest.retryTimes(3);
109

scanners/ssh-audit/integration-tests/ssh-audit.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// SPDX-License-Identifier: Apache-2.0
44

5-
const { scan } = require("../../helpers");
5+
const { scan } = require("../../../tests/integration/helpers.js");
66

77
jest.retryTimes(1);
88

0 commit comments

Comments
 (0)