Skip to content

Commit

Permalink
minor adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
dai-shi committed Jul 11, 2024
1 parent d6437da commit f9fce51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/issue_100.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ describe('Static props prevents selectors recall (#100)', () => {
const state2: State = {
book1: {
staticProp: '5',
priceString: '0',
priceString: '20',
},
};

Expand All @@ -84,6 +84,6 @@ describe('Static props prevents selectors recall (#100)', () => {
selectMemoizedPriceString(state1);

expect(selectAdjustedPriceString(state1)).toBe('10');
expect(selectAdjustedPriceString(state2)).toBe('0');
expect(selectAdjustedPriceString(state2)).toBe('20');
});
});

0 comments on commit f9fce51

Please sign in to comment.