Skip to content

Commit be587ad

Browse files
committed
rabbit_fifo_SUITE: Fix include of rabbit_fifo.hrl
We cannot use `-include_lib()` here because we are inside the application. It happened to work by chance because we use the Umbrella to work on all projects, so rabbitmq-server is also inside `DEPS_DIR`. But when the project is tested outside of the Umbrella, the testsuite failed to compile.
1 parent 08bce61 commit be587ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/rabbit_fifo_SUITE.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
-include_lib("common_test/include/ct.hrl").
1212
-include_lib("eunit/include/eunit.hrl").
1313
-include_lib("ra/include/ra.hrl").
14-
-include_lib("rabbit/src/rabbit_fifo.hrl").
1514
-include_lib("rabbit_common/include/rabbit.hrl").
15+
-include("src/rabbit_fifo.hrl").
1616

1717
%%%===================================================================
1818
%%% Common Test callbacks

0 commit comments

Comments
 (0)