Skip to content

Commit e18fe9d

Browse files
.
1 parent d29728b commit e18fe9d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

roles/tests-unit/files/FWO.Test/HtmlToPdfTest.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,7 @@ public async Task GeneratePdf()
2424

2525
string? isGitHubActions = Environment.GetEnvironmentVariable("RUNNING_ON_GITHUB");
2626

27-
Console.WriteLine(isGitHubActions);
28-
Debug.WriteLine(isGitHubActions);
29-
30-
if(isGitHubActions == "1")
27+
if(!string.IsNullOrEmpty(isGitHubActions))
3128
{
3229
return;
3330
}

0 commit comments

Comments
 (0)