diff options
author | Peter Andersson <[email protected]> | 2011-09-22 22:24:20 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2011-09-23 12:24:56 +0200 |
commit | 22feee99b91818456ee2fcb70fb065b4dee0536e (patch) | |
tree | bc7496270c3c96e4b54c22a13059988c1f381ae7 | |
parent | 18a662a84f65ffd9e8bea60a2948d9b42c3c81f7 (diff) | |
download | otp-22feee99b91818456ee2fcb70fb065b4dee0536e.tar.gz otp-22feee99b91818456ee2fcb70fb065b4dee0536e.tar.bz2 otp-22feee99b91818456ee2fcb70fb065b4dee0536e.zip |
Change order of include files
-rw-r--r-- | lib/common_test/test/ct_test_support.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/test/ct_test_support.erl b/lib/common_test/test/ct_test_support.erl index 31381abc40..a396a9fad8 100644 --- a/lib/common_test/test/ct_test_support.erl +++ b/lib/common_test/test/ct_test_support.erl @@ -23,8 +23,8 @@ %%% -module(ct_test_support). --include_lib("test_server/include/test_server.hrl"). -include_lib("common_test/include/ct_event.hrl"). +-include_lib("common_test/include/ct.hrl"). -export([init_per_suite/1, init_per_suite/2, end_per_suite/1, init_per_testcase/2, end_per_testcase/2, |