File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed
Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 268268 " git_patch_convenient_from_diff"
269269 ]
270270 ],
271+ [
272+ " reflog_entry" ,
273+ [
274+ " git_reflog_entry_committer" ,
275+ " git_reflog_entry_id_new" ,
276+ " git_reflog_entry_id_old" ,
277+ " git_reflog_entry_message"
278+ ]
279+ ],
271280 [
272281 " revwalk" ,
273282 [
705714 " git_merge_head_id"
706715 ]
707716 },
717+ "reflog" : {
718+ "functions" : [
719+ " git_reflog_entry_committer" ,
720+ " git_reflog_entry_id_new" ,
721+ " git_reflog_entry_id_old" ,
722+ " git_reflog_entry_message"
723+ ]
724+ },
708725 "status" : {
709726 "functions" : [
710727 " git_status_list_entrycount" ,
Original file line number Diff line number Diff line change @@ -367,11 +367,11 @@ describe("Commit", function() {
367367 } ) . then ( function ( reflog ) {
368368 var reflogEntry = reflog . entryByIndex ( 0 ) ;
369369 assert . equal (
370- NodeGit . Reflog . entryMessage ( reflogEntry ) ,
370+ reflogEntry . message ( ) ,
371371 customReflogMessage
372372 ) ;
373373 assert . equal (
374- NodeGit . Reflog . entryIdNew ( reflogEntry ) . toString ( ) ,
374+ reflogEntry . idNew ( ) . toString ( ) ,
375375 oid
376376 ) ;
377377 // only setTarget should have added to the entrycount
You can’t perform that action at this time.
0 commit comments