Skip to content

Commit

Permalink
Bump FluentAssertions from 6.12.0 to 6.12.2 (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
lg2de authored Nov 9, 2024
2 parents 00d84e7 + 43460ee commit 28c1b21
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions src/SimpleAccounting/Presentation/ImportBookingsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ namespace lg2de.SimpleAccounting.Presentation;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Windows.Input;
using JetBrains.Annotations;
using lg2de.SimpleAccounting.Abstractions;
using lg2de.SimpleAccounting.Extensions;
using lg2de.SimpleAccounting.Infrastructure;
Expand Down Expand Up @@ -68,12 +69,12 @@ public ImportBookingsViewModel(
public bool IsImportBroken => !this.ImportAccounts.Any();

/// <summary>
/// Gets the minimal date valid for selecting <see cref="StartDate"/>.
/// Gets the minimal date valid for selecting <see cref="StartDate" />.
/// </summary>
public DateTime RangeMin { get; }

/// <summary>
/// Gets the maximal date valid for selecting <see cref="StartDate"/>.
/// Gets the maximal date valid for selecting <see cref="StartDate" />.
/// </summary>
public DateTime RangeMax { get; }

Expand Down Expand Up @@ -173,7 +174,7 @@ public DateTime StartDate

protected IProjectData ProjectData { get; }

private ulong FirstBookingNumber { get; }
[UsedImplicitly] internal ulong FirstBookingNumber { get; }

protected void UpdateIdentifierInLoadedData()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<ItemGroup>
<!-- license is apache 2.0 -->
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="FluentAssertions" Version="6.12.2" />
<!-- license is MIT -->
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<!-- license is BSD-3-Clause -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ public void ImportBookingsCommand_BookingNumberInitialized()
FirstBookingNumber = 1,
RangeMin = new DateTime(DateTime.Now.Year, 1, 1, 0, 0, 0, DateTimeKind.Local),
RangeMax = new DateTime(DateTime.Now.Year, 12, 31, 0, 0, 0, DateTimeKind.Local)
});
}, o => o.IncludingInternalProperties());
vm.ImportAccounts.Should().NotBeEmpty();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<ItemGroup>
<!-- license is apache 2.0 -->
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="FluentAssertions" Version="6.12.2" />
<!-- license is MIT -->
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<!-- license is BSD-3-Clause -->
Expand Down

0 comments on commit 28c1b21

Please sign in to comment.