From 4d9bacf1ae9eac3859d9d0fc083a5e2c51929384 Mon Sep 17 00:00:00 2001 From: lateminer Date: Wed, 10 Jan 2018 00:01:51 +0300 Subject: [PATCH] Fix: test: move accounting_tests and rpc_wallet_tests to wallet/test --- src/Makefile.test.include | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 6685e260c..eb1f797c2 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -88,10 +88,10 @@ BITCOIN_TESTS =\ if ENABLE_WALLET BITCOIN_TESTS += \ - test/accounting_tests.cpp \ + wallet/test/accounting_tests.cpp \ wallet/test/wallet_tests.cpp \ - wallet/test/crypto_tests.cpp \ - test/rpc_wallet_tests.cpp + wallet/test/rpc_wallet_tests.cpp \ + wallet/test/crypto_tests.cpp endif test_test_bitcoin_SOURCES = $(BITCOIN_TESTS) $(JSON_TEST_FILES) $(RAW_TEST_FILES)