summaryrefslogtreecommitdiff
path: root/test/elixir/test/compact_test.exs
diff options
context:
space:
mode:
Diffstat (limited to 'test/elixir/test/compact_test.exs')
-rw-r--r--test/elixir/test/compact_test.exs13
1 files changed, 1 insertions, 12 deletions
diff --git a/test/elixir/test/compact_test.exs b/test/elixir/test/compact_test.exs
index d99a7a78e..18aeab2de 100644
--- a/test/elixir/test/compact_test.exs
+++ b/test/elixir/test/compact_test.exs
@@ -2,6 +2,7 @@ defmodule CompactTest do
use CouchTestCase
@moduletag :compact
+ @moduletag kind: :single_node
@moduledoc """
Test CouchDB compaction
@@ -82,18 +83,6 @@ defmodule CompactTest do
assert Couch.post("/#{db}/_ensure_full_commit").body["ok"] == true
end
- defp compact(db) do
- assert Couch.post("/#{db}/_compact").status_code == 202
-
- retry_until(
- fn ->
- Couch.get("/#{db}").body["compact_running"] == false
- end,
- 200,
- 20_000
- )
- end
-
defp get_info(db) do
Couch.get("/#{db}").body
end