Skip to content

Commit

Permalink
.NET 3.5 compile fix: string.IsNullOrWhiteSpace not found
Browse files Browse the repository at this point in the history
Merge-request: TC-MR-9135
Merged-by: Vladislav Ma-iu-shan <Vladislav.Ma-iu-shan@jetbrains.com>
  • Loading branch information
Vlad Ma-iu-shan authored and qodana-bot committed Feb 22, 2024
1 parent 5118e7c commit e718d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TeamCity.VSTest.TestLogger/FailedTestsReportWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void ReportFailedTest(TestCase testCase)
if (_reportWriter == null)
return;

if (string.IsNullOrWhiteSpace(testCase.FullyQualifiedName))
if (Strings.IsNullOrWhiteSpace(testCase.FullyQualifiedName))
return;

var testName = GetTestNameForRetry(testCase.FullyQualifiedName);
Expand Down

0 comments on commit e718d61

Please sign in to comment.