Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Fixed failing test System.Data.Tests.AppDomainsAndFormatInfo.Bug55978 #25482

Merged
merged 1 commit into from
Nov 24, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/System.Data.Common/tests/System/Data/DataTableTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4041,7 +4041,7 @@ public void Bug55978()

DataView dv = dt.DefaultView;
dv.RowFilter = string.Format(CultureInfo.InvariantCulture,
"StartDate >= '{0}' and StartDate <= '{1}'",
"StartDate >= #{0}# and StartDate <= #{1}#",
DateTime.Now.AddDays(2),
DateTime.Now.AddDays(4));
Assert.Equal(10, dt.Rows.Count);
Expand Down