@@ -20,7 +20,7 @@ describe('git-command-manager integration tests', () => {
2020 expect ( initialCommit . signed ) . toBeFalsy ( )
2121 expect ( initialCommit . changes [ 0 ] . mode ) . toEqual ( '100644' )
2222 expect ( initialCommit . changes [ 0 ] . status ) . toEqual ( 'A' )
23- expect ( initialCommit . changes [ 0 ] . path ) . toEqual ( 'README_TEMP .md' )
23+ expect ( initialCommit . changes [ 0 ] . path ) . toEqual ( 'README→TEMP .md' ) // filename contains unicode
2424
2525 expect ( emptyCommit . subject ) . toEqual ( 'empty commit for tests' )
2626 expect ( emptyCommit . tree ) . toEqual ( initialCommit . tree ) // empty commits have no tree and reference the parent's
@@ -33,7 +33,7 @@ describe('git-command-manager integration tests', () => {
3333 expect ( modifiedCommit . signed ) . toBeFalsy ( )
3434 expect ( modifiedCommit . changes [ 0 ] . mode ) . toEqual ( '100644' )
3535 expect ( modifiedCommit . changes [ 0 ] . status ) . toEqual ( 'M' )
36- expect ( modifiedCommit . changes [ 0 ] . path ) . toEqual ( 'README_TEMP .md' )
36+ expect ( modifiedCommit . changes [ 0 ] . path ) . toEqual ( 'README→TEMP .md' )
3737
3838 expect ( headCommit . subject ) . toEqual ( 'rename readme' )
3939 expect ( headCommit . parents [ 0 ] ) . toEqual ( modifiedCommit . sha )
@@ -43,6 +43,6 @@ describe('git-command-manager integration tests', () => {
4343 expect ( headCommit . changes [ 0 ] . path ) . toEqual ( 'README.md' )
4444 expect ( headCommit . changes [ 1 ] . mode ) . toEqual ( '100644' )
4545 expect ( headCommit . changes [ 1 ] . status ) . toEqual ( 'D' )
46- expect ( headCommit . changes [ 1 ] . path ) . toEqual ( 'README_TEMP .md' )
46+ expect ( headCommit . changes [ 1 ] . path ) . toEqual ( 'README→TEMP .md' )
4747 } )
4848} )
0 commit comments