From f2dd242f5bf31f27c05ded8c36a4e7c1a9f69ed9 Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 18 Jun 2015 16:49:38 +0200 Subject: [PATCH] Fixed build errors. --- test/libdevcrypto/SecretStore.cpp | 2 +- test/libdevcrypto/crypto.cpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/test/libdevcrypto/SecretStore.cpp b/test/libdevcrypto/SecretStore.cpp index c9d5131d0..30bff49d9 100644 --- a/test/libdevcrypto/SecretStore.cpp +++ b/test/libdevcrypto/SecretStore.cpp @@ -38,7 +38,7 @@ using namespace dev::test; namespace js = json_spirit; namespace fs = boost::filesystem; -BOOST_GLOBAL_FIXTURE( MoveNonceToTempDir ); +BOOST_GLOBAL_FIXTURE( MoveNonceToTempDir ) BOOST_AUTO_TEST_SUITE(KeyStore) diff --git a/test/libdevcrypto/crypto.cpp b/test/libdevcrypto/crypto.cpp index 31589c3ce..1a0537ccd 100644 --- a/test/libdevcrypto/crypto.cpp +++ b/test/libdevcrypto/crypto.cpp @@ -39,7 +39,7 @@ using namespace dev::test; using namespace dev::crypto; using namespace CryptoPP; -BOOST_GLOBAL_FIXTURE( MoveNonceToTempDir ); +BOOST_GLOBAL_FIXTURE( MoveNonceToTempDir ) BOOST_AUTO_TEST_SUITE(devcrypto) @@ -49,7 +49,6 @@ static CryptoPP::OID s_curveOID(CryptoPP::ASN1::secp256k1()); static CryptoPP::DL_GroupParameters_EC s_params(s_curveOID); static CryptoPP::DL_GroupParameters_EC::EllipticCurve s_curve(s_params.GetCurve()); - BOOST_AUTO_TEST_CASE(sha3general) { BOOST_REQUIRE_EQUAL(sha3(""), h256("c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470"));