You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2022/09/28 18:52:49 UTC

[couchdb-config] 01/01: Fix eunit include / export order

This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a commit to branch fix-test-export-include-order
in repository https://gitbox.apache.org/repos/asf/couchdb-config.git

commit 9a644841f4083fc8e71876e4219e650c575b9d1d
Author: Nick Vatamaniuc <va...@gmail.com>
AuthorDate: Wed Sep 28 14:52:06 2022 -0400

    Fix eunit include / export order
    
    export should come first
---
 test/config_tests.erl | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/test/config_tests.erl b/test/config_tests.erl
index b8ebb9a..dd38fc6 100644
--- a/test/config_tests.erl
+++ b/test/config_tests.erl
@@ -13,16 +13,13 @@
 -module(config_tests).
 -behaviour(config_listener).
 
-
--include_lib("couch/include/couch_eunit.hrl").
--include_lib("couch/include/couch_db.hrl").
-
-
 -export([
     handle_config_change/5,
     handle_config_terminate/3
 ]).
 
+-include_lib("couch/include/couch_eunit.hrl").
+-include_lib("couch/include/couch_db.hrl").
 
 -define(TIMEOUT, 4000).
 -define(RESTART_TIMEOUT_IN_MILLISEC, 3000).