This commit is contained in:
StellaOps Bot
2025-12-13 02:22:15 +02:00
parent 564df71bfb
commit 999e26a48e
395 changed files with 25045 additions and 2224 deletions

View File

@@ -143,7 +143,7 @@ public sealed class OracleConnectorTests : IAsyncLifetime
var stateRepository = provider.GetRequiredService<ISourceStateRepository>();
var state = await stateRepository.TryGetAsync(VndrOracleConnectorPlugin.SourceName, CancellationToken.None);
Assert.NotNull(state);
var cursor = OracleCursor.FromBson(state!.Cursor);
var cursor = OracleCursor.FromDocument(state!.Cursor);
Assert.Empty(cursor.PendingDocuments);
Assert.Empty(cursor.PendingMappings);
Assert.Equal(2, cursor.FetchCache.Count);
@@ -250,7 +250,7 @@ public sealed class OracleConnectorTests : IAsyncLifetime
var stateRepository = provider.GetRequiredService<ISourceStateRepository>();
var state = await stateRepository.TryGetAsync(VndrOracleConnectorPlugin.SourceName, CancellationToken.None);
Assert.NotNull(state);
var cursor = OracleCursor.FromBson(state!.Cursor);
var cursor = OracleCursor.FromDocument(state!.Cursor);
Assert.Empty(cursor.PendingDocuments);
Assert.Empty(cursor.PendingMappings);
}