Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Make isHead() test more strict about the return value.
  • Loading branch information
dsabanin authored May 17, 2018
commit e2ae1a92f2c0a22a2fa95a9bea8d78dabe67fee7
2 changes: 1 addition & 1 deletion test/tests/branch.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ describe("Branch", function() {

return repo.getBranch("master")
.then(function(branch) {
assert.ok(branch.isHead());
assert.strictEqual(branch.isHead(), true);
});
});

Expand Down