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/wallet/crypter.h | |
| 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/wallet/crypter.h')
| -rw-r--r-- | src/wallet/crypter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/crypter.h b/src/wallet/crypter.h index f3ae7144b..fdeb4cfee 100644 --- a/src/wallet/crypter.h +++ b/src/wallet/crypter.h @@ -67,7 +67,7 @@ public: typedef std::vector<unsigned char, secure_allocator<unsigned char> > CKeyingMaterial; -namespace wallet_crypto +namespace crypto_tests { class TestCrypter; } @@ -75,7 +75,7 @@ namespace wallet_crypto /** Encryption/decryption context with key information */ class CCrypter { -friend class wallet_crypto::TestCrypter; // for test access to chKey/chIV +friend class crypto_tests::TestCrypter; // for test access to chKey/chIV private: std::vector<unsigned char, secure_allocator<unsigned char>> vchKey; std::vector<unsigned char, secure_allocator<unsigned char>> vchIV; |