Skip to content

Commit 3a166ea

Browse files
fix: update test import
1 parent 537fd3d commit 3a166ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/regression/Arguments.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from 'ava'
22
import { Arg } from '../../src'
3-
import { Argument } from '../../src/Arguments'
3+
import { Argument } from '../../src/shared'
44

55
const testObject = { "foo": "bar" }
66
const testArray = ["a", 1, true]
@@ -107,4 +107,4 @@ test('should not match the argument with the predicate function using Arg.is.not
107107

108108
t.true(Arg.is.not<string>(x => x === 'foo').matches('bar'))
109109
t.true(Arg.is.not<number>(x => x % 2 == 0).matches(3))
110-
})
110+
})

0 commit comments

Comments
 (0)