diff --git a/packages/rs-drive/src/drive/document/delete/mod.rs b/packages/rs-drive/src/drive/document/delete/mod.rs index d7e967dd30..457635d6a1 100644 --- a/packages/rs-drive/src/drive/document/delete/mod.rs +++ b/packages/rs-drive/src/drive/document/delete/mod.rs @@ -132,7 +132,7 @@ mod tests { true, None, platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -225,7 +225,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -365,7 +365,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -400,7 +400,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -546,7 +546,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -577,7 +577,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -647,7 +647,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -822,7 +822,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -922,7 +922,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); diff --git a/packages/rs-drive/src/drive/document/insert/mod.rs b/packages/rs-drive/src/drive/document/insert/mod.rs index 2e44246e99..79222c4308 100644 --- a/packages/rs-drive/src/drive/document/insert/mod.rs +++ b/packages/rs-drive/src/drive/document/insert/mod.rs @@ -140,7 +140,7 @@ mod tests { true, None, platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -162,7 +162,7 @@ mod tests { true, None, platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect_err("expected not to be able to insert same document twice"); @@ -236,7 +236,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -258,7 +258,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect_err("expected not to be able to insert same document twice"); @@ -332,7 +332,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -397,7 +397,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -467,7 +467,7 @@ mod tests { false, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -527,7 +527,7 @@ mod tests { false, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -549,7 +549,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -695,7 +695,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -773,7 +773,7 @@ mod tests { true, None, platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -795,7 +795,7 @@ mod tests { true, None, platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -817,7 +817,7 @@ mod tests { true, None, platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); } @@ -868,7 +868,7 @@ mod tests { true, None, platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -890,7 +890,7 @@ mod tests { true, None, platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect_err( "expected not to be able to insert document with already existing unique index", diff --git a/packages/rs-drive/src/drive/document/update/mod.rs b/packages/rs-drive/src/drive/document/update/mod.rs index 233f0b4af0..c24d684c36 100644 --- a/packages/rs-drive/src/drive/document/update/mod.rs +++ b/packages/rs-drive/src/drive/document/update/mod.rs @@ -636,7 +636,7 @@ mod tests { true, None, platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("should add document"); @@ -745,7 +745,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -842,7 +842,7 @@ mod tests { true, Some(&db_transaction), platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("expected to insert a document successfully"); @@ -1929,7 +1929,7 @@ mod tests { true, None, platform_version, - Some(&EPOCH_CHANGE_FEE_VERSION_TEST), + None, ) .expect("should create document");