Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tienifr committed May 2, 2024
1 parent fc2de8c commit c9ad9aa
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tests/actions/PolicyTaxTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ describe('actions/PolicyTax', () => {
describe('SetPolicyCustomTaxName', () => {
it('Set policy`s custom tax name', () => {
const customTaxName = 'Custom tag name';
const originalCustomTaxName = fakePolicy?.taxRates?.name;

// @ts-expect-error TODO: Remove this once TestHelper (https://github.com/Expensify/App/issues/25318) is migrated to TypeScript.
fetch.pause();
Policy.setPolicyCustomTaxName(fakePolicy.id, customTaxName);
Expand Down Expand Up @@ -776,13 +774,6 @@ describe('actions/PolicyTax', () => {
});

it('Delete tax that is foreignTaxDefault', () => {
const fakePolicy: PolicyType = {
...createRandomPolicy(0),
taxRates: {
...CONST.DEFAULT_TAX,
foreignTaxDefault: 'id_TAX_RATE_1',
},
};
const taxID = 'id_TAX_RATE_1';
const firstTaxID = 'id_TAX_EXEMPT';

Expand Down

0 comments on commit c9ad9aa

Please sign in to comment.