Skip to content

Commit 020e812

Browse files
.
1 parent e301c2a commit 020e812

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ public async Task GeneratePdf()
2424
bool isValidHtml = ReportBase.IsValidHTML(Html);
2525
ClassicAssert.IsTrue(isValidHtml);
2626

27-
string? isGitHubActions = Environment.GetEnvironmentVariable("RUNNING_ON_GITHUB");
27+
string? isGitHubActions = Environment.GetEnvironmentVariable("RUNNING_ON_GITHUB_ACTIONS");
2828

29-
if (string.IsNullOrEmpty(isGitHubActions))
29+
if (!string.IsNullOrEmpty(isGitHubActions))
3030
{
3131
return;
3232
}

0 commit comments

Comments
 (0)