Skip to content

Commit

Permalink
Remove wrong test
Browse files Browse the repository at this point in the history
Remove wrong test
  • Loading branch information
christianbumann committed Sep 2, 2024
1 parent bf2d7be commit fb0b9c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions src/TfsUrlParser.Tests/RepositoryDescriptionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
public class RepositoryDescriptionTests
{
[Theory]
[InlineData(
@"http://myserver:8080/tfs/defaultcollection/myproject/_git",
"No valid Git repository URL.")]
[InlineData(
@"http://myserver:8080/_git/myrepository",
"No valid Git repository URL containing default collection and project name.")]
Expand Down
3 changes: 2 additions & 1 deletion src/TfsUrlParser/RepositoryDescription.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ public RepositoryDescription(Uri repoUrl)
{
throw new UriFormatException("No valid Git repository URL.");
}
} else
}
else
{
this.IsRepository = false;
}
Expand Down

0 comments on commit fb0b9c4

Please sign in to comment.