We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0606bce commit 27820e8Copy full SHA for 27820e8
src/DotNext.Tests/Net/Cluster/Consensus/Raft/MemoryBasedStateMachineTests.cs
@@ -1074,6 +1074,7 @@ public static async Task EnsureMetadataPersistence()
1074
await state.AppendAsync(entry);
1075
}
1076
1077
+ await state.AppendAsync(new BinaryLogEntry<Blittable<int>> { Content = new() { Value = 42 }, Term = 2L });
1078
await state.CommitAsync();
1079
1080
@@ -1085,6 +1086,7 @@ public static async Task EnsureMetadataPersistence()
1085
1086
Null(snapshotIndex);
1087
Equal(1L, entries[0].Term);
1088
Equal(1L, entries[1].Term);
1089
+ Equal(2L, entries[2].Term);
1090
return ValueTask.FromResult(Missing.Value);
1091
};
1092
0 commit comments