summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Shaw <noahshaw11@yahoo.com>2022-07-14 17:27:15 -0500
committerNick Vatamaniuc <nickva@users.noreply.github.com>2022-07-14 19:01:39 -0400
commit005843a439c933d02da193ff529a971bc23fa1f2 (patch)
tree89a3599eb07cb6d2ebae51cab414db3e94b794d9
parent76dd66f409ef4b34f9cc809228e0c7d1e6a50554 (diff)
downloadcouchdb-005843a439c933d02da193ff529a971bc23fa1f2.tar.gz
Fix not calling is_compacting test
-rw-r--r--src/couch/test/eunit/couch_bt_engine_compactor_tests.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/couch/test/eunit/couch_bt_engine_compactor_tests.erl b/src/couch/test/eunit/couch_bt_engine_compactor_tests.erl
index 39d9ba3b7..4ed57668e 100644
--- a/src/couch/test/eunit/couch_bt_engine_compactor_tests.erl
+++ b/src/couch/test/eunit/couch_bt_engine_compactor_tests.erl
@@ -26,6 +26,7 @@ setup() ->
DbName.
teardown(DbName) when is_binary(DbName) ->
+ meck:unload(),
couch_server:delete(DbName, [?ADMIN_CTX]),
ok.
@@ -39,7 +40,8 @@ basic_compaction_test_() ->
fun setup/0,
fun teardown/1,
[
- fun compaction_resume/1
+ fun compaction_resume/1,
+ fun is_compacting_works/1
]
}
}.