Github user rnewson commented on a diff in the pull request:
https://github.com/apache/couchdb-couch-epi/pull/12#discussion_r40777079
--- Diff: test/couch_epi_tests.erl ---
@@ -152,26 +228,26 @@ teardown(#ctx{kv = KV}) ->
application:stop(couch_epi),
ok.
-upgrade_release(Pid, Module) ->
+upgrade_release(Pid, Modules) ->
sys:suspend(Pid),
- 'ok' = sys:change_code(Pid, Module, 'undefined', []),
+ ['ok' = sys:change_code(Pid, M, 'undefined', []) || M <- Modules],
sys:resume(Pid),
ok.
epi_config_update_test_() ->
Funs = [
fun ensure_notified_when_changed/2,
- fun ensure_not_notified_when_no_change/2,
- fun ensure_not_notified_when_unsubscribed/2
+ fun ensure_not_notified_when_no_change/2%%,
+ %%fun ensure_not_notified_when_unsubscribed/2
--- End diff --
remove commented-out code.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---