Skip to content

Commit

Permalink
fix(mb): update megabyte definition
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicoder86 committed Dec 18, 2017
1 parent 5fb1afd commit b895b7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/requestOption.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

const MEGA_BYTE = 1000 * 1000;
const MEGA_BYTE = 1024 * 1024;

class SuiteRequestOption {

Expand Down
2 changes: 1 addition & 1 deletion lib/wrapper.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe('Wrapper', function() {
'x-custom': 'alma'
},
timeout: 15000,
maxContentLength: 10000000
maxContentLength: 10485760
};
});

Expand Down

0 comments on commit b895b7a

Please sign in to comment.