Skip to content

Commit 2589a37

Browse files
committed
chore: util will always return string, but parseNumericBitness ensures number is set
1 parent ed8e52b commit 2589a37

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/site/util/__tests__/getUserBitnessByArchitecture.test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ describe('getUserBitnessByArchitecture', () => {
88

99
it('should return the user bitness for other architectures', () => {
1010
const result = getUserBitnessByArchitecture('x86', 32);
11-
expect(result).toBe(32);
11+
expect(result).toBe('32');
1212
});
1313
});

0 commit comments

Comments
 (0)