Skip to content

Commit ffe598d

Browse files
committed
chore(econify): fix lint error in E2E test
1 parent 1e9f632 commit ffe598d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/econify/src/api/batch_session_e2e_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ Deno.test("E2E: Verify monetary indicators still work with currency conversion",
249249
// The normalized value should be different from original due to FX conversion
250250
if (indicator.unit.includes("EUR")) {
251251
// EUR to USD should divide by 1.1
252-
const expectedRange = testData[0].value / 1.1;
252+
const _expectedRange = testData[0].value / 1.1;
253253
// Allow for some tolerance due to magnitude scaling
254254
console.log(
255255
` Converted EUR value: ${firstItem.normalized} (original: ${

0 commit comments

Comments
 (0)