Skip to content

Commit 4e98a5b

Browse files
committed
fix: tests and package json
1 parent 919929e commit 4e98a5b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

test/rules/miscellaneous/import-path-check.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ const sinon = require('sinon')
44
const linter = require('../../../lib/index')
55
const { assertNoErrors, assertErrorCount, assertWarnsCount } = require('../../common/asserts')
66
const { multiLine } = require('../../common/contract-builder')
7-
const { successCases, errorCases } = require('../../../lib/fixtureCases/miscellaneous/import-path-check')
7+
const {
8+
successCases,
9+
errorCases,
10+
} = require('../../../lib/fixtureCases/miscellaneous/import-path-check')
811

912
describe('Linter - import-path-check (mocked fs)', () => {
1013
let existsStub

test/rules/miscellaneous/quotes.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ describe('Linter - quotes', () => {
6969
)
7070

7171
it('should raise no error', () => {
72-
const filePath = storeAsFile(require('../../../lib/fixtureCases/miscellaneous/string-with-double-quotes'))
72+
const filePath = storeAsFile(
73+
require('../../../lib/fixtureCases/miscellaneous/string-with-double-quotes')
74+
)
7375

7476
const report = linter.processFile(filePath, {
7577
rules: { quotes: 'error' },

0 commit comments

Comments
 (0)