Skip to content

Commit dd4a04a

Browse files
committed
arg stuff.
1 parent bc3cb57 commit dd4a04a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Substitute.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { ObjectSubstitute } from "./Transformations";
22
import { ProxyObjectContext, ProxyPropertyContext, ProxyMethodPropertyContext, ProxyCallRecord, ProxyExpectation } from "./Context";
33
import { stringifyCalls, stringifyArguments } from "./Utilities";
4-
import { access } from "fs";
54

65
export class Substitute {
76
static for<T>(): ObjectSubstitute<T> {

src/Utilities.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ProxyPropertyContext, ProxyCallRecord } from "./Context";
2-
import { Arg, Argument } from "./Arguments";
1+
import { ProxyCallRecord } from "./Context";
2+
import { Argument } from "./Arguments";
33

44
export function stringifyArguments(args: any[]) {
55
return args && args.length > 0 ? '[' + args + ']' : '(no arguments)';

0 commit comments

Comments
 (0)