@@ -49,7 +49,7 @@ describe(EntityQueryContext, () => {
4949 ) ;
5050 } ) ;
5151
52- await viewerContext . runInTransactionForDatabaseAdaptorFlavorAsync (
52+ await viewerContext . runInTransactionForDatabaseAdapterFlavorAsync (
5353 'postgres' ,
5454 async ( queryContext ) => {
5555 queryContext . appendPostCommitCallback ( postCommitCallback ) ;
@@ -76,7 +76,7 @@ describe(EntityQueryContext, () => {
7676 const postCommitCallback = jest . fn ( async ( ) : Promise < void > => { } ) ;
7777
7878 await expect (
79- viewerContext . runInTransactionForDatabaseAdaptorFlavorAsync (
79+ viewerContext . runInTransactionForDatabaseAdapterFlavorAsync (
8080 'postgres' ,
8181 async ( queryContext ) => {
8282 queryContext . appendPostCommitCallback ( postCommitCallback ) ;
@@ -105,7 +105,7 @@ describe(EntityQueryContext, () => {
105105 const postCommitCallback = jest . fn ( async ( ) : Promise < void > => { } ) ;
106106 const postCommitNestedCallback = jest . fn ( async ( ) : Promise < void > => { } ) ;
107107
108- await viewerContext . runInTransactionForDatabaseAdaptorFlavorAsync (
108+ await viewerContext . runInTransactionForDatabaseAdapterFlavorAsync (
109109 'postgres' ,
110110 async ( queryContext ) => {
111111 queryContext . appendPostCommitCallback ( postCommitCallback ) ;
@@ -152,13 +152,13 @@ describe(EntityQueryContext, () => {
152152 const viewerContext = new ViewerContext ( companionProvider ) ;
153153
154154 const queryContextProvider =
155- companionProvider . getQueryContextProviderForDatabaseAdaptorFlavor ( 'postgres' ) ;
155+ companionProvider . getQueryContextProviderForDatabaseAdapterFlavor ( 'postgres' ) ;
156156 const queryContextProviderSpy = jest . spyOn ( queryContextProvider , 'runInTransactionAsync' ) ;
157157
158158 const transactionScopeFn = async ( ) : Promise < any > => { } ;
159159 const transactionConfig = { isolationLevel : TransactionIsolationLevel . SERIALIZABLE } ;
160160
161- await viewerContext . runInTransactionForDatabaseAdaptorFlavorAsync (
161+ await viewerContext . runInTransactionForDatabaseAdapterFlavorAsync (
162162 'postgres' ,
163163 transactionScopeFn ,
164164 transactionConfig ,
@@ -171,7 +171,7 @@ describe(EntityQueryContext, () => {
171171 const companionProvider = createUnitTestEntityCompanionProvider ( ) ;
172172 const viewerContext = new ViewerContext ( companionProvider ) ;
173173
174- await viewerContext . runInTransactionForDatabaseAdaptorFlavorAsync (
174+ await viewerContext . runInTransactionForDatabaseAdapterFlavorAsync (
175175 'postgres' ,
176176 async ( queryContext ) => {
177177 assert ( queryContext . isInTransaction ( ) ) ;
@@ -182,7 +182,7 @@ describe(EntityQueryContext, () => {
182182 { transactionalDataLoaderMode : TransactionalDataLoaderMode . DISABLED } ,
183183 ) ;
184184
185- await viewerContext . runInTransactionForDatabaseAdaptorFlavorAsync (
185+ await viewerContext . runInTransactionForDatabaseAdapterFlavorAsync (
186186 'postgres' ,
187187 async ( queryContext ) => {
188188 assert ( queryContext . isInTransaction ( ) ) ;
@@ -193,7 +193,7 @@ describe(EntityQueryContext, () => {
193193 { transactionalDataLoaderMode : TransactionalDataLoaderMode . ENABLED_BATCH_ONLY } ,
194194 ) ;
195195
196- await viewerContext . runInTransactionForDatabaseAdaptorFlavorAsync (
196+ await viewerContext . runInTransactionForDatabaseAdapterFlavorAsync (
197197 'postgres' ,
198198 async ( queryContext ) => {
199199 assert ( queryContext . isInTransaction ( ) ) ;
@@ -252,7 +252,7 @@ describe(EntityQueryContext, () => {
252252 ) ;
253253 const viewerContext = new ViewerContext ( companionProvider ) ;
254254
255- await viewerContext . runInTransactionForDatabaseAdaptorFlavorAsync (
255+ await viewerContext . runInTransactionForDatabaseAdapterFlavorAsync (
256256 'postgres' ,
257257 async ( queryContext ) => {
258258 assert ( queryContext . isInTransaction ( ) ) ;
@@ -263,7 +263,7 @@ describe(EntityQueryContext, () => {
263263 { transactionalDataLoaderMode : TransactionalDataLoaderMode . DISABLED } ,
264264 ) ;
265265
266- await viewerContext . runInTransactionForDatabaseAdaptorFlavorAsync (
266+ await viewerContext . runInTransactionForDatabaseAdapterFlavorAsync (
267267 'postgres' ,
268268 async ( queryContext ) => {
269269 assert ( queryContext . isInTransaction ( ) ) ;
@@ -274,7 +274,7 @@ describe(EntityQueryContext, () => {
274274 { transactionalDataLoaderMode : TransactionalDataLoaderMode . ENABLED_BATCH_ONLY } ,
275275 ) ;
276276
277- await viewerContext . runInTransactionForDatabaseAdaptorFlavorAsync (
277+ await viewerContext . runInTransactionForDatabaseAdapterFlavorAsync (
278278 'postgres' ,
279279 async ( queryContext ) => {
280280 assert ( queryContext . isInTransaction ( ) ) ;
0 commit comments