@@ -37,63 +37,63 @@ describe("Desribe a file using two paths", function () {
3737 it ( "can describe a renamed file" , function ( ) {
3838 assert . strictEqual (
3939 moveOrRenameMsg ( "foo.txt" , "bar.txt" ) ,
40- "rename foo.txt to bar.txt"
40+ "rename foo.txt to bar.txt" ,
4141 ) ;
4242
4343 assert . strictEqual (
4444 moveOrRenameMsg ( "buzz/foo.txt" , "buzz/bar.txt" ) ,
45- "rename foo.txt to bar.txt"
45+ "rename foo.txt to bar.txt" ,
4646 ) ;
4747
4848 assert . strictEqual (
4949 moveOrRenameMsg ( "fizz buzz/foo.txt" , "fizz buzz/bar.txt" ) ,
50- "rename foo.txt to bar.txt"
50+ "rename foo.txt to bar.txt" ,
5151 ) ;
5252 } ) ;
5353
5454 it ( "can describe a moved file" , function ( ) {
5555 assert . strictEqual (
5656 moveOrRenameMsg ( "buzz/foo.txt" , "fizz/foo.txt" ) ,
57- "move foo.txt to fizz"
57+ "move foo.txt to fizz" ,
5858 ) ;
5959
6060 assert . strictEqual (
6161 moveOrRenameMsg ( "buzz/foo bar.txt" , "fizz/foo bar.txt" ) ,
62- "move 'foo bar.txt' to fizz"
62+ "move 'foo bar.txt' to fizz" ,
6363 ) ;
6464
6565 assert . strictEqual (
6666 moveOrRenameMsg ( "buzz/foo.txt" , "foo.txt" ) ,
67- "move foo.txt to repo root"
67+ "move foo.txt to repo root" ,
6868 ) ;
6969
7070 assert . strictEqual (
7171 moveOrRenameMsg ( "buzz/foo bar.txt" , "foo bar.txt" ) ,
72- "move 'foo bar.txt' to repo root"
72+ "move 'foo bar.txt' to repo root" ,
7373 ) ;
7474 } ) ;
7575
7676 it ( "can describe a remamed and moved file" , function ( ) {
7777 assert . strictEqual (
7878 moveOrRenameMsg ( "foo.txt" , "fizz/bar.txt" ) ,
79- "move and rename foo.txt to fizz/bar.txt"
79+ "move and rename foo.txt to fizz/bar.txt" ,
8080 ) ;
8181
8282 // This is a rare case, so don't bother trying to handle it smarter around
8383 // paths.
8484 assert . strictEqual (
8585 moveOrRenameMsg ( "fuzz/foo.txt" , "fizz/bar.txt" ) ,
86- "move and rename foo.txt to fizz/bar.txt"
86+ "move and rename foo.txt to fizz/bar.txt" ,
8787 ) ;
8888
8989 assert . strictEqual (
9090 moveOrRenameMsg ( "fuzz/foo.txt" , "fizz/bar bazz.txt" ) ,
91- "move and rename foo.txt to 'fizz/bar bazz.txt'"
91+ "move and rename foo.txt to 'fizz/bar bazz.txt'" ,
9292 ) ;
9393
9494 assert . strictEqual (
9595 moveOrRenameMsg ( "fizz/foo.txt" , "bar.txt" ) ,
96- "move and rename foo.txt to bar.txt at repo root"
96+ "move and rename foo.txt to bar.txt at repo root" ,
9797 ) ;
9898 } ) ;
9999 } ) ;
0 commit comments