Skip to content

Commit

Permalink
Corrected test that was breaking
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolastakashi committed Jun 4, 2017
1 parent 79fb5a7 commit 1f984d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
"typescript": "^2.0.3"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.46",
"chai": "^3.5.0",
"@types/node": "^7.0.27",
"chai": "^4.0.1",
"coveralls": "^2.11.14",
"mocha": "^3.1.2",
"nyc": "^8.3.1",
"nyc": "^11.0.2",
"rimraf": "^2.5.4",
"tslint": "^3.15.1"
"tslint": "^5.4.2"
}
}
2 changes: 1 addition & 1 deletion test/linq-to-type.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ describe('Where test', () => {

it('should return an empty collection when the expression is not met', () => {
let result = items.where(x => x < 0)
expect(result.length).to.be.empty
expect(result).to.be.empty
})
})
})
Expand Down

0 comments on commit 1f984d9

Please sign in to comment.