diff options
| author | practicalswift <[email protected]> | 2018-05-14 09:51:03 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-06-06 11:09:05 +0200 |
| commit | 906bee8e5f474f8718d02e6f1938f20dcfe3d2cc (patch) | |
| tree | 5cb00fb50275aa72f4a3fd996bab8b37a2e95bf8 /src/test/blockchain_tests.cpp | |
| parent | Merge #13288: rpc: Remove the need to include rpc/blockchain.cpp in order to ... (diff) | |
| download | discoin-906bee8e5f474f8718d02e6f1938f20dcfe3d2cc.tar.xz discoin-906bee8e5f474f8718d02e6f1938f20dcfe3d2cc.zip | |
Use bracket syntax includes ("#include <foo.h>")
Diffstat (limited to 'src/test/blockchain_tests.cpp')
| -rw-r--r-- | src/test/blockchain_tests.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/blockchain_tests.cpp b/src/test/blockchain_tests.cpp index d2d000812..7d8ae46fb 100644 --- a/src/test/blockchain_tests.cpp +++ b/src/test/blockchain_tests.cpp @@ -1,9 +1,9 @@ #include <boost/test/unit_test.hpp> -#include "stdlib.h" +#include <stdlib.h> -#include "rpc/blockchain.h" -#include "test/test_bitcoin.h" +#include <rpc/blockchain.h> +#include <test/test_bitcoin.h> /* Equality between doubles is imprecise. Comparison should be done * with a small threshold of tolerance, rather than exact equality. |