Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriyDurov committed Aug 8, 2024
1 parent d724c90 commit 559d73a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using MudBlazor;
using System.Text.Json.Serialization;

Expand Down Expand Up @@ -63,7 +64,9 @@ public async Task OnQuery_WhenRequestCompleted_ShouldTrigger()
[Fact]
public async Task RestoreLastQuery_WithQuery_ShouldRestore()
{
var dataProvider = new FluxSetDataProvider<TestModel>();
var loggerFactory = new LoggerFactory();

var dataProvider = new FluxSetDataProvider<TestModel>(loggerFactory);
var tableState = new TableState()
{
Page = 0,
Expand Down

0 comments on commit 559d73a

Please sign in to comment.