File tree 1 file changed +0
-13
lines changed
1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -69,19 +69,9 @@ BOOST_AUTO_TEST_CASE(walletinit_verify_walletdir_no_trailing)
69
69
BOOST_CHECK (result == true );
70
70
fs::path walletdir = gArgs .GetArg (" -walletdir" , " " );
71
71
72
- if (walletdir.has_filename ()) {
73
- std::cout << " WALLET DIR HAS FILE NAME " << walletdir.filename () << " \n " ;
74
- } else {
75
- std::cout << " WALLET DIR DOESN'T HAVE FILENAME : " << walletdir << " \n " ;
76
- }
77
-
78
- std::cout << " THE PARENT PATH WILL BE " << walletdir.parent_path () << " \n " ;
79
72
walletdir = walletdir.filename () == " ." ? walletdir.parent_path () : walletdir;
80
73
fs::path expected_path = fs::canonical (m_walletdir_path_cases[" default" ]);
81
74
82
- std::cout << " VALUE OF WALLET DIR IS " << walletdir << " \n " ;
83
- std::cout << " VALUE OF EXPECTED PATH IS " << expected_path << " \n " ;
84
-
85
75
BOOST_CHECK (walletdir == expected_path);
86
76
}
87
77
@@ -94,9 +84,6 @@ BOOST_AUTO_TEST_CASE(walletinit_verify_walletdir_no_trailing2)
94
84
walletdir = walletdir.filename () == " ." ? walletdir.parent_path () : walletdir;
95
85
fs::path expected_path = fs::canonical (m_walletdir_path_cases[" default" ]);
96
86
97
- std::cout << " VALUE OF WALLET DIR IS " << walletdir << " \n " ;
98
- std::cout << " VALUE OF EXPECTED PATH IS " << expected_path << " \n " ;
99
-
100
87
BOOST_CHECK (walletdir == expected_path);
101
88
}
102
89
You can’t perform that action at this time.
0 commit comments