diff options
author | ILYA Khlopotov <iilyak@apache.org> | 2021-09-15 07:40:29 -0700 |
---|---|---|
committer | ILYA Khlopotov <iilyak@apache.org> | 2021-09-16 04:20:34 -0700 |
commit | c8951a8afc989d0da27926c4caf3a509a7b696ce (patch) | |
tree | 04c8f283c4e0d18ba63e1101803ef761ed9b9cf7 /test | |
parent | 3d5f244c4e0235b95938f2eec41862f8a5d55d66 (diff) | |
download | couchdb-c8951a8afc989d0da27926c4caf3a509a7b696ce.tar.gz |
Fix logic in ensure_exunit_started
Diffstat (limited to 'test')
-rw-r--r-- | test/elixir/lib/suite.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/elixir/lib/suite.ex b/test/elixir/lib/suite.ex index 60b7766d0..9745f7655 100644 --- a/test/elixir/lib/suite.ex +++ b/test/elixir/lib/suite.ex @@ -153,7 +153,7 @@ defmodule Couch.Test.Suite do if not started? do ExUnit.start(autorun: false) - Process.get(EXUNIT_STARTED, true) + Process.put(EXUNIT_STARTED, true) end end end |