Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaspun-wandb committed Nov 13, 2024
1 parent 6218eb4 commit e841201
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions weave-js/src/core/ops/primitives/string.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -948,14 +948,14 @@ describe('opStringLevenshtein', () => {

async function parseNumberWithSeparatorQuery(
str: string,
thousands_separator: string | null,
decimal_separator: string | null,
thousandsSeparator: string | null,
decimalSeparator: string | null,
) {
return (await testClient()).query(
opParseNumberWithSeparator({
str: constString(str),
thousands_separator: thousands_separator ? constString(thousands_separator) : constNone(),
decimal_separator: decimal_separator ? constString(decimal_separator) : constNone(),
thousands_separator: thousandsSeparator ? constString(thousandsSeparator) : constNone(),
decimal_separator: decimalSeparator ? constString(decimalSeparator) : constNone(),
})
)
}
Expand Down

0 comments on commit e841201

Please sign in to comment.