Skip to content

Commit 69b73af

Browse files
committed
refactor: import path alignment
1 parent ee5c4fd commit 69b73af

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

spec/ClearSubstitute.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import test from 'ava'
22

3-
import { Substitute, SubstituteOf, clearReceivedCalls, received } from '../src'
3+
import { Substitute, SubstituteOf, clearReceivedCalls, received, returns } from '../src'
44
import { SubstituteNode } from '../src/SubstituteNode'
5-
import { returns } from '../src/Transformations'
65

76
interface Calculator {
87
add(a: number, b: number): number

spec/Recorder.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Recorder } from '../src/Recorder'
44
import { RecordsSet } from '../src/RecordsSet'
55
import { Substitute } from '../src/Substitute'
66
import { SubstituteNodeBase } from '../src/SubstituteNodeBase'
7-
import { returns } from '../src/Transformations'
7+
import { returns } from '../src'
88

99
const nodeFactory = (key: string) => {
1010
const node = Substitute.for<SubstituteNodeBase>()

spec/regression/didNotReceive.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import test from 'ava'
2-
import { Substitute, Arg, didNotReceive, received } from '../../src'
2+
import { Substitute, Arg, didNotReceive, received, returns } from '../../src'
33
import { SubstituteException } from '../../src/SubstituteException'
4-
import { returns } from '../../src/Transformations'
54

65
interface Calculator {
76
add(a: number, b: number): number

spec/regression/mimicks.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import test from 'ava'
2-
import { Substitute, Arg } from '../../src'
3-
import { mimicks } from '../../src/Transformations'
2+
import { Substitute, Arg, mimicks } from '../../src'
43

54
interface Calculator {
65
add(a: number, b: number): number

0 commit comments

Comments
 (0)