Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix unit tests #770

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Next Next commit
Fix TheRegistrationIndexResponseIsSortedByVersion test
The implicit conversion from the default DateTime to DateTimeOffset was throwing `System.ArgumentOutOfRangeException`
> The UTC time represented when the offset is applied must be between year 0 and 10,000. (Parameter 'offset')
  • Loading branch information
0xced committed Jun 3, 2023
commit 756b0f1270d540bb6516c44cd4202997a64e9dec
2 changes: 2 additions & 0 deletions tests/BaGet.Core.Tests/Metadata/RegistrationBuilderTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Moq;
Expand Down Expand Up @@ -60,6 +61,7 @@ private Package GetTestPackage(string packageId, string version)
PackageTypes = new List<PackageType> { new PackageType { Name = "test" } },
Dependencies = new List<PackageDependency> { },
Version = new NuGetVersion(version),
Published = new DateTime(2003, 1, 4, 15, 9, 26, 535),
};
}
}
Expand Down