@@ -1874,7 +1874,7 @@ describe("Rebase", function() {
18741874 } )
18751875 . then ( function ( commitOid ) {
18761876 assert . equal ( commitOid . toString ( ) ,
1877- "24250fe6bd8a782ec1aaca8b2c9a2456a90517ed " ) ;
1877+ "617cd03370dd799f372e9dcfcd0b097aede1bd7f " ) ;
18781878
18791879 // git_rebase_operation_current returns the index of the rebase
18801880 // operation that was last applied, so after the first operation, it
@@ -1891,13 +1891,13 @@ describe("Rebase", function() {
18911891 . then ( function ( commit ) {
18921892 // verify that the "ours" branch has moved to the correct place
18931893 assert . equal ( commit . id ( ) . toString ( ) ,
1894- "24250fe6bd8a782ec1aaca8b2c9a2456a90517ed " ) ;
1894+ "617cd03370dd799f372e9dcfcd0b097aede1bd7f " ) ;
18951895
18961896 return Promise . all ( [
18971897 commit . parent ( 0 ) ,
18981898 NodeGit . Commit . extractSignature (
18991899 repository ,
1900- "24250fe6bd8a782ec1aaca8b2c9a2456a90517ed " ,
1900+ "617cd03370dd799f372e9dcfcd0b097aede1bd7f " ,
19011901 "moose-sig"
19021902 )
19031903 ] ) ;
@@ -2416,7 +2416,7 @@ describe("Rebase", function() {
24162416 } ) ;
24172417 } ) ;
24182418
2419-
2419+
24202420 it ( "rebase signs correctly if rebaseOptions are re-used" , function ( ) {
24212421 const ourFileName = "ourNewFile.txt" ;
24222422 const theirFileName = "theirNewFile.txt" ;
@@ -2434,15 +2434,15 @@ describe("Rebase", function() {
24342434
24352435 let rebase ;
24362436 let newCommitOid ;
2437-
2437+
24382438 const rebaseOptions = {
24392439 signingCb : ( ) => ( {
24402440 code : NodeGit . Error . CODE . OK ,
24412441 field : "moose-sig" ,
24422442 signedData : "A moose was here."
24432443 } )
24442444 } ;
2445-
2445+
24462446 const repository = this . repository ;
24472447
24482448 // Create two commits on master
@@ -2521,13 +2521,14 @@ describe("Rebase", function() {
25212521 . then ( ( _newCommitOid ) => {
25222522 newCommitOid = _newCommitOid ;
25232523 assert . strictEqual ( newCommitOid . toString ( ) ,
2524- "89ad8168264267bcc50ee60ade3bc3804f55aa72 " ) ;
2524+ "9909e435b52322a71dc341d747b29c392a34c745 " ) ;
25252525 return rebase . next ( ) ;
25262526 } )
25272527 . then ( ( ) => {
25282528 assert . fail ( "should throw" ) ;
25292529 } )
25302530 . catch ( ( error ) => {
2531+ console . log ( error ) ;
25312532 assert ( error . errno === NodeGit . Error . CODE . ITEROVER ) ;
25322533 assert . strictEqual ( rebase . finish ( ourSignature ) , 0 ) ;
25332534 return NodeGit . Commit . extractSignature (
0 commit comments