Skip to content

Commit

Permalink
More time zone related test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierdecoster committed Nov 29, 2019
1 parent f3f4e9d commit 3e007cb
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public void ThrowsIfNullInitializationConfiguration()
null,
new MailAddress("sender@s.com"),
"a",
CreateValidList(),
DateTime.MinValue,
CreateValidList(),
DateTimeOffset.MinValue,
false));
}

Expand All @@ -38,7 +38,7 @@ public void ThrowsIfNullSender()
null,
"a",
CreateValidList(),
DateTime.MinValue,
DateTimeOffset.MinValue,
false));
}

Expand All @@ -51,7 +51,7 @@ public void ThrowsIfNullUsername()
new MailAddress("sender@s.com"),
null,
CreateValidList(),
DateTime.MinValue,
DateTimeOffset.MinValue,
false));
}

Expand All @@ -64,7 +64,7 @@ public void ThrowsIfNullList()
new MailAddress("sender@s.com"),
"a",
null,
DateTime.MinValue,
DateTimeOffset.MinValue,
false));
}

Expand All @@ -77,7 +77,7 @@ public void ThrowsIfEmptyList()
new MailAddress("sender@s.com"),
"a",
new List<ExpiredCredentialData>(),
DateTime.MinValue,
DateTimeOffset.MinValue,
false));
}

Expand All @@ -90,7 +90,7 @@ public void ThrowsIfNullEmailInList()
new MailAddress("sender@s.com"),
"a",
new List<ExpiredCredentialData> { new ExpiredCredentialData { EmailAddress = null } },
DateTime.MinValue,
DateTimeOffset.MinValue,
false));
}

Expand Down

0 comments on commit 3e007cb

Please sign in to comment.