You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/git.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -687,7 +687,7 @@ test('git', (t) => {
687
687
});
688
688
689
689
clone.on('close',function(code){
690
-
t.equal(error,`Cloning into 'doom.git doom1'...\nfatal: unable to access 'http://root:world@localhost:${port}/doom.git doom1/': Empty reply from server\n`);
690
+
t.equal(error,`Cloning into \'doom.git doom1\'...\nfatal: unable to access \'http://localhost:${port}/doom.git doom1/\': The requested URL returned error: 400\n`);
691
691
t.equal(code,128);
692
692
callback();
693
693
});
@@ -757,7 +757,7 @@ test('git', (t) => {
757
757
});
758
758
759
759
clone.on('close',function(code){
760
-
t.equal(error,`Cloning into 'doom.git doom1'...\nfatal: unable to access 'http://root:world@localhost:${port}/doom.git doom1/': Empty reply from server\n`);
760
+
t.equal(error,`Cloning into \'doom.git doom1\'...\nfatal: unable to access \'http://localhost:${port}/doom.git doom1/\': The requested URL returned error: 400\n`);
761
761
t.equal(code,128);
762
762
callback();
763
763
});
@@ -821,7 +821,7 @@ test('git', (t) => {
821
821
});
822
822
823
823
clone.on('close',function(code){
824
-
t.equal(error,`Cloning into 'doom.git doom1'...\nfatal: unable to access 'http://root:world@localhost:${port}/doom.git doom1/': Empty reply from server\n`);
824
+
t.equal(error,`Cloning into \'doom.git doom1\'...\nfatal: unable to access \'http://localhost:${port}/doom.git doom1/\': The requested URL returned error: 400\n`);
0 commit comments