Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 33f6e9f

Browse files
Fixing unit tests
1 parent e372d13 commit 33f6e9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/UnitTests/IO/RemoteListOutputProcessorTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void ShouldParseSingleHttpsPushOnlyRemote()
5757
};
5858

5959
var name = "origin";
60-
var function = GitRemoteFunction.Fetch;
60+
var function = GitRemoteFunction.Push;
6161
var host = "github.com";
6262
var url = "https://github.com/github/VisualStudio.git";
6363
AssertProcessOutput(output, new[]
@@ -103,7 +103,7 @@ public void ShouldParseMultipleRemotes()
103103
AssertProcessOutput(output, new[]
104104
{
105105
new GitRemote("origin", "github.com", "https://github.com/github/VisualStudio.git", GitRemoteFunction.Both),
106-
new GitRemote("stanleygoldman", "github.com", "github.com:StanleyGoldman/VisualStudio.git", GitRemoteFunction.Both, "https://github.com/github/VisualStudio.git"),
106+
new GitRemote("stanleygoldman", "github.com", "github.com:StanleyGoldman/VisualStudio.git", GitRemoteFunction.Both, "git"),
107107
new GitRemote("fetchOnly", "github.com", "github.com:StanleyGoldman/VisualStudio2.git", GitRemoteFunction.Fetch,"git")
108108
});
109109
}

0 commit comments

Comments
 (0)