From b164e4839130698985955159cb26149ec0e5e3f6 Mon Sep 17 00:00:00 2001 From: Tom Longhurst <30480171+thomhurst@users.noreply.github.com> Date: Sat, 13 Jul 2024 21:20:04 +0100 Subject: [PATCH] Write line --- .../Helpers/GitHubRepositoryInfoTests.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/ModularPipelines.UnitTests/Helpers/GitHubRepositoryInfoTests.cs b/test/ModularPipelines.UnitTests/Helpers/GitHubRepositoryInfoTests.cs index e4f528538b..c64520ac8b 100644 --- a/test/ModularPipelines.UnitTests/Helpers/GitHubRepositoryInfoTests.cs +++ b/test/ModularPipelines.UnitTests/Helpers/GitHubRepositoryInfoTests.cs @@ -29,6 +29,8 @@ public async Task GitHub_Repository_Information_Is_Populated() var gitHubRepositoryInfo = gitRepoModule.Result.Value!; + Console.WriteLine($"GitHub Repository Info is: {gitHubRepositoryInfo}"); + await Assert.That(gitHubRepositoryInfo.IsGitHub).Is.True(); await Assert.That(gitHubRepositoryInfo.IsInitialized).Is.True(); await Assert.That(gitHubRepositoryInfo.RepositoryName).Is.Not.Null()