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
Show file tree
Hide file tree
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
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
2 changes: 1 addition & 1 deletion tests/BaGet.Tests/HostIntegrationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ private IServiceProvider BuildServiceProvider(Dictionary<string, string> configs
})
.Build();

return host.Services;
return host.Services.CreateScope().ServiceProvider;
}
}
}