Skip to content

Commit

Permalink
chore: util will always return string, but parseNumericBitness ensu…
Browse files Browse the repository at this point in the history
…res number is set
  • Loading branch information
ovflowd committed Dec 26, 2024
1 parent ed8e52b commit 2589a37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ describe('getUserBitnessByArchitecture', () => {

it('should return the user bitness for other architectures', () => {
const result = getUserBitnessByArchitecture('x86', 32);
expect(result).toBe(32);
expect(result).toBe('32');
});
});

0 comments on commit 2589a37

Please sign in to comment.