Skip to content

Commit

Permalink
Merge pull request #7265 from dotnet/dependabot/nuget/eng/dependabot/…
Browse files Browse the repository at this point in the history
…main/FakeItEasy-8.0.0

Bump FakeItEasy from 7.4.0 to 8.0.0 in /eng/dependabot
  • Loading branch information
v-wuzhai authored Dec 11, 2023
2 parents 9ce089e + 2009a06 commit f53c281
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eng/dependabot/Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<PackageReference Update="StyleCop.Analyzers" Version="1.2.0-beta.507" />

<!--Test dependencies-->
<PackageReference Update="FakeItEasy" Version="7.4.0" />
<PackageReference Update="FakeItEasy" Version="8.0.0" />
<PackageReference Update="FluentAssertions" Version="6.12.0" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Update="xunit.abstractions" Version="2.0.3" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using Castle.Core.Internal;
using FluentAssertions;
using Microsoft.Extensions.Logging;
using Microsoft.TemplateEngine.Abstractions;
Expand Down Expand Up @@ -980,7 +979,7 @@ private async Task InstantiateAsyncHelper(
res.ErrorMessage.Should().NotBeNullOrEmpty();
res.ErrorMessage.Should().Contain(expectedErrorMessage);
res.OutputBaseDirectory.Should().Match(s =>
s.IsNullOrEmpty() || !_engineEnvironmentSettings.Host.FileSystem.FileExists(s));
string.IsNullOrEmpty(s) || !_engineEnvironmentSettings.Host.FileSystem.FileExists(s));
}
else
{
Expand Down

0 comments on commit f53c281

Please sign in to comment.