Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Verdon authored and ekondur committed Jun 6, 2023
1 parent 6933f6a commit 84981fc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions DatatableJS.Data.UnitTest/DataTests.cs
Expand Up @@ -52,9 +52,6 @@ public void ToDataResult_WhenFilterWithNameCaseSensitive_ReturnsListCountZero()
_request.filters.Add(new Filter { Field = "Name", Operand = Operand.Contains, Value = "jon", CaseSensitive = true });
var result = _list.ToDataResult(_request);
Assert.That(result.data.Count, Is.EqualTo(0));
_request.filters.Add(new Filter { Field = "Name", Operand = Operand.Contains, Value = "Jon", CaseSensitive = true });
result = _list.ToDataResult(_request);
Assert.That(result.data.Count, Is.EqualTo(1));
}

[Test]
Expand Down

0 comments on commit 84981fc

Please sign in to comment.