aboutsummaryrefslogtreecommitdiff
path: root/test/modules/finance.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/modules/finance.spec.ts')
-rw-r--r--test/modules/finance.spec.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/modules/finance.spec.ts b/test/modules/finance.spec.ts
index eab50d94..29b490d2 100644
--- a/test/modules/finance.spec.ts
+++ b/test/modules/finance.spec.ts
@@ -388,7 +388,7 @@ describe('finance', () => {
expect(bitcoinAddress).toBeTruthy();
expect(bitcoinAddress).toBeTypeOf('string');
expect(bitcoinAddress).toSatisfy(isBtcAddress);
- expect(bitcoinAddress).toSatisfy<string>((v) =>
+ expect(bitcoinAddress).toSatisfy((v: string) =>
regexes.some((r) => r.test(v))
);
}