diff --git a/tests/ReactiveHistory.UnitTests/StackHistoryTests.cs b/tests/ReactiveHistory.UnitTests/StackHistoryTests.cs index 2c56cce..8efaf93 100644 --- a/tests/ReactiveHistory.UnitTests/StackHistoryTests.cs +++ b/tests/ReactiveHistory.UnitTests/StackHistoryTests.cs @@ -44,8 +44,8 @@ namespace ReactiveHistory.UnitTests target.Dispose(); - Assert.Null(target.Undos); - Assert.Null(target.Redos); + Assert.Empty(target.Undos); + Assert.Empty(target.Redos); Assert.Throws(() => target.CanUndo.Subscribe(_ => { })); Assert.Throws(() => target.CanRedo.Subscribe(_ => { }));