Skip to content
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
12 changes: 6 additions & 6 deletions sdk/core/Azure.Core.Amqp/tests/AmqpMessageBodyTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ public class AmqpMessageBodyTests
new double[] { 3.1415926 },
new decimal(3.1415926),
new decimal[] { new decimal(3.1415926) },
DateTimeOffset.Parse("3/24/21").UtcDateTime,
new DateTime[] {DateTimeOffset.Parse("3/24/21").UtcDateTime },
DateTimeOffset.Parse("3/24/21"),
new DateTimeOffset[] {DateTimeOffset.Parse("3/24/21") },
new DateTimeOffset(2021, 3, 24, 0, 0, 0, TimeSpan.Zero).UtcDateTime,
new DateTime[] { new DateTimeOffset(2021, 3, 24, 0, 0, 0, TimeSpan.Zero).UtcDateTime },
new DateTimeOffset(2021, 3, 24, 0, 0, 0, TimeSpan.Zero),
new DateTimeOffset[] { new DateTimeOffset(2021, 3, 24, 0, 0, 0, TimeSpan.Zero) },
TimeSpan.FromSeconds(5),
new TimeSpan[] {TimeSpan.FromSeconds(5)},
new Uri("http://localHost"),
Expand All @@ -45,8 +45,8 @@ public class AmqpMessageBodyTests
new Dictionary<string, short> {{ "key", 1 } },
new Dictionary<string, double> {{ "key", 3.1415926 } },
new Dictionary<string, decimal> {{ "key", new decimal(3.1415926) } },
new Dictionary<string, DateTime> {{ "key", DateTimeOffset.Parse("3/24/21").UtcDateTime } },
new Dictionary<string, DateTimeOffset> {{ "key", DateTimeOffset.Parse("3/24/21") } },
new Dictionary<string, DateTime> {{ "key", new DateTimeOffset(2021, 3, 24, 0, 0, 0, TimeSpan.Zero).UtcDateTime } },
new Dictionary<string, DateTimeOffset> {{ "key", new DateTimeOffset(2021, 3, 24, 0, 0, 0, TimeSpan.Zero) } },
new Dictionary<string, TimeSpan> {{ "key", TimeSpan.FromSeconds(5) } },
new Dictionary<string, Uri> {{ "key", new Uri("http://localHost") } },
new Dictionary<string, Guid> {{ "key", new Guid("55f239a6-5d50-4f6d-8f84-deed326e4554") } },
Expand Down