diff options
| author | practicalswift <[email protected]> | 2018-03-18 18:52:30 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-03-19 08:54:07 +0100 |
| commit | 5fd864fe8a3b7c6abcfec97980ccc8f57ffdd8ca (patch) | |
| tree | 0e0a57631e487bd6e0216a6d92dd8774efa7f5dd /src/test/blockchain_tests.cpp | |
| parent | tests: Add note about test suite naming convention (diff) | |
| download | discoin-5fd864fe8a3b7c6abcfec97980ccc8f57ffdd8ca.tar.xz discoin-5fd864fe8a3b7c6abcfec97980ccc8f57ffdd8ca.zip | |
tests: Rename test suits not following the test suite naming convention
The name of the fixture test suite in `src/test/foo_tests.cpp`
should be `foo_tests`.
Diffstat (limited to 'src/test/blockchain_tests.cpp')
| -rw-r--r-- | src/test/blockchain_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/blockchain_tests.cpp b/src/test/blockchain_tests.cpp index 55fdd2c07..32b408838 100644 --- a/src/test/blockchain_tests.cpp +++ b/src/test/blockchain_tests.cpp @@ -54,7 +54,7 @@ void TestDifficulty(uint32_t nbits, double expected_difficulty) RejectDifficultyMismatch(difficulty, expected_difficulty); } -BOOST_FIXTURE_TEST_SUITE(blockchain_difficulty_tests, BasicTestingSetup) +BOOST_FIXTURE_TEST_SUITE(blockchain_tests, BasicTestingSetup) BOOST_AUTO_TEST_CASE(get_difficulty_for_very_low_target) { |