Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 2c71618

Browse files
committed
Marking failing TimeZoneInfo tests with correct issue #.
1 parent 9e38691 commit 2c71618

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/System.Runtime/tests/System/TimeZoneInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public static void ValidateLibyaTimeZoneTest()
9696
}
9797

9898
[Fact]
99-
[ActiveIssue(846, PlatformID.AnyUnix)]
99+
[ActiveIssue(2465, PlatformID.AnyUnix)]
100100
public static void ValidateRussiaTimeZoneTest()
101101
{
102102
TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById(s_strRussian);
@@ -160,13 +160,13 @@ public static void NearMinMaxDateTimeOffsetConvertTest()
160160
VerifyConvert(new DateTimeOffset(DateTime.MinValue.AddHours(5), new TimeSpan(-3, 0, 0)), s_strPacific, new DateTimeOffset(DateTime.MinValue, new TimeSpan(-8, 0, 0)));
161161

162162
VerifyConvert(DateTime.MaxValue, s_strPacific, s_strSydney, DateTime.MaxValue);
163-
if (Interop.IsWindows) // [ActiveIssue(846, PlatformID.AnyUnix)]
163+
if (Interop.IsWindows) // [ActiveIssue(2465, PlatformID.AnyUnix)]
164164
{
165165
VerifyConvert(DateTime.MaxValue.AddHours(-19), s_strPacific, s_strSydney, DateTime.MaxValue);
166166
}
167167
VerifyConvert(DateTime.MaxValue.AddHours(-19.5), s_strPacific, s_strSydney, DateTime.MaxValue.AddHours(-0.5));
168168
VerifyConvert(DateTime.MinValue, s_strSydney, s_strPacific, DateTime.MinValue);
169-
if (Interop.IsWindows) // [ActiveIssue(846, PlatformID.AnyUnix)]
169+
if (Interop.IsWindows) // [ActiveIssue(2465, PlatformID.AnyUnix)]
170170
{
171171
VerifyConvert(DateTime.MinValue.AddHours(19), s_strSydney, s_strPacific, DateTime.MinValue);
172172
VerifyConvert(DateTime.MinValue.AddHours(19.5), s_strSydney, s_strPacific, DateTime.MinValue.AddHours(0.5));

0 commit comments

Comments
 (0)