summaryrefslogtreecommitdiff
path: root/src/util/amounts-test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/amounts-test.ts')
-rw-r--r--src/util/amounts-test.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/util/amounts-test.ts b/src/util/amounts-test.ts
index e10ee5962..afd8caa51 100644
--- a/src/util/amounts-test.ts
+++ b/src/util/amounts-test.ts
@@ -24,9 +24,7 @@ const jAmt = (
currency: string,
): AmountJson => ({ value, fraction, currency });
-const sAmt = (
- s: string
-): AmountJson => Amounts.parseOrThrow(s);
+const sAmt = (s: string): AmountJson => Amounts.parseOrThrow(s);
test("amount addition (simple)", (t) => {
const a1 = jAmt(1, 0, "EUR");