Skip to content
Merged
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
Next Next commit
Fixed lint error
  • Loading branch information
John Haley committed Oct 23, 2014
commit 2fe56eb5aa28e421109f1e91e3a270fd2a9cd7b9
3 changes: 2 additions & 1 deletion test/tests/cred.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ describe("Cred", function() {
});

it("can create credentials using plaintext", function() {
var plaintextCreds = NodeGit.Cred.userpassPlaintextNew("username", "password");
var plaintextCreds
= NodeGit.Cred.userpassPlaintextNew("username", "password");

assert(plaintextCreds instanceof NodeGit.Cred);
});
Expand Down