Fix tests.

This commit is contained in:
Sam Rose 2024-05-23 15:16:52 +01:00
parent 120f240f01
commit a6d2f82e7b
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -57,5 +57,5 @@ export function isFormat(format: any): format is Format {
} }
export function parseCsvExport<T>(value: string) { export function parseCsvExport<T>(value: string) {
return JSON.parse(value?.replace(/'/g, '"')) as T return JSON.parse(value) as T
} }