diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-05-14 09:51:03 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-06-06 11:09:05 +0200 |
commit | 906bee8e5f474f8718d02e6f1938f20dcfe3d2cc (patch) | |
tree | 5cb00fb50275aa72f4a3fd996bab8b37a2e95bf8 /src/test | |
parent | a589f536b5e15daf3ac6ffcc137a146514c81967 (diff) |
Use bracket syntax includes ("#include <foo.h>")
Diffstat (limited to 'src/test')
-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 d2d0008122..7d8ae46fb8 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. |