mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 21:33:15 -07:00
Fixed some warnings
This commit is contained in:
parent
a5899ff4af
commit
3cc1113440
3 changed files with 13 additions and 15 deletions
|
@ -43,9 +43,9 @@ namespace PlexRequests.Helpers.Tests
|
|||
{
|
||||
get
|
||||
{
|
||||
yield return new TestCaseData(new Dictionary<string, string>()).Returns(string.Empty);
|
||||
yield return new TestCaseData(new Dictionary<string, string> { { "_ga", "GA1.1.306549087.1464005217" } }).Returns("306549087.1464005217");
|
||||
yield return new TestCaseData(new Dictionary<string,string> { {"_ga", "GA1.1.306549087" } }).Returns(string.Empty);
|
||||
yield return new TestCaseData(new Dictionary<string, string>()).Returns(string.Empty).SetName("Empty");
|
||||
yield return new TestCaseData(new Dictionary<string, string> { { "_ga", "GA1.1.306549087.1464005217" } }).Returns("306549087.1464005217").SetName("Returns correctly");
|
||||
yield return new TestCaseData(new Dictionary<string,string> { {"_ga", "GA1.1.306549087" } }).Returns(string.Empty).SetName("Invalid Cookie");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue