We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d02f2d9 commit ef4e3b4Copy full SHA for ef4e3b4
Conversions/test/ConvertBase.test.js
@@ -2,9 +2,9 @@ import {
2
convertBase
3
} from '../ConvertBase'
4
5
-test('Converting number 10010 from base 4 to base 10 should be 272', () => {
+test('Converting number 10010 from base 4 to base 10 should be 260', () => {
6
const res = convertBase(10010, 4, 10)
7
- expect(res).toBe(272)
+ expect(res).toBe(260)
8
})
9
10
test('Converting number 1101 from base 2 to base 10 should be 13', () => {
0 commit comments