Skip to content

Commit

Permalink
[UPDATE] chai dev dep. [TESTS] fix missing args.
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Jun 9, 2015
1 parent 0e6eac3 commit 75e7716
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -59,7 +59,7 @@
"validate.io-string-primitive": "^1.0.0"
},
"devDependencies": {
"chai": "2.x.x",
"chai": "3.x.x",
"mocha": "2.x.x",
"coveralls": "^2.11.1",
"istanbul": "^0.3.0",
Expand Down
4 changes: 2 additions & 2 deletions test/test.matrix.js
Expand Up @@ -79,8 +79,8 @@ describe( 'matrix variance', function tests() {
mat.strides[ 1 ] *= -1;
mat.offset = mat.strides[ 0 ] - 1;

p = variance( out, mat );
expected = '2.5;2.5;2.5;2.5;2.5';
p = variance( out, mat, false, 1 );
expected = '62.5,62.5,62.5,62.5,62.5';

assert.strictEqual( p.toString(), expected, 'fliplr' );
});
Expand Down

0 comments on commit 75e7716

Please sign in to comment.