Skip to content

Commit

Permalink
use nullable string for nullable field
Browse files Browse the repository at this point in the history
  • Loading branch information
Shiney committed Oct 16, 2023
1 parent 761f77c commit 17e8859
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections;
using System.Collections;
using NUnit.Framework;
// ReSharper disable ConditionIsAlwaysTrueOrFalseAccordingToNullableAPIContract
#pragma warning disable NUnit2045
Expand All @@ -20,7 +20,7 @@ public class ParameterizedTestFixture
{
private readonly string _eq1;
private readonly string _eq2;
private readonly string _neq;
private readonly string? _neq;

public ParameterizedTestFixture(string eq1, string eq2, string neq)
{
Expand Down

0 comments on commit 17e8859

Please sign in to comment.